
:root {
    --primary: #f5ad1d;
    --secondary: #0f172a;
    --accent: #6366f1;
    --white: #ffffff;
    --bg: #f8fafc;
    --text-muted: #000;
    --blk: #000;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--secondary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: 80px 0;
}


/* -----------------------------
   HERO SECTION (Updated with Mobile Responsiveness)
------------------------------*/
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 1s ease, transform 6s linear;
}

.hero-slide.active {
    opacity: 0.6;
    transform: scale(1);
}

/* HERO OVERLAY CONTENT */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    background: linear-gradient(
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.45)
    );
}

.hero-overlay h1 {
    font-size: clamp(1.8rem, 8vw, 3.5rem); /* Mobile par 1.8rem, Laptop par 3.5rem */
    font-weight: 800;
    margin-bottom: 15px;
    width: 100%;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

/* SEARCH BOX */
.search-wrapper {
    display: flex;
    gap: 5px;
    padding: 8px;
    width: 95%; /* Mobile par wide rahega */
    max-width: 550px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.search-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 15px;
    font-size: 1rem;
    color: #ffffff;
    width: 100%;
}

.search-wrapper input::placeholder {
    color: rgba(255,255,255,0.8);
}

.search-wrapper button {
    background: linear-gradient(135deg, #f5ad1d, #ffcc66);
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 800;
    cursor: pointer;
    color: #0f172a;
    transition: all 0.3s ease;
    white-space: nowrap; /* Button text wrap nahi hoga */
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* ============================================================
   MOBILE RESPONSIVE (Hero & Search)
   ============================================================ */

@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Mobile par height thodi kam */
        min-height: 450px;
    }

    .hero-overlay {
        padding: 15px;
    }

    .search-wrapper {
        border-radius: 30px; /* Thoda kam round mobile par */
        padding: 6px;
    }

    .search-wrapper input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .search-wrapper button {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .search-wrapper button i {
        font-size: 1.1rem; /* Icon thoda bada button mein */
    }
}

@media (max-width: 480px) {
    .hero {
        height: 55vh;
    }

    /* Agar button mobile par zyada lamba ho raha ho, to icon-only ya chota text */
    .search-wrapper button {
        padding: 10px 15px;
    }
    
    /* Text hidden on very small screens, only show icon */
    /* .search-wrapper button span { display: none; } */
}


/* --- Updated Trust Intro Section --- */
.trust-intro {
    padding: 100px 0 60px;
    background: radial-gradient(circle at top right, #f8fafc, #ffffff);
    text-align: center;
}

.trust-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Styles */
.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.trust-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.trust-title span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.trust-lead {
    font-size: 1.15rem;
    color: var(--blk);
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Trust Card Grid */
.trust-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.trust-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--secondary);
}

.trust-icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.trust-card:hover .trust-icon-box {
    background: var(--secondary);
    color: #fff;
}

.trust-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--blk);
    line-height: 1.4;
}

/* Status Bar */
.trust-status-bar {
    display: inline-flex;
    background: var(--primary);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-wave 1.5s infinite;
}

@keyframes pulse-wave {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-badge-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
        gap: 15px;
    }
    
    .trust-card {
        padding: 20px 15px;
    }
    
    .trust-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trust-badge-grid {
        grid-template-columns: 1fr; /* Stack on small phones */
    }
}



/* --- Who We Are (Image Version) --- */
.who-we-are {
    padding: 100px 0;
    overflow: hidden;
}

.who-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

.who-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 25px;
}

.who-content h2 span { color: var(--secondary); }

.who-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--blk);
    margin-bottom: 30px;
}

/* Feature List */
.who-feature-list {
    display: grid;
    gap: 15px;
}

.who-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.who-item i {
    color: #10b981;
    font-size: 1.4rem;
}

/* Right Visual Side (Image Styling) */
.who-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    position: relative;
    /* Optional: making it look integrated with a slight border */
    border: 8px solid #fff;
}

/* Background Decoration */
.who-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--secondary);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    border-radius: 50%;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--blk);
    font-weight: 600;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .who-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .who-feature-list {
        justify-content: center;
        margin: 0 auto 40px;
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        animation: none; /* Mobile par animation band kar sakte hain clarity ke liye */
    }
}



