@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: #333;
    color: #fff;
    padding: 15px 20px;
    text-align: center;

}

header .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

header .logo span {
    color: #e91e63;
}

header ul {
    display: flex;
    gap: 30px;
}

header ul li {
    list-style: none;
}

header ul li a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    padding: 10px;
    transition: color 0.3s ease;
}

header ul li a:hover {
    color: #e91e63;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #222;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

nav ul li a:hover {
    background: #555;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 20px;
}

/* Banner Section */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.banner-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* Background Video */
#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Puts the video behind the content */
}

/* Other content styling inside the banner */
.banner .content {
    position: relative;
    z-index: 2; /* Ensures the text appears above the video */
    text-align: center;
    color: white;
    max-width: 900px;
}




/* About Section */
.about {
    background-color: #f7f9fc;
    padding: 90px 20px 60px;
}

.max-width {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.about-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.align-left {
    margin-left: 0;
    margin-right: auto;
}

.align-right {
    margin-left: auto;
    margin-right: 0;
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(17, 33, 64, 0.25);
}

.about-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(12, 20, 44, 0.85);
    color: #e8f0ff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(126, 170, 255, 0.35);
}

.about-text h2 {
    font-size: 2.4rem;
    color: #0b1b35;
    margin: 10px 0 18px;
}

.about-text p {
    font-size: 1.05rem;
    color: #3f4b5f;
    line-height: 1.8;
}

.about-text {
    text-align: left;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #5c77b5;
    font-weight: 600;
}

.about-pairs {
    margin: 35px auto 0;
    max-width: 1100px;
    display: grid;
    gap: 28px;
    padding: 0 20px;
}

.about-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 30px;
}

.about-pair.reverse {
    direction: rtl;
}

.about-pair.reverse > * {
    direction: ltr;
}

.point {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 18px;
    box-shadow: 0 15px 30px rgba(11, 27, 53, 0.08);
}

.point-title {
    font-weight: 600;
    color: #0b1b35;
    margin-bottom: 4px;
}

.point-text {
    color: #5a667b;
    font-size: 0.95rem;
}

.about-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-actions .primary,
.about-actions .secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.about-actions .primary {
    background: #0b3d91;
    color: #fff;
}

.about-actions .secondary {
    background: #e9effb;
    color: #0b3d91;
}

.about-actions.bottom-actions {
    justify-content: center;
    margin: 45px auto 0;
}

.about-visual {
    margin: 0;
}

#background-video1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Puts the video behind the content */
}



.banner h3 {
    font-size: 2rem;
}

.banner h2 {
    font-size: 3rem;
    margin: 10px 0;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.banner button {
    background-color: #e91e63;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.banner button:hover {
    background-color: #c2185b;
}

/* About Section */
.about {
    background-color: #f9f9f9;
    padding: 100px 0;
    text-align: center;
}
#about #background-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    opacity: 0.5;
    object-fit: cover;
}
.about .max-width {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about .left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.about .right {
    flex: 1;
    padding-left: 30px;
}

.about h2 {
    font-size: 2.5rem;
    color: #1e3551;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about a {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.1rem;
    color: #fff;
    background-color: #1e3551;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.about a:hover {
    background-color: #333;
}
/* Services Section */
.services {
    position: relative;
    background-color: transparent; /* Background handled by video */
    padding: 100px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.services-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;    
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.service-card {
    background: white;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}

#background-video1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.services .max-width {
    position: relative;
    z-index: 1; /* Content appears above the video */
    max-width: 1200px;
    margin: 0 auto;
}

.services .title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff; /* Ensure text color stands out against the video */
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-subtitle {
    color: #d3daf1;
    font-size: 1.05rem;
    margin-top: 12px;
}

.services .serv-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(10, 14, 38, 0.88);
    border: 1px solid rgba(98, 128, 200, 0.35);
    padding: 30px 22px;
    border-radius: 16px;
    text-align: left;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 35px rgba(5, 9, 25, 0.4);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(5, 9, 25, 0.55);
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(125, 165, 255, 0.15);
    color: #9bb7ff;
    font-size: 1.2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #c9d4f2;
}

.service-list {
    margin: 8px 0 0;
    padding-left: 18px;
    color: #d7def5;
    font-size: 0.95rem;
}

/* Contact Section */
/* Contact Section Styles */
.contact {
    background: #333; /* Dark background */
    color: #ffffff; /* White text */
    padding: 80px 0;
}

.max-width {
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    text-align: center; /* Centers the text */
    margin: 0 auto; /* Ensures the element itself is centered */
    font-size: 36px; /* Size of the text */
    color: #ffffff; /* Title text color */
}

