/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
}

/* ================= NAVBAR ================= */
.navbar {
    width: 100%;
    background: #004A99;
    color: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

.social-icons img {
    width: 26px;
    margin-left: 10px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: white;
}

#menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #004A99;
        padding: 20px 0;
        text-align: center;
    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .social-icons {
        display: none;
    }
}

/* ================= HERO SECTION ================= */
.hero {
    display: flex;
    padding: 60px 60px;
    background: #003366;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-left img {
    width: 100%;
    max-width: 550px;
    border-radius: 8px;
}

.hero-right {
    max-width: 550px;
}

.hero-right h1 {
    font-size: 2.6rem;
    font-weight: 700;
}

.highlight {
    color: #79c7ff;
}

.hero-right p {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-btn {
    margin-top: 30px;
    padding: 14px 26px;
    background: #008CFF;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 60px;
    background: #F8FAFF;
    flex-wrap: wrap;
}

.about-left {
    width: 100%;
    max-width: 350px;
}

.about-right {
    max-width: 650px;
}

.about-right h1 {
    font-size: 2.6rem;
    color: #003d73;
}

.line {
    width: 90px;
    height: 4px;
    background: #003d73;
    margin: 12px 0 25px;
}

.about-right p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
}

.about-team {
    width: 100%;
    max-width: 350px;
    margin-top: 20px;
}

/* WHY CHOOSE US */
.why-section {
    padding: 60px 20px;
    text-align: center;
}

.why-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.why-card {
    width: 260px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.why-card i {
    font-size: 40px;
    color: #0059ff;
    margin-bottom: 10px;
}


/* TEAM SECTION */
.team-section {
    padding: 60px 20px;
    text-align: center;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.team-card {
    width: 260px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-card i {
    font-size: 45px;
    color: #0059ff;
    margin-bottom: 10px;
}

.team-card .role {
    font-weight: bold;
    color: #004A99;
    margin-bottom: 8px;
}

/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 60px 40px;
    text-align: center;
    background: #F7F9FC;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card h3 {
    color: #004A99;
    margin-bottom: 10px;
}

/* ================= CERTIFICATES ================= */
.certificate-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.cert-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.cert-item i {
    font-size: 40px;
    color: #004A99;
    margin-bottom: 15px;
}

.cert-item h3 {
    color: #003d73;
    margin-bottom: 10px;
}

.cert-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}
/* ================= REVIEWS ================= */
.reviews-section {
    padding: 60px 40px;
    background: #F1F6FC;
    text-align: center;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.review-card {
    width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* ================= FAQ ================= */
.faq-section {
    padding: 60px 40px;
    text-align: center;
}

.faq-box {
    max-width: 700px;
    margin: auto;
}

.faq-item {
    padding: 15px;
    background: #fff;
    margin-bottom: 10px;
    border-left: 4px solid #0059ff;
    border-radius: 8px;
    cursor: pointer;
}

/* ================= CONTACT ================= */
.contact-section {
    padding: 60px 40px;
    text-align: center;
    background: #ffffff;
}

/* ================= FOOTER ================= */
.footer {
    background: #003c77;
    color: #ffffff;
    padding: 60px 40px 25px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col a {
    display: block;
    color: #d4e8ff;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #1e5aa7;
    padding-top: 20px;
    color: #d4e8ff;
}

/* RESPONSIVE HERO */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-right {
        margin-top: 20px;
        max-width: 100%;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }
}