/* University Section Styling */
.uni-section {
    padding: 80px 0;
    background: #ffffff;
}

.mode-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.uni-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 800;
}

/* Concise Description Layout */
.uni-description-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    text-align: left;
}

.desc-text p {
    font-size: 1.1rem;
    color: var(--blk);
    line-height: 1.7;
}

.desc-features ul {
    list-style: none;
    padding: 0;
}

.desc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.desc-features i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Logo Grid Layout */
.uni-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 10px;
}

.uni-card {
    background: #fff;
    
    border-radius: 16px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.uni-card .img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}


.uni-card img {
    display: block;
    margin: auto;
    max-width: 200px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}


/* Hover Effects */
.uni-card:hover{
    scale: 1.05;
}
/* --- Mobile Responsive CSS for University Section --- */

/* Tablets aur Chote Laptops (992px se niche) */
@media (max-width: 992px) {
    .uni-section {
        padding: 60px 0;
    }

    .uni-description-grid {
        grid-template-columns: 1fr; /* 2 columns se 1 column ho jayega */
        gap: 30px;
        text-align: center; /* Content center ho jayega */
    }

    .desc-features ul {
        display: inline-block; /* List items center karne ke liye */
        text-align: left;
        width: 100%;
        max-width: 400px;
    }

    .uni-intro h2 {
        font-size: 1.8rem;
    }
}

/* Mobile Phones (768px se niche) */
@media (max-width: 768px) {
    .uni-section {
        padding: 40px 0;
    }

    .uni-intro h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .desc-text p {
        font-size: 0.8rem;
    }

    /* Logo Grid ko 2 columns mein force karne ke liye */
    .uni-logo-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }

    .uni-card {
        height: 100px; /* Mobile par height thodi kam */
        padding: 10px;
    }

    .uni-card img {
        max-height: 60px;
    }

    .desc-features li {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Chote Mobile (480px se niche) */
@media (max-width: 480px) {
    .uni-intro h2 {
        font-size: 1.3rem;
    }

    .mode-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .uni-logo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 hi columns rahenge but gap kam ho jayega */
        gap: 10px;
    }

    .uni-card {
        border-radius: 10px; /* Thoda kam round */
    }
}




/* --- Online Mode Specific Styles --- */

/* Badge color variation for Online */
.mode-badge.online {
    background: rgba(139, 92, 246, 0.1); /* Light Purple tint */
    color: #7c3aed; /* Deep Purple */
}

/* Section Variation */
.online-mode {
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

/* Ensure Description Grid behaves on mobile */
@media (max-width: 992px) {
    .uni-description-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .desc-features ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .desc-features li {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* University Card Optimization for Small Screens */
@media (max-width: 768px) {
    .uni-logo-grid {
        grid-template-columns: repeat(2, 1fr); /* Har row mein 2 logos */
        gap: 12px;
    }
    
    .uni-card {
        height: 90px;
        padding: 10px;
    }
    
    .uni-intro h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .uni-intro h2 {
        font-size: 1.3rem;
    }
    
    .desc-text p {
        font-size: 0.95rem;
    }
}


/* --- Distance Mode Specific Styles --- */

/* Badge color variation for Distance */
.mode-badge.distance {
    background: rgba(16, 185, 129, 0.1); /* Light Green tint */
    color: #059669; /* Deep Emerald Green */
}

/* Specific Border for list items in Distance mode */
.distance-mode .desc-features li {
    border-left: 4px solid #059669;
}

.distance-mode .desc-features i {
    color: #059669;
}

/* Mobile Adjustments for Uniformity */
@media (max-width: 992px) {
    .uni-description-grid {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 40px;
    }

    .desc-features ul {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .uni-logo-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobile par 2 logos par row */
        gap: 12px;
    }

    .uni-card {
        height: 90px;
        border: 1px solid #eee; /* Light border for clean look */
    }

    .uni-intro h2 {
        font-size: 1.4rem;
        padding: 0 10px;
    }
}

/* Logo Image scaling for mobile */
@media (max-width: 480px) {
    .uni-card img {
        max-height: 55px;
    }
    
    .desc-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}


/* --- Course Categories Section --- */
.course-categories {
    padding: 80px 0; /* Desktop padding */
    background: #ffffff;
    overflow: hidden;
}

/* Grid logic fixed for Responsiveness */
.category-grid {
    display: grid;
    /* Default: auto-fit automatically adjusts columns based on screen width */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px;
    margin-bottom: 60px;
}

/* Category Card Styling */
.cat-card {
    background: #f8fafc;
    padding: 35px 25px;
    border-radius: 24px;
    border: 1px solid #e2e8f0; /* Default light border */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Sare cards ek barabar height ke honge */
}

.cat-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cat-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.03);
}

.cat-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
}