.contact-content {
    display: flex; /* Enable Flexbox for columns */
    justify-content: space-between; /* Space between left and right */
    align-items: center; /* Vertical alignment */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Left Column Styles */
.contact-content .left,
.contact-content .right {
    flex: 1;
    min-width: 45%; /* Adjust the size of the columns */
    margin: 10px;
}

/* Text Alignment in Left Column */
.contact-content .left {
    text-align: left; /* Left align text */
}

.contact-content .left .text {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-content .left p {
    margin-bottom: 30px;
    line-height: 1.6;
}
.night-mode {
    background-color: #111;
    color: white;
}

.icons .row {
    display: flex; /* Arrange icon and text in a row */
    align-items: center;
    margin-bottom: 15px;
}

.icons .row i {
    font-size: 24px;
    margin-right: 15px;
    color: #ffffff;
}

.icons .info {
    line-height: 1.4;
}

.icons .info .head {
    font-weight: 600;
    font-size: 18px;
}

.icons .info .sub-title {
    
    font-size: 16px;
    color: #bbbbbb;
}

/* Right Column Styles (Form) */
.contact-content .right {
    background: #444; /* Slightly darker background for form */
    padding: 30px;
    border-radius: 10px;
}

.contact-content .right .text {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.contact-content .right form {
    width: 100%;
}

.contact-content .right .fields {
    display: flex; /* Arrange name and email fields in a row */
    justify-content: space-between;
    margin-bottom: 15px;
}

.contact-content .right .field {
    width: 100%;
    margin-bottom: 15px;
}

.contact-content .right .field.name,
.contact-content .right .field.email {
    width: 48%;
}

.contact-content .right input,
.contact-content .right textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background: #ffffff; /* White input fields */
}

.contact-content .right .textarea textarea {
    resize: none; /* Disable resizing */
}

.contact-content .right .button-area {
    text-align: center;
}

.contact-content .right button {
    background: #007bff; /* Blue button */
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-content .right button:hover {
    background: #0056b3; /* Darker blue on hover */
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: #007bff;
    color: white;
    width: 100%;
}

.hero img {
    max-width: 100%;
    height: auto;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}


/* Footer */
.site-footer {
    background: linear-gradient(135deg, #05070f 0%, #0b1426 50%, #0a0f1c 100%);
    color: #e4ecff;
    padding: 0;
}

.footer-top {
    padding: 60px 20px 50px;
    text-align: center;
}

.footer-top-inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-top h3 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.footer-top p {
    color: #c7d2ee;
    font-size: 1rem;
}

.footer-label {
    text-align: left;
    color: #9fb0d6;
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-top input {
    border-radius: 999px;
    border: 1px solid rgba(120, 150, 220, 0.4);
    background: rgba(8, 12, 28, 0.9);
    color: #e4ecff;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.footer-top input:focus {
    outline: none;
    border-color: rgba(140, 180, 255, 0.85);
    box-shadow: 0 0 18px rgba(120, 170, 255, 0.45);
}

.footer-top input:hover {
    box-shadow: 0 0 14px rgba(120, 170, 255, 0.35);
}

.footer-btn {
    margin-top: 8px;
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    background: linear-gradient(135deg, #1f3a8a, #3b82f6);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(59, 130, 246, 0.45);
}

.footer-bottom {
    border-top: 1px solid rgba(110, 140, 210, 0.2);
    padding: 35px 20px 25px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-col p,
.footer-links span,
.footer-links a {
    color: #b8c5e4;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    align-items: center;
    justify-content: center;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 0;
}

.footer-socials a:hover {
    transform: scale(1.08);
    box-shadow: 0 0 14px rgba(120, 170, 255, 0.5);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    display: block;
}

.footer-copy {
    text-align: center;
    margin-top: 28px;
    color: #8f9bb8;
    font-size: 0.85rem;
}

/* Fix for Image Scaling */
img {
    max-width: 100%;
    height: auto;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .about-wrap {
        grid-template-columns: 1fr;
    }

    .about-pair {
        grid-template-columns: 1fr;
    }

    .services .serv-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-visual {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    header ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #333;
    }

    header ul.active {
        display: flex;
    }

    header ul li {
        text-align: center;
        padding: 10px 0;
    }
    .banner .content {
        padding: 20px;
    }

    .banner h2 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .banner button {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .column_left,
    .column_right {
        max-width: 100%;
        padding: 0;
    }

    .column_left img {
        max-width: 80%;
        margin: auto;
    }
    .services .serv-content {
        grid-template-columns: 1fr;
    }

    .services .card {
        width: 100%;
        min-height: auto;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-content .left,
    .contact-content .right {
        width: 100%;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .about-text {
        text-align: center;
    }
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .menu-toggle {
        display: block;
        font-size: 2rem;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    header ul {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    /* Show menu when active */
    header ul.active {
        display: flex;
    }

    header ul li {
        padding: 10px 0;
    }
    nav ul {
        display: none;
        flex-direction: column;
        background: #222;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        padding: 10px 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }
}
