/* 1. RESET & BASE STYLES */
body { margin: 0; font-family: 'Poppins', sans-serif; background: #F8FAFC; color: #2B2E34; overflow-x: hidden; }

/* 2. HEADER & HERO */
header { background: #ffffff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 1000; }
.header-wrap { max-width: 1200px; margin: auto; padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; }
nav a { margin: 0 15px; text-decoration: none; font-weight: 500; color: #0F2A44; }
.header-btn .call-btn { border: 2px solid #0F2A44; color: #0F2A44; padding: 8px 18px; border-radius: 22px; text-decoration: none; font-weight: 600; margin-right: 10px; }
.header-btn .enquiry-btn { background: #C9A227; color: #fff; padding: 8px 18px; border-radius: 22px; text-decoration: none; font-weight: 600; }

.hero-section {
    background: linear-gradient(rgba(10, 35, 64, 0.85), rgba(10, 35, 64, 0.85)), url("images/world-map-bg.png");
    background-size: cover; background-position: center; min-height: 60vh;
    display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px;
}
.hero-content { max-width: 800px; color: #fff; }
.hero-content h1 { font-size: 45px; margin-bottom: 20px; }
.hero-badge { background: #C9A227; padding: 5px 15px; border-radius: 20px; font-size: 14px; }
.btn-primary { display: inline-block; background: #C9A227; color: #fff; padding: 14px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; margin-top: 20px; }

/* 3. ABOUT SECTION */
.section { padding: 60px 20px; max-width: 1200px; margin: auto; }
.bg-soft { background: #EEF4FF; }
.center { text-align: center; margin-bottom: 40px; color: #0F2A44; }

.about-box {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start;
    background: #fff; padding: 50px; border-radius: 25px; box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.about-img-wrap { position: relative; }
.main-doc-img { width: 100%; border-radius: 20px; box-shadow: 10px 10px 0px #C9A227; }
.experience-badge { position: absolute; bottom: 20px; right: -15px; background: #0F2A44; color: #fff; padding: 10px 20px; border-radius: 10px; font-weight: 600; font-size: 14px; }
.about-content h2 { font-size: 36px; color: #0F2A44; margin: 10px 0 20px 0; }
.sub-heading { color: #C9A227; font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.qualifications-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; padding: 20px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.q-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #0F2A44; }
.q-item i { color: #C9A227; font-size: 18px; }

/* 4. SLIDERS (Webinar & Library) - FIXED ARROWS */
.webinarSwiper, .library-slider { 
    position: relative; 
    padding: 20px 60px !important; /* Side space for arrows */
}

.card, .book-card { 
    background: #fff; border-radius: 15px; overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); text-align: center; 
    transition: 0.3s; border: 1px solid #eee; height: 100%;
}

.card-img, .book-img img { width: 100%; height: 250px; object-fit: cover; }
.book-info, .card h3 { padding: 20px; }

/* SWIPER BUTTONS GLOBAL FIX */
.swiper-button-next, .swiper-button-prev {
    color: #C9A227 !important; 
    background: #fff; 
    width: 45px !important; 
    height: 45px !important; 
    border-radius: 50%; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    z-index: 10;
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 18px !important; font-weight: bold; }

/* Arrows Position */
.webinarSwiper .swiper-button-prev, .library-slider .swiper-button-prev { left: 5px !important; }
.webinarSwiper .swiper-button-next, .library-slider .swiper-button-next { right: 5px !important; }

/* 5. REVIEW SLIDER */
.reviewSwiper { width: 100%; overflow: hidden; padding: 20px 0 !important; }
.review-card { background: #fff; padding: 30px; border-radius: 15px; text-align: center; border: 1px solid #E5E7EB; height: 100%; }
.stars { color: #C9A227; margin-bottom: 10px; }

/* 6. BUTTONS */
.service-btn, .lib-download-btn {
    display: inline-block; padding: 12px 25px; background: #C9A227; color: #fff; 
    text-decoration: none; border-radius: 25px; font-weight: 600; transition: 0.3s; margin-bottom: 20px;
}
.service-btn { background: #0F2A44; }
.lib-download-btn:hover, .service-btn:hover { background: #0b1d2e; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* 7. FORM */
.form-box { background: #fff; max-width: 550px; margin: auto; padding: 40px; border-radius: 18px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
input, textarea { width: 100%; padding: 13px; margin-bottom: 15px; border-radius: 8px; border: 1px solid #ccc; box-sizing: border-box; }
.form-box button { width: 100%; background: #0F2A44; color: #fff; padding: 15px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; }

/* 8. FOOTER & WHATSAPP */
footer { background: #0F2A44; color: #fff; text-align: center; padding: 30px; margin-top: 50px; }
.whatsapp { position: fixed; right: 25px; bottom: 25px; background: #25D366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.2); text-decoration: none;}

/* 9. MOBILE RESPONSIVE */
@media(max-width:991px) {
    .about-box { grid-template-columns: 1fr; padding: 30px; gap: 40px; }
}

@media(max-width:768px) {
    .header-wrap { flex-direction: column; gap: 10px; text-align: center; }
    .hero-content h1 { font-size: 32px; }
    .webinarSwiper, .library-slider { padding: 20px 10px 80px !important; }
    .swiper-button-next, .swiper-button-prev { top: auto !important; bottom: 10px !important; }
    .swiper-button-prev { left: 30% !important; }
    .swiper-button-next { right: 30% !important; }
}

/* --- Responsive Navigation CSS --- */

/* 1. Hamburger Icon ko desktop par chhupana */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0F2A44;
    padding: 10px;
}

/* 2. Mobile View Settings (992px se niche ki screens ke liye) */
@media (max-width: 992px) {
    
    .header-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
        position: relative;
        background: #fff;
    }

    /* Menu Toggle Button dikhana */
    .menu-toggle {
        display: block;
        order: 3; /* Ye icon ko right side rakhega */
    }

    /* Navigation Menu ko Vertical banana */
    nav {
        display: none; /* Default mein band rahega */
        position: absolute;
        top: 100%; /* Header ke bilkul niche se khulega */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    /* Jab JS 'active' class add karega tab menu dikhega */
    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        font-size: 18px;
        color: #0F2A44;
        text-decoration: none;
    }

    /* Header Buttons ko mobile par chhupana (space bachane ke liye) */
    /* Agar aapko buttons dikhane hain toh is section ko delete kar dein */
    .header-btn {
        display: none; 
    }

    .logo-text {
        font-size: 20px !important;
        flex: 1;
    }
}

/* WhatsApp Floating Icon fix for mobile */
.whatsapp {
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    position: fixed;
    z-index: 1000;
}

@media (max-width: 992px) {
    .header-wrap {
        display: flex !important;
        /* Row karne se hi logo aur icon side-by-side aayenge */
        flex-direction: row !important; 
        justify-content: space-between !important; 
        align-items: center !important;
        padding: 10px 20px !important;
    }

    .logo-text {
        margin: 0 !important; /* Center margin hatane ke liye */
        text-align: left !important;
    }

    .menu-toggle {
        display: block !important;
        margin: 0 !important; /* Right side par set rahega */
    }
}
/* Mobile Screens (992px se kam) */
@media (max-width: 992px) {
    .menu-toggle {
        display: block; /* Mobile par icon dikhega */
    }

    /* Navigation menu ko dropdown banana */
    nav {
        display: none; 
        position: absolute;
        top: 100%; /* Header ke bilkul niche se shuru hoga */
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 10px 0;
    }

    /* Jab JS se 'active' class aayegi tab menu dikhega */
    nav.active {
        display: flex !important;
    }

    nav a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    /* Desktop buttons ko mobile par hide karna */
    .header-btn {
        display: none;
    }
}

header {
    margin-bottom: -15px !important; /* Agar koi margin hai toh use hatane ke liye */
}

.hero-section {
    /* Pehle padding shayad 100px ya 80px hogi, use kam karke itna karein */
    padding-top: 40px !important;    /* Top space kam karega */
    padding-bottom: 15px !important; /* Bottom space kam karega */
    min-height: auto !important;     /* Agar fix height di hai toh use hatane ke liye */
}

/* Search Overlay Design */
.search-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 42, 68, 0.98);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search-overlay.active { display: flex; }

#search-input {
    width: 80%;
    max-width: 600px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #C9A227;
    color: white;
    font-size: 24px;
    padding: 10px;
    outline: none;
    text-align: center;
}

.close-search {
    position: absolute;
    top: 30px; right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

#search-results {
    margin-top: 30px;
    width: 80%;
    max-width: 600px;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    background: rgba(255,255,255,0.1);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    transition: 0.3s;
}

.search-result-item:hover { background: #C9A227; }

/* Mobile alignment fix */
@media (max-width: 992px) {
    .header-right-icons {
        display: flex !important;
        align-items: center;
    }
}

/