/* --- 1. Global Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {

    /* Dark theme fallback */
    color: #ffffff;
    overflow-x: hidden;
}

/* --- 2. Hero Section Master --- */
.hero-section {
    padding: 120px 0 180px;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Background Image PHP inline se aa rahi hai, 
       lekin humne wahan dark overlay (rgba 0.4) suggest kiya hai */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}
.header .container {
    max-width: 1400px;
    width: 94%;
    padding: 0;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* --- 3. Left Content (Text) Styling --- */
.hero-content {
    flex: 1.2;
}

.badge {
    background: rgba(0, 230, 255, 0.1);
    /* Cyan transparent */
    color: #00E6FF;
    /* Electric Cyan */
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px solid rgba(0, 230, 255, 0.3);
    backdrop-filter: blur(5px);
    /* Glass effect */
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    color: #ffffff;
    /* Pure White for high contrast */
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    /* Text ko piche se ubhaarne ke liye */
    min-height: 160px;
}

/* Shiny Gradient for Typewriter */
.text-gradient {
    background: linear-gradient(to right, #00E6FF, #00A6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-right: 3px solid #00E6FF;
    padding-right: 10px;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    /* Clean White with slight transparency */
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
    letter-spacing: 0.3px;
    /* Professional spacing */
    font-weight: 300;
    /* Light weight for modern feel */
    text-align: justify;
}

/* --- 4. Buttons (High Contrast) --- */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #1E1566;
    /* Bright Cyan */
    color: #ffffff;
    /* Dark text on bright button */
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 230, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a83c6, #702d8e);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(112, 45, 142, 0.4);
    transform: scale(1.05);
}

.btn-secondary {
    background: #1a83c6;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #050510;
    border-color: #ffffff;
}

/* --- 5. Floating Image --- */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.floating-img {
    max-width: 110%;
    /* Thoda bada dikhega background ke hisaab se */
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 230, 255, 0.2));
    /* Neon glow effect */
    animation: floatAnim 5s ease-in-out infinite;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(2deg);
    }
}

/* --- 6. Mobile View --- */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0;
        text-align: center;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .hero-title {
        font-size: 2.8rem;
        min-height: auto;
    }

    .hero-content p {
        margin: 0 auto 35px;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .hero-image {
        order: -1;
        justify-content: center;
    }

    .floating-img {
        max-width: 90%;
    }
}




/* --- Expertise Header --- */


/* --- Expertise Header Section --- */
.expertise-header {
    padding: 30px 0 50px;
    /* Hero aur Slider ke beech space */
    /* background-color: #05070a; Dark background matching your theme */
    width: 100%;
}

.expertise-header .container {
    display: flex;
    flex-direction: column;
    /* Text ko vertical stack karne ke liye */
    align-items: center;
    /* Horizontal Center */
    justify-content: center;
    text-align: center;
}

