* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    background-color: #f8fbff;
}


header {
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0055ff;
}


.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
    background: #eaf3ff;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 500px;
}

.hero h1 {
    font-size: 2.6rem;
    color: #002b80;
    margin-bottom: 20px;
}

.hero p {
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #0055ff;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0042cc;
}

.btn-outline {
    border: 2px solid #0055ff;
    color: #0055ff;
    padding: 10px 23px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #0055ff;
    color: white;
}

.hero-img {
    flex: 0.6  ;
    min-width: 0;
}

.hero-img img {
    width: 100%;
    max-width: 720px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}


.about {
    text-align: center;
    padding: 80px 0%;
    background: white;
}

.about h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 28px;
    font-style: italic;
}

.about h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: #0055ff;
    margin: 12px auto 0;
    border-radius: 2px;
}

.about p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 12px;
    font-style: normal;
}
.stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 48px;
}

.stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0055ff;
    margin-bottom: 4px;
}

.stat p {
    font-size: 0.9rem;
    color: #6b7a8d;
    font-style: normal;
    font-weight: 500;
}

.services {
    background: #f1f7ff;
    text-align: center;
    padding: 80px 8%;
}

.services h2 {
    font-size: 2rem;
    color: #002b80;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #0055ff;
    margin-bottom: 10px;
}


.bar {
    background: #ffffff;
    padding: 48px 8%;
    text-align: center;
    border-top: 1px solid #e0e8f5;
}

.bar h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #002b80;
    margin-bottom: 8px;
}

.bar p {
    max-width: 550px;
    margin: 0 auto 24px;
    color: #5a6a7e;
    font-size: 0.95rem;
}

.ctn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.info-c-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a2332;
}

.info-c-item svg {
    width: 20px;
    height: 20px;
    color: #0055ff;
    flex-shrink: 0;
}

.info-c-item a {
    color: #0055ff;
    font-weight: 600;
    transition: color 0.2s;
}

.info-c-item a:hover {
    color: #0044cc;
}



.footer {
    text-align: center;
    padding: 20px;
    background: #0a1628;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
}
.footer span {
    color: #0055ff;
    font-weight: 600;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #3a4a5c;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0055ff;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #1a2332;
    border-radius: 2px;
    transition: all 0.3s;
}


.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px 8%;
        gap: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 48px 6%;
        gap: 32px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img {
        flex: none;
        width: 100%;
    }

    .hero-img img {
        width: 100%;
        height: 200px;
        border-radius: 12px;
    }

    /* ABOUT */
    .about {
        padding: 48px 6%;
    }

    .about h2 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .about p {
        text-align: left;
        font-style: normal;
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 8px;
        color: #3a4a5c;
    }

    .about .about-sub {
        margin-bottom: 0;
    }

    .stats {
        display: flex;
        width: 100%;
        margin-top: 32px;
        border-top: 2px solid #e8edf4;
        padding-top: 24px;
    }

    .stat {
        flex: 1;
        text-align: center;
        padding: 0 8px;
    }

    .stat + .stat {
        border-left: 1px solid #e8edf4;
    }

    .stat h3 {
        font-size: 1.3rem;
        color: #0055ff;
        margin-bottom: 4px;
    }
    .stat p {
        font-size: 0.65rem;
        color: #6b7a8d;
        font-style: normal;
        line-height: 1.3;
    }


    .services {
        padding: 48px 6%;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }


    .bar {
        padding: 36px 6%;
    }

    .ctn {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}