.cat-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Course Tags/Badges */
.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.course-tags span {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    transition: 0.3s;
}

.cat-card:hover .course-tags span {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Card Footer Info */
.cat-footer {
    margin-top: auto; /* Push to bottom of card */
    padding-top: 15px;
    border-top: 1px dashed #cbd5e1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cat-footer span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-footer i {
    color: var(--secondary);
}

/* Validity Info Bar */
.validity-info-bar {
    background: var(--primary); /* Changed to primary/dark for professional look */
    color: #fff;
    padding: 30px 40px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.v-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.v-item i {
    font-size: 2rem;
    color: var(--accent); /* Highlight icon with accent color */
}

.v-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.v-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.v-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
}

/* ============================================================
   MOBILE RESPONSIVE (Strict Fix)
   ============================================================ */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet par 2 column */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .course-categories {
        padding: 50px 0;
    }
    
    .category-grid {
        grid-template-columns: 1fr; /* Mobile par strictly 1 column */
        gap: 20px;
    }

    .validity-info-bar {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px 20px;
    }

    .v-divider {
        width: 80%;
        height: 1px;
        background: rgba(255,255,255,0.1);
    }

    .v-item {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cat-card {
        padding: 25px 20px;
    }
    
    .cat-card h3 {
        font-size: 1.25rem;
    }
}


/* --- What We Do Section Styles --- */
.what-we-do {
    padding: 50px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}

.section-header h2 span {
    color: var(--secondary);
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--primary);
    transition: all 0.4s ease;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Step Number in Background */
.step-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9;
    z-index: -1;
    transition: 0.4s;
}

.process-card:hover .step-num {
    color: rgba(37, 99, 235, 0.05);
}

/* Icons and Content */
.process-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 15px;
    margin-bottom: 25px;
}

.process-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-card p b {
    color: var(--primary);
}

/* ============================================================
   MOBILE RESPONSIVE (What We Do)
   ============================================================ */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }

    .process-card {
        padding: 30px 20px;
    }
}




/* --- Course Marquee Section --- */
.course-marquee-section {
    padding: 60px 0;
    background: #f0f0f0;
    overflow: hidden;
}

.course-marquee-header {
    text-align: center;
    margin-bottom: 60px;
}

.course-marquee-header h2 {
    font-size: 2.5rem;
    color: var(--blk);
    font-weight: 800;
    margin-top: 10px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 15px auto;
    border-radius: 10px;
}

/* Marquee Logic with 60s Speed */
.course-marquee-wrapper {
    display: flex;
    overflow: hidden;
    padding: 20px 0;
}

.course-marquee-track {
    display: flex;
    gap: 30px;
    /* Speed set to 60 seconds for very smooth motion */
    animation: scrollTrack 60s linear infinite; 
    width: max-content;
}

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.course-marquee-track:hover {
    animation-play-state: paused; /* Pause on hover */
}