/* "OUR EXPERTISE" - Chota aur professional label */
.expertise-header h2 {
    font-size: 2rem;
    color: #1a83c6;
    /* Electric Cyan */
    font-weight: 700;
    letter-spacing: 5px;
    /* Futuristic look */
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* "Our Top-Notch Services" - Badi aur Bold Heading */
.expertise-header p {
    font-size: clamp(2rem, 5vw, 3.2rem);
    /* Mobile pe automatic chota ho jayega */
    color: #05070a;
    /* White for high contrast */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: capitalize;
}

/* --- Animating Underline --- */
.expertise-header .underline {
    width: 80px;
    height: 5px;
    /* Blue to Purple Gradient matching your buttons */
    background: linear-gradient(to right, #1a83c6, #702d8e);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

/* Underline par halka sa glow effect */
.expertise-header .underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .expertise-header {
        padding: 60px 0 30px;
    }

    .expertise-header h2 {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .expertise-header p {
        font-size: 2.2rem;
    }
}

/* --- Services Slider Section --- */
.services-slider-section {
    padding: 80px 0;
    background: #05070a;
    /* Dark Background */
    overflow: hidden;
}

.services-slider-section .container {
    padding: 0 15px;
}

/* --- Service Box (Individual Card) --- */
.service-box {
    background: rgba(255, 255, 255, 0.02);
    /* Glassy Look */
    border: 1px solid rgba(26, 131, 198, 0.15);
    /* Blue Border */
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: auto !important;
    /* Swiper height adjustment */
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

/* Hover Effect: Border and Shadow */
.service-box:hover {
    transform: translateY(-12px);
    border-color: #00E6FF;
    /* Electric Cyan on Hover */
    background: linear-gradient(135deg, rgba(26, 131, 198, 0.08), rgba(112, 45, 142, 0.08));
    box-shadow: 0 20px 40px rgba(0, 230, 255, 0.1);
}

/* --- Icons Styling --- */
.service-box i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(to bottom, #00E6FF, #1a83c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 230, 255, 0.3));
}

/* --- Text Styling --- */
.service-box h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    color: #94a3b8;
    /* Dim White/Greyish */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 50px;
    /* Text alignment fix */
}

/* --- Know More Button (Theme Optimized) --- */
.know-more-btn {
    padding: 12px 30px;
    border: 1.5px solid #1a83c6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    background: transparent;
    display: inline-block;
    margin-top: auto;
}

.know-more-btn:hover {
    background: linear-gradient(135deg, #1a83c6, #702d8e);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(112, 45, 142, 0.4);
    transform: scale(1.05);
}

/* --- Swiper Pagination Dots --- */
.swiper-pagination {
    position: relative !important;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    width: 10px;
    height: 10px;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    background: #00E6FF !important;
    /* Cyan active dot */
    width: 30px !important;
    /* Stretched effect */
    border-radius: 10px;
}

/* --- 📱 MOBILE OPTIMIZATION (Special Fixes) --- */
@media (max-width: 768px) {
    .services-slider-section {
        padding: 50px 0;
    }

    .service-box {
        padding: 40px 20px;
        margin: 10px 5px;
        /* Side gap for mobile cards */
    }

    .service-box i {
        font-size: 3rem;
    }

    .service-box h3 {
        font-size: 1.4rem;
    }

    .service-box p {
        font-size: 0.95rem;
    }
}


/* --- Trusted Brands Full Width --- */
.clients-section {
    padding: 80px 0;
    background: transparent;
    /* Background color hata diya */
    width: 100%;
    overflow: hidden;
    text-align: center;

}

.clients-section .container .underline {
    display: flex;
    flex-direction: column;
    /* Text ko vertical stack karne ke liye */
    align-items: center;
    /* Horizontal Center */
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.clients-slider {
    width: 100%;
    /* Edge to edge */
    padding: 20px 0;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item img {
    max-width: 180px;
    height: 70px;
    object-fit: contain;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .clients-section {
        padding: 50px 0;
    }

    .logo-item img {
        max-width: 130px;
        height: 50px;
    }
}


/* --- About Section Styling --- */
/* ================================================================
   ABOUT SECTION - MODERN LAYOUT
   ================================================================ */

/* Container ko full width dekar uske andar ka maal center karne ke liye */
.expertise-header {
    width: 100%;
    display: flex;          
    flex-direction: column; 
    align-items: center;    
    justify-content: center;
    text-align: center;    
    padding: 40px 0;      
}

/* Heading ki styling */
.expertise-header h2 {
    font-size: 2.5rem;
    color: #1a83c6;          
    margin-bottom: 15px;    
    text-transform: uppercase;
}

/* Underline ko center mein fix karne ke liye */
.expertise-header .underline {
    width: 80px;          
    height: 4px;            
    background: linear-gradient(to right, #1a83c6, #702d8e);
    border-radius: 10px;
    margin: 0 auto;         
}

.about-section {
    padding: 100px 0;
    background-color: #05070a; /* Dark background */
    width: 100%;
}


/* 2. Main Wrapper - TWO CONTAINERS (Left & Right) */
.about-main-wrapper {
    margin: 0   50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* LEFT CONTAINER (Text Content) */
.about-left-content {
    flex: 1;
    text-align: left;
}

.about-left-content h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.about-left-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* RIGHT CONTAINER (Features Grid) */
.about-right-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    gap: 25px;
}

/* 3. FEATURE CARDS (Attractive Boxes) */
.feature-card {
    background: rgba(255, 255, 255, 0.03); /* Subtle dark glass effect */
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth pop effect */
    position: relative;
    overflow: hidden;
}

/* Icon Styling */
.feature-card i {
    font-size: 2.5rem;
    color: #00E6FF; /* Bright Cyan */
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Blue Highlight for "Expert Team" */
.feature-card.highlighted {
    background: rgba(26, 131, 198, 0.1);
    border-color: rgba(26, 131, 198, 0.4);
}

/* --- HOVER EFFECTS --- */
.feature-card:hover {
    transform: translateY(-12px); /* Box upar uthega */
    background: rgba(255, 255, 255, 0.07);
    border-color: #702d8e; /* Purple border on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover i {
    color: #ffffff; /* Icon white ho jayega hover pe */
    transform: scale(1.1);
}

/* 4. RESPONSIVE DESIGN (Mobile) */
@media (max-width: 992px) {
    .about-main-wrapper {
        flex-direction: column; /* Stack vertically on tablets */
    }
    
    .about-left-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .about-right-grid {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .about-right-grid {
        grid-template-columns: 1fr; /* Single column on phones */
    }
    
    .about-section .expertise-header h2 {
        font-size: 2rem;
    }
}

/* Stats Section Styling */
.stats-section {
    background: linear-gradient(135deg, #05070a 0%, #0f172a 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    background: linear-gradient(to right, #1a83c6, #702d8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

/* Plus sign add karne ke liye */
.stat-number::after {
    content: '+';
    font-size: 2rem;
    margin-left: 2px;
    color: #1a83c6;
}

/* Percentage sign for last item */
.stat-item:last-child .stat-number::after {
    content: '%';
}

.stat-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive for Mobile & Tablets */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}


/* --- Mission & Vision Section Styling --- */
.mission-section {
    padding: 80px 0;
    background-color: transparent; /* Taaki main dark theme ke upar white box dikhe */
}

/* 1. Main White Container (Dono Mission/Vision isi ke andar rahenge) */
.mission-vision-card {
    background: #ffffff; /* Pure White Background */
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: stretch; /* Dono boxes ki height barabar rakhne ke liye */
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Sunder shadow */
    max-width: 1250px;
    margin: 0 auto; /* Screen ke beech mein rakhne ke liye */
}

/* 2. Individual Boxes (Mission aur Vision ke boxes) */
.mission-box, .vision-box {
    flex: 1; /* Dono ko 50-50% jagah milegi */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 10px;
}

/* 3. Icon Styling (Box ke andar ka chota icon) */
.icon-box {
    width: 65px;
    height: 65px;
    background: rgba(26, 131, 198, 0.1); /* Light blue background for icon */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 1.8rem;
    color: #1a83c6; /* Blue Color Icon */
}

/* 4. Heading & Text Styling (White background ke hisab se dark text) */
.text-box h3 {
    font-size: 1.8rem;
    color: #1a83c6; /* Dark Black Color Heading */
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.text-box p {
    font-size: 1.05rem;
    color: #555555; /* Medium Grey for description */
    line-height: 1.7;
    margin: 0;
}

/* 5. Beech ki Divider Line (Ooptional) */
.divider {
    width: 1px;
    background: #702d8e;
    margin: 0 20px;
}

/* --- 📱 MOBILE RESPONSIVE (Sabse Zaruri) --- */
@media (max-width: 991px) {
    .mission-vision-card {
        flex-direction: column; /* Tablet/Mobile par ek ke neeche ek */
        padding: 35px;
        gap: 30px;
    }

    .divider {
        width: 100%;
        height: 1px; /* Mobile par divider horizontal ho jayega */
        margin: 10px 0;
    }

    .mission-box, .vision-box {
        align-items: center; /* Mobile par sab kuch center dikhega */
        text-align: center;
    }
}

@media (max-width: 580px) {
    .text-box h3 {
        font-size: 1.5rem;
    }
    
    .mission-vision-card {
        border-radius: 20px;
        margin: 0 15px; /* Side se thoda gap mobile screen par */
    }
}


/* Reviews Section Styling */


/* Header Styling */
.expertise-header {
    text-align: center;
    margin-bottom: 10px;
}

.expertise-header .sub-heading {
    color: #000000;
    font-size: 1.6rem;
}

.reviews-section {
    padding: 80px 0;
    overflow: hidden; /* Bahar ka content chhupane ke liye */
    background: transparent;
}
/* Loop Animation */
.reviews-wrapper {
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content; /* Content ke hisab se width */
    animation: scroll 30s linear infinite; /* Loop Speed */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Half width tak move karega loop ke liye */
}

/* Review Card Styling */
.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    width: 350px; /* Card ki chaudai */
    transition: 0.3s;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00E6FF;
    transform: translateY(-5px);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1a83c6;
}

.client-info h4 {
    color: #000000;
    margin: 0;
    font-size: 1.1rem;
}

.client-info span {
    color: #00E6FF;
    font-size: 0.85rem;
}

.stars {
    color: #FFD700; /* Gold Color */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-card p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Hover par animation pause karne ke liye */
.reviews-wrapper:hover .reviews-track {
    animation-play-state: paused;
}


/* --- Course Form Section Styles --- */
/* --- Full Width Course Form Section --- */

.course-container {
    background-color: #05070a; /* इमेज जैसा गहरा नीला रंग */
    color: #ffffff;
    padding: 60px 5%; /* साइड में थोड़ा सा गैप ताकि कंटेंट दीवार से न चिपके */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
    width: 100%;       /* पूरी चौड़ाई के लिए */
    margin: 0;         /* साइड मार्जिन जीरो */
    border-radius: 0;  /* पूरी स्क्रीन पर है तो बॉर्डर रेडियस की जरूरत नहीं, आप चाहें तो रख सकते हैं */
    box-sizing: border-box; /* पैडिंग को चौड़ाई के अंदर रखने के लिए */
}

.course-container h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.course-container .subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Layout for Cards */
.main-content {
    display: flex;
    gap: 30px;
    max-width: 1200px; /* कार्ड्स को बहुत ज्यादा फैलने से रोकने के लिए (ऑप्शनल) */
    margin: 0 auto 40px auto; /* कार्ड्स को सेंटर में रखने के लिए */
}

.card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    flex: 1;
    padding: 35px;
    text-align: left;
    backdrop-filter: blur(5px);
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Highlights List */
.highlights ul {
    list-style: none;
    padding: 0;
}

.highlights li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.highlights li i {
    color: #1a4cc1;
    margin-top: 3px;
}

/* Learning Topics */
.topic {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.stat-item h2 {
    font-size: 2.5rem;
    margin: 0;
}

/* Enroll Button */
.enroll-btn {
    display: inline-block;
    background-color: #702d8e;
    color: #ffffff;
    padding: 18px 60px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: 0.3s;
    margin-bottom: 20px;
}

.enroll-btn:hover {
    background-color: #702d8e;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 850px) {
    .main-content, .stats-bar {
        flex-direction: column;
        margin: 0 10px 30px 10px;
    }
}


/* FAQ Section Master Styling */
.faq-section {
    padding: 50px 0;
    background-color: #ffffff; /* Page ko clean look dene ke liye white rakha hai */
    width: 100%;
}

/* Container with side margins */
.faq-section .container {
    max-width: 1200px; /* Full width se thoda kam taaki dono side space rahe */
    margin: 0 auto;
    padding: 0 25px; /* Mobile responsive padding */
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 60px;
  
}

.section-header .badge {
    background: rgba(26, 131, 198, 0.1);
    color: #1a83c6;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #05070a;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Accordion Design */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Boxes ke beech ka gap */
}

.faq-item {
    background: #f8fafc; /* Very light blue-grey */
    border: 1px solid rgba(26, 131, 198, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #05070a;
    padding-right: 20px;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a83c6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    flex-shrink: 0; /* Icon dabbe na */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Hover & Active States */
.faq-item:hover {
    border-color: #1a83c6;
    box-shadow: 0 10px 25px rgba(26, 131, 198, 0.1);
}

.faq-item.active {
    border-color: #1a83c6;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Answer ke hisab se badh jayega */
}

.faq-item.active .faq-icon {
    background: linear-gradient(to right, #1a83c6, #702d8e);
    color: #fff;
    transform: rotate(45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-section {
        padding: 60px 0;
    }
}


.contact-map-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-form-box h2 {
    font-size: 2.5rem;
    color: #05070a;
    margin: 15px 0;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.quick-form input, .quick-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.quick-form input:focus, .quick-form textarea:focus {
    border-color: #1a83c6;
    box-shadow: 0 0 10px rgba(26, 131, 198, 0.1);
}

.map-box {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .map-box {
        height: 300px;
        order: 2; /* Mobile pe map niche chala jayega */
    }
}