/* --- Premium Course Card --- */
.course-premium-card {
    width: 320px;
    background: #ffffff;
    border-radius: 20px;
    /* Main Border */
    border: 1px solid var(--primary); 
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

/* Card Image Section */
.course-card-top {
    position: relative;
    height: 200px;
    overflow: hidden;
    /* Bottom border for image area */
    border-bottom: 1px solid #f1f5f9; 
}

.course-card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.badge-mode {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

/* Card Content Section */
.course-card-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-card-info h3 {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 3.5rem; /* Ensures alignment */
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.course-meta i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Updated Action Button */
.course-action-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --- HOVER EFFECTS --- */
.course-premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary); /* Border turns blue on hover */
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.course-premium-card:hover .course-card-top img {
    transform: scale(1.1);
}

.course-action-btn:hover {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .course-premium-card {
        width: 280px;
    }
    .course-marquee-header h2 {
        font-size: 1.8rem;
    }
}



/* --- Modern Trust Bar Styles --- */
.trust-bar-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin-top: 50px; /* Isse upar wale section par overlap karega, jo premium lagta hai */
    position: relative;
    z-index: 10;
    border: 1px solid #000;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.trust-item-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: all 0.3s ease;
}

.trust-item-card:not(:last-child) {
    border-right: 1px solid #e2e8f0; /* Divider lines between items */
}

/* Icon Styling */
.trust-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

/* Icon Color Variations */
.bg-blue   { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.bg-orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.bg-gold   { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.bg-green  { background: rgba(16, 185, 129, 0.1); color: #10b981; }

/* Text Styling */
.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
}

.trust-text span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hover Effect */
.trust-item-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.trust-item-card:hover .trust-text strong {
    color: var(--secondary);
}

/* ============================================================
   MOBILE RESPONSIVE (Trust Bar)
   ============================================================ */

@media (max-width: 1024px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablets par 2 column */
        gap: 30px;
    }
    
    .trust-item-card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .trust-bar-container {
        margin: 20px auto; /* Mobile par overlap hata diya */
        padding: 20px;
    }

    .trust-bar-grid {
        grid-template-columns: 1fr; /* Mobile par stack */
        gap: 15px;
    }

    .trust-item-card {
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 15px;
    }

    .trust-item-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .trust-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}





/* --- Intro Section Styles --- */
.intro-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Side Content --- */
.intro-sub-tag {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.intro-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--primary);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.intro-content h1 span {
    color: var(--secondary);
    background: linear-gradient(to right, var(--secondary), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Features List */
.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.i-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.i-feature i {
    color: #10b981; /* Success Green */
    font-size: 1.3rem;
}

/* CTA Button */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

/* --- Right Side Visual --- */
.intro-visual {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.intro-main-img {
    width: 100%;
    border-radius: 30px 80px 30px 30px; /* Custom modern curve */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Floating Box */
.floating-exp-box {
    position: absolute;
    bottom: 50px;
    left: -20px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #f1f5f9;
    animation: floatVertical 4s ease-in-out infinite;
}

.exp-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.exp-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
}

.exp-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .intro-features {
        justify-content: center;
    }

    .floating-exp-box {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        animation: none;
    }
}

@media (max-width: 500px) {
    .intro-features {
        grid-template-columns: 1fr; /* Single column for small phones */
        text-align: left;
        max-width: 250px;
        margin: 0 auto 30px;
    }
}


/* --- Features Section Styling --- */
.features-section {
    padding: 50px 0;
    background-color: #f8fafc; /* Professional off-white/light-gray */
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.sub-tag {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 15px auto;
    border-radius: 10px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary);
}

/* Icon Wrap Styling */
.f-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    transition: 0.3s;
}

.blue-tint { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.orange-tint { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.green-tint { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Hover Accent Line */
.f-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--secondary);
    transition: width 0.4s
}




.expert-carousel-section {
    background-color: #f1f5f9;
    padding: 40px 0;
}

.header-line {
    width: 70px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 10px;
}

/* Carousel Main Container */
.carousel-container {
    position: relative;
    padding: 0 40px;
}

.expert-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.expert-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Card Layout */
.expert-item {
    flex: 0 0 300px; /* Card Width */
}

.counsellor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.counsellor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.counsellor-card:hover .card-image img {
    transform: scale(1.1);
}

.experience-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.card-content {
    padding: 20px;
    text-align: center;
}

.name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.designation {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.qualification-box, .company-name {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.consult-btn {
    display: inline-block;
    width: 100%;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.consult-btn:hover {
    background: var(--dark);
    color: white;
}

/* Navigation Buttons Styling */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
}

.nav-btn.prev { left: -10px; }
.nav-btn.next { right: -10px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .expert-item { flex: 0 0 260px; }
    .nav-btn { display: none; } /* Hide buttons on mobile for touch scroll */
    .carousel-container { padding: 0 15px; }
}






/* --- BSCC Section Styles --- */
.bscc-section {
    padding: 60px 0;
    background: #ffffff;
}

.bscc-banner {
    background: #020d03;
background: linear-gradient(90deg, rgba(2, 13, 3, 1) 11%, rgba(250, 244, 82, 1) 88%);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

/* Background Decoration (Optional Circle) */
.bscc-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.bscc-tag {
    background: var(--accent);
    color: var(--primary);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bscc-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.bscc-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bscc-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bscc-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.bscc-checklist i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Right Side Action Styling */
.bscc-action {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #000;
    backdrop-filter: blur(10px);
}

.bscc-price-tag {
    margin-bottom: 25px;
}

.bscc-price-tag span {
    display: block;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--primary);
}

.bscc-price-tag strong {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
}

.bscc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: var(--primary);
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.bscc-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.bscc-action small {
    display: block;
    margin-top: 15px;
    opacity: 0.6;
    font-size: 0.75rem;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .bscc-banner {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
    }

    .bscc-checklist {
        align-items: center;
        margin-bottom: 30px;
    }

    .bscc-action {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .bscc-price-tag strong {
        font-size: 2rem;
    }
    
    .bscc-btn {
        font-size: 1rem;
        padding: 15px 20px;
    }
}


/* --- Client Review Section Styling --- */
.client-review-section {
    padding: 50px 0;
    background: #f1f5f9; /* Subtle contrast background */
    overflow: hidden;
}

.review-slider {
    display: flex;
    margin-top: 50px;
    padding: 20px 0;
}

/* Infinite Scroll Animation */
.review-track {
    display: flex;
    gap: 30px;
    animation: scrollReview 60s linear infinite;
    width: max-content;
}

.review-track:hover {
    animation-play-state: paused;
}

@keyframes scrollReview {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review Card Styling */
.review-card {
    width: 380px;
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
}

.quote-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

/* Client Meta */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-photo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
}

.client-meta h4 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 800;
}

.client-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Rating Stars */
.stars {
    margin-bottom: 15px;
    color: #f59e0b; /* Golden stars */
    font-size: 1rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    height: 4.5em; /* Limit height for uniform cards */
    overflow: hidden;
}

/* Verified Badge */
.verified-partner {
    font-size: 0.75rem;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .review-card {
        width: 300px;
        padding: 30px 25px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}


/* --- Right Social Panel Sidebar --- */
.social-panel {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-panel a {
    width: 48px;
    height: 48px;
    background: #ffffff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

/* Hover Scale Effect */
.social-panel a:hover {
    transform: scale(1.15) translateX(-5px);
    color: #fff;
}

/* Brand Specific Colors on Hover */
.social-panel a[href*="facebook.com"]:hover  { background: #1877F2; border-color: #1877F2; }
.social-panel a[href*="instagram.com"]:hover { background: #E4405F; border-color: #E4405F; }
.social-panel a[href*="linkedin.com"]:hover  { background: #0A66C2; border-color: #0A66C2; }
.social-panel a[href*="twitter.com"]:hover, 
.social-panel a[href*="twitter-x"]:hover     { background: #000000; border-color: #000000; }
.social-panel a[href*="wa.me"]:hover          { background: #25D366; border-color: #25D366; }
.social-panel a[href*="youtube.com"]:hover   { background: #FF0000; border-color: #FF0000; }

/* Enquiry Button Special Styling */
.social-panel a.enquiry {
    background: var(--accent); /* Amber/Gold */
    color: var(--primary);
    border-color: var(--accent);
    animation: pulse-gold 2s infinite;
}

.social-panel a.enquiry:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* --- Mobile Toggle Button --- */
.social-toggle {
    display: none; /* Desktop par hidden */
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.social-toggle:active {
    transform: scale(0.9);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .social-toggle {
        display: flex; /* Mobile par dikhega */
    }

    .social-panel {
        right: -80px; /* Hide off-screen initially */
        top: auto;
        bottom: 110px;
        transform: none;
        gap: 10px;
    }

    .social-panel.active {
        right: 25px; /* Slide in when active class is added */
    }

    .social-panel a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}




/* ===================================== about page css =====================*/

/* ===============================
   HERO BANNER SECTION
   =============================== */

/* Section Container */
.hero-banner {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

.hero-banner .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-banner .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Responsive wrap */
    gap: 40px;
}

/* --- Left Column: Text --- */
.hero-text {
    flex: 1;
    min-width: 300px;
    animation: slideUp 0.8s ease-out forwards;
}

/* Badge Pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(30, 60, 114, 0.1);
    color: #1e3c72;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-pill .dot {
    height: 8px;
    width: 8px;
    background-color: #e63946; /* Red Dot */
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 5px #e63946;
}

/* Main Title */
.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary); /* Dark Blue */
    margin: 0 0 15px 0;
    font-weight: 800;
}

.brand-highlight {
    color: var(--blk); /* Red Highlight */
    position: relative;
    display: inline-block;
}

/* Tagline */
.hero-tagline {
    font-size: 1.2rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.divider {
    color: #ccc;
    margin: 0 8px;
}

/* Description */
.hero-desc {
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-main {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.btn-main:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    border: 2px solid #1e3c72;
    color: #1e3c72;
}

.btn-outline:hover {
    background: #1e3c72;
    color: #fff;
}

/* --- Right Column: Image & Animation --- */
.hero-img-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 300px;
}

/* The Image itself */
.floating-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    z-index: 2;
    /* Animation call */
    animation: floatUpDown 4s ease-in-out infinite;
}

/* Background Abstract Shapes */
.circle-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #e63946, #ffadad);
    top: -20px;
    right: 20px;
    filter: blur(40px);
    animation: moveShape 6s infinite alternate;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #1e3c72, #4facfe);
    bottom: -10px;
    left: 40px;
    filter: blur(50px);
    animation: moveShape 8s infinite alternate-reverse;
}

/* ===============================
   KEYFRAME ANIMATIONS
   =============================== */

/* 1. Slide text up on load */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Float Image Up and Down */
@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); } /* Moves up */
    100% { transform: translateY(0); }
}

/* 3. Background Blob Movement */
@keyframes moveShape {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 20px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner .row {
        flex-direction: column-reverse; /* Put image on top for mobile? Or keep bottom */
        text-align: center;
    }

    .hero-title { font-size: 2rem; }
    .hero-tagline { 
        font-size: 1rem; 
        border: none; /* Remove border on mobile */
        padding: 0;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-tagline .divider { display: none; }
    .hero-tagline { display: flex; flex-direction: column; gap: 5px; }
}


/* ===============================
   SECTION 2: WHO WE ARE
   =============================== */
.about-section {
    background-color: var(--white);
    padding: 50px;
    font-family: 'Segoe UI', sans-serif;
    color: var(--blk);
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.align-items-center { align-items: center; }

/* --- Left Column (Text) --- */
.col-text {
    flex: 1;
    min-width: 300px;
}

.sub-heading {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

/* Confusion to Clarity Box */
.mission-box {
    background: var(--bg);
    border-left: 5px solid var(--primary);
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--secondary);
    border-radius: 0 8px 8px 0;
}

.text-secondary { color: var(--secondary); text-decoration: line-through; opacity: 0.7; }
.text-primary { color: var(--primary); text-transform: uppercase; font-weight: 800; }

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive Grid */
    gap: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.feature-list li:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(245, 173, 29, 0.15); /* Light Primary */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.feature-list .text {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Read More Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    transition: 0.3s;
}

.btn-read-more:hover {
    color: var(--primary);
    gap: 12px;
}

/* --- Right Column (Image) --- */
.col-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--primary); /* Graphic Shadow effect */
    transition: 0.3s;
}

.col-image:hover .main-img {
    box-shadow: 10px 10px 0px var(--secondary);
}

/* Floating Stat Card */
.floating-card {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--secondary);
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 2rem;
    color: var(--primary);
}

.floating-card h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--blk);
}

.floating-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .row { flex-direction: column; }
    .main-heading { font-size: 2rem; }
    .image-wrapper { margin-top: 20px; padding: 0 20px; }
    .floating-card { left: 10px; bottom: -20px; }
}





/* ===============================
   SECTION 3: IMAGE LEFT - TEXT RIGHT
   =============================== */
.vision-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

/* --- Left Column: Visuals --- */
.col-visual-left {
    flex: 1;
    min-width: 320px;
    position: relative;
    padding-right: 30px; /* Space between image and text */
}

.image-stack {
    position: relative;
    border-radius: 20px;
}

.bg-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -15px 15px 0px var(--secondary); /* Dark Blue Shadow on Left */
    object-fit: cover;
    height: 400px;
}

/* Stats Overlay (Floating on image) */
.stats-overlay {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--secondary); /* Dark Blue */
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-top: 4px solid var(--primary); /* Gold Top Border */
}

.stat-item {
    text-align: center;
}

.counter {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary); /* Gold Text */
    margin: 0;
}

.stat-item p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* --- Right Column: Content --- */
.col-content-right {
    flex: 1;
    min-width: 300px;
    padding-left: 20px;
}

/* Typography */
.sub-heading {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.legacy-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0 30px 0;
}

.vision-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.highlight-gold {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--secondary);
}

.highlight-blue {
    color: var(--secondary);
}

.vision-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* List Styling */
.vision-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.vision-list li {
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vision-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .row {
        flex-direction: column;
    }
    
    .col-visual-left {
        padding-right: 0;
        margin-bottom: 60px; /* Space for the floating stats */
    }
    
    .col-content-right {
        padding-left: 0;
    }
    
    .stats-overlay {
        right: 10px; /* Adjust for mobile */
        left: 10px;
        bottom: -40px;
        justify-content: space-around;
    }
    
    .bg-img {
        height: 300px;
        box-shadow: -10px 10px 0px var(--secondary);
    }
}



/* ===============================
   SECTION 4: WHAT WE DO (SERVICES)
   =============================== */
.services-section {
    background-color: var(--white); /* Light Grey/Blue Background */
    padding: 50px;
    font-family: 'Segoe UI', sans-serif;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.text-center { text-align: center; }

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.header-divider {
    width: 60px;
    height: 3px;
    background: var(--primary); /* Gold Line */
    margin: 15px auto;
    border-radius: 2px;
}

.header-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Responsive columns */
    gap: 30px;
}

/* Service Card Styling */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    z-index: 1;
}

/* Hover Effect: Lift up & Border */
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--blk); /* Light Gold Border */
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1); /* Darker Shadow */
}

/* Icon Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--secondary); /* Dark Blue BG */
    color: var(--primary); /* Gold Icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: rotateY(180deg); /* Flip animation on hover */
    background: var(--primary);
    color: var(--secondary);
}

/* Card Text */
.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Step Number (Watermark effect) */
.step-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,0,0,0.2); /* Very faint watermark */
    z-index: -1;
    font-family: 'Segoe UI', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
    }
    .service-card {
        padding: 30px 20px;
    }
}



/* ===============================
   SECTION 5: UNIVERSITY PARTNERS
   =============================== */
.partners-section {
    background-color: var(--white);
    padding: 60px 0; /* Less padding for a marquee section */
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden; /* Hide overflow for marquee */
}

/* Reuse header styles from previous section */
.partners-section .section-header {
    margin-bottom: 40px;
}

/* Marquee Wrapper */
.marquee-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    /* Add gradient mask to fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Scrolling Content */
.marquee-content {
    display: flex;
    gap: 40px; /* Space between logos */
    animation: scrollLoop 25s linear infinite;
    width: max-content; /* Ensure it fits all items */
}

.marquee-content:hover {
    animation-play-state: paused; /* Pause on hover */
}

/* Individual Logo Box */
.partner-logo {
    background: var(--bg);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 160px; /* Fixed width for uniformity */
    height: 140px;
    transition: transform 0.3s, border-color 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(245, 173, 29, 0.15);
}

.partner-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(100%); /* B&W by default */
    opacity: 0.7;
    transition: 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%); /* Color on hover */
    opacity: 1;
}

.partner-logo span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
}

/* Animation Keyframes */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * (160px + 40px) * 8)); 
        /* Move left by (Item Width + Gap) * Number of Unique Items */
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .partner-logo {
        min-width: 140px;
        padding: 15px;
    }
    .marquee-content {
        gap: 20px;
    }
}






