/* --- Variables & Reset --- */
:root {
    --bg-dark: #0b1118;
    --text-white: #ffffff;
    --text-muted: #b0b3b8;
    --primary-purple: #6a56f0;
    --accent-pink: #ff60b6;
    --accent-green: #37d67a;
    --accent-blue: #007bff;
    --transition: all 0.3s ease;
    --container-width: 1440px;
}



















* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* --- Header & Navigation --- */
/* Navigation Bar Base */

/* --- Hero Section --- */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
	
 
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 {
   
 
}
.hero-content p {
    
}
.hero-content .btn-primary {
  
    
}
.hero-content .btn-secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    color: #fff;
}
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.text-gradient { color: #a29bfe; }

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}


/* Global Reset & Typography */
:root {
    --primary-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--primary-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: 700; /* Bold headings like Razorpay */
    letter-spacing: -0.02em;
}

/* Specific styling for the Razorpay-style Auth Block */
.auth-side-info h2 {
    font-weight: 800;
    line-height: 1.3;
}

.form-container h3 {
    font-weight: 600;
}

.btn-auth-continue, 
.btn-google-auth {
    font-family: var(--primary-font);
    font-weight: 500;
}

/* --- Stats Cards --- */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.stat-card {
    border: 1px dashed #3a4149;
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 150px;
}

.stat-card .label { font-size: 0.8rem; color: var(--text-muted); display: block; }
.stat-card .val { font-weight: 700; font-size: 1rem; margin-top: 5px; }
.stat-card .arrow { color: var(--text-muted); margin-left: 5px; }

.featured-stat { border-style: dashed; flex: 1; }
.highlight { color: var(--accent-pink); }

/* --- Visuals Section --- */
.hero-visuals {
    position: relative;
    height: 550px;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.main-img {
    width: 380px;
    height: 480px;
    z-index: 5;
    right: 180px;
    top: 0;
}

.secondary-img {
    width: 240px;
    height: 380px;
    z-index: 10;
    right: 0;
    top: 60px;
    border-left: 4px solid var(--bg-dark);
}

.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Abstract Shapes */
.shape { position: absolute; border-radius: 4px; }
.shape-green { width: 100px; height: 180px; background: var(--accent-green); left: 0; top: 120px; opacity: 0.9; }
.shape-pink { width: 150px; height: 60px; background: var(--accent-pink); right: 220px; top: -20px; }
.shape-blue { width: 60px; height: 120px; background: var(--accent-blue); right: 100px; top: 0; }

/* --- Floating Elements --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; fill: white; }

/* --- Responsive Media Queries --- */

/* Laptop (1440px) */
@media (max-width: 1440px) {
    .main-img { right: 140px; width: 340px; }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text { display: flex; flex-direction: column; align-items: center; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-visuals { display: none; } /* Hide complex overlap on tablet to save space */
    .stats-grid { justify-content: center; }
}

/* Mobile (480px) */
@media (max-width: 768px) {
    .hide-mobile { display: none; }
    
    .hamburger {
        display: block;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px 0;
        transition: 0.4s;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 90px;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--bg-dark);
        transition: 0.5s;
        padding: 40px;
    }

    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; align-items: center; font-size: 1.5rem; }
}

/* Desktop 4K (1920px+) */
@media (min-width: 1920px) {
    :root { --container-width: 1800px; }
    h1 { font-size: 5.5rem; }
}

/* --- Programs Section Styles --- */
.programs {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #051937 100%);
    padding: 100px 0;
}

.programs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
  
    padding-top: 40px;
}

.eyebrow {
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 12px;
}

.programs-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.btn-blue-outline {
    border: 2px solid var(--accent-blue);
    background: var(--accent-blue);
    color: white;
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* Cards Layout */
.cards-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 320px;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.cards-wrapper::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome/Safari */

.program-card {
    background: #ffffff;
    border-radius: 16px;
    color: #1c1c1c;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    cursor: pointer;
}

.program-card:hover { transform: translateY(-10px); }

.card-image {
    position: relative;
    height: 180px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.card-image img { width: 100%; height: 100%; object-fit: cover; }

.card-icon {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.card-icon.blue { background: #007bff; }
.card-icon.purple { background: #a29bfe; }

.card-content {
    padding: 24px;
    flex-grow: 1;
}

.card-content h3 {
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
}

.program-type { color: #007bff; }
.rating { color: #f39c12; }

.card-footer {
    border-top: 1px solid #eee;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .programs-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .cards-wrapper { grid-auto-columns: 280px; }
}
/* --- Activity Section Styles --- */
.activities {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 20px;
}

.activity-card {
    background: #161b22; /* Slightly lighter than main bg */
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
}

.activity-img {
    height: 250px;
    width: 100%;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-body {
    padding: 25px;
}

.activity-num {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.activity-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.activity-list {
    list-style: none;
    padding: 0;
}

.activity-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

/* --- Responsive for Activities --- */

/* Laptop / Small Desktop */
@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    }
}

/* Mobile */
@media (max-width: 600px) {
    .activities-grid {
        grid-template-columns: 1fr; /* Stacked */
    }
    .section-title {
        font-size: 2.2rem;
    }
}

/* --- Slider Section Styles --- */
.slider-section {
    padding: 100px 0;
    background: #0b1118;
    overflow: hidden;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.slider-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.control-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.slider-container {
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: calc(50% - 15px); /* Shows 2 cards on desktop */
    background: #161b22;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-icon {
    font-family: serif;
    font-size: 4rem;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 10px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.student-name {
    font-weight: 700;
    font-size: 1rem;
}

.student-grade {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Responsive Slider --- */
@media (max-width: 992px) {
    .slide {
        min-width: 100%; /* Show 1 card on mobile/tablet */
    }
}

/* --- Problem & Solution Styles --- */
.problem-solution {
    width: 100%;
}

/* AI Platform Banner */
.ai-platform-banner {
    background: linear-gradient(90deg, #6a56f0 0%, #ff60b6 50%, #f39c12 100%);
    padding: 40px 0;
    text-align: center;
}

.banner-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ai-platform-banner h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.btn-outline-white {
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: #ff60b6;
}

/* Split Grid Layout */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Exact 50/50 split */
    min-height: 200px;
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10%;
}

.problem-bg {
    background-color: #ffcc00; /* Yellow from image */
}

.solution-bg {
    background-color: #2ecc71; /* Green from image */
    border-left: 1px solid rgba(0,0,0,0.1);
}

.content-box {
    max-width: 500px;
    color: #1a1a1a; /* Dark text for high contrast */
}

.eyebrow-dark {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.grid-item h3 {
   font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr; /* Stack on mobile/tablets */
    }
    
    .grid-item {
        padding: 45px 5%;
        text-align: left;
    }

    .ai-platform-banner h2 {
        font-size: 1.5rem;
		text-align: left;
    }
}
/* --- Statistics & Partnership Styles --- */
.stats-partnership {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.stats-info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Metrics Styling */
.metrics-column {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.metric-card {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
}

.metric-card:hover {
    border-color: var(--primary-purple);
    background: rgba(106, 86, 240, 0.05);
}

.metric-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-arrow {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: auto;
}

.logo a {
    color: #fff;
}
.logo a{
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 1px;
	text-decoration: none;
}

.star {
    color: #f1c40f;
}

.sub-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Award Card Specifics */
.award-card {
    flex: 2; /* Takes more space */
    min-width: 300px;
}

.highlight-pink {
    color: #ff60b6;
}

.award-source {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* CTA Column */
.cta-column {
    display: flex;
    justify-content: flex-end;
}

.cta-content {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.full-width {
    width: 100%;
    margin-bottom: 15px;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .stats-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .metrics-column {
        justify-content: center;
    }

    .cta-column {
        justify-content: center;
        margin-top: 20px;
    }
}

/* --- Final Section Styles --- */
.final-block {
    padding: 100px 0;
    background: #0a0e14;
    color: #fff;
}

/* Metrics */
.metrics-row {
    display: flex;
    gap: 20px;
    
    flex-wrap: wrap;
}

.metric-card {
    flex: 1;
    min-width: 250px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
}

.metric-card .label { font-size: 0.8rem; color: #b0b3b8; display: block; }
.metric-card .val { font-size: 1.1rem; font-weight: 700; margin: 8px 0; }
.metric-card .pink { color: #ff60b6; }
.metric-card .star { color: #f1c40f; }
.metric-card .sub { font-size: 0.85rem; color: #b0b3b8; }
.metric-card .arrow { float: right; color: #b0b3b8; }

/* Slider Header */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.eyebrow { color: #6a56f0; font-weight: 700; font-size: 0.75rem; letter-spacing: 1px; }
.slider-header h2 { font-size: 2.2rem; margin-top: 10px; }

.btn-outline {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

/* Horizontal Slider */
.slider-viewport {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}
.slider-viewport::-webkit-scrollbar { display: none; }

.slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

/* Program Cards */
.p-card {
    width: 300px;
    background: #fff;
    border-radius: 12px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.p-card:hover { transform: translateY(-10px); }

.p-img { height: 160px; }
.p-img img { width: 100%; height: 100%; object-fit: cover; }

.p-body { padding: 20px; flex-grow: 1; }
.p-body h3 { color: #007bff; margin-bottom: 10px; font-size: 1.2rem; }
.p-body p { font-size: 0.9rem; color: #555; line-height: 1.4; margin-bottom: 15px; }

.p-meta { display: flex; justify-content: space-between; font-size: 0.7rem; font-weight: 800; }
.p-meta .type { color: #007bff; }
.p-meta .rating { color: #f39c12; }

.p-footer {
    border-top: 1px solid #eee;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .slider-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .slider-header h2 { font-size: 1.6rem; }
}
/* --- Announcement Bar Styles --- */
.top-announcement {
    background: linear-gradient(90deg, #4b1fb0 0%, #d81b60 100%); /* Purple to Pink gradient */
    color: white;
        padding: 20px 0;12
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 1100; /* Stays above the main header */
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.close-announcement {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.close-announcement:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Adjust Main Header to push down when announcement is present */
.main-header {
    top: 44px; /* Adjust this value based on height of announcement bar */
}

/* Adjust Hero padding to account for the extra top space */
.hero {
    padding-top: 90px;
}

@media (max-width: 768px) {
    .top-announcement {
        font-size: 0.85rem;
        padding: 20px 15px;
		
    }
    .main-header {
        top: 60.8px;
        background: #000;
    }
}

/* --- Graduate Testimonial Styles --- */
.grad-testimonials {
    padding: 80px 0;
    background-color: #ffffff; /* White background as per image */
    text-align: center;
}

.grad-intro {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grad-slider-container {
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none; /* Firefox */
}
.grad-slider-container::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.grad-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 20px;
}

.grad-card {
    position: relative;
    width: 280px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.grad-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grad-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    text-align: left;
}

.grad-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
    text-transform: uppercase;
}

.grad-quote {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
}

.grad-name {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
}

.grad-title {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Hover effect */
.grad-card:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}
/* --- Educator Branding Styles --- */
.educator-branding {
    background-color: #6a56f0; /* The signature Kidocode purple */
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.educator-branding1{background-color: #000;}

.educator-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Wrapper and Decorative Blocks */
.educator-image-wrapper {
    position: relative;
    flex: 1;
}

.main-portrait {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.main-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The color blocks on the sides */
.deco-block {
    position: absolute;
    width: 40px;
    height: 60px;
    left: -20px;
    z-index: 1;
}

.pink-block { background-color: #ff60b6; top: 10%; }
.black-block { background-color: #1a1a1a; top: 30%; }
.green-block { background-color: #2ecc71; top: 50%; }

/* Content Styling */
.educator-content {
    flex: 1.2;
}

.eyebrow-light {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.highlight-pink-text {
    color: #ff80c5; /* Brighter pink for the secondary heading */
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 550px;
    opacity: 0.9;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .educator-flex {
        flex-direction: column;
        text-align: left;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .educator-image-wrapper {
        width: 100%;
        max-width: 500px;
    }
}
/* --- Final Footer Styles --- */
.main-footer {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.footer-branding {
    margin-bottom: 40px;
}

.part-of {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
    margin-left: 5px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.footer-col h4, 
.accordion-toggle {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    background: none;
	    margin-top: 20px;
    border: none;
    text-align: left;
    width: 100%;
    padding: 0;
    cursor: default;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #02b3e4; /* Signature Blue */
    text-decoration: underline;
}

/* --- Responsive Mobile Styles (Accordion) --- */
@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-col {
        border-bottom: 1px solid #eee;
    }

    .accordion-toggle {
        padding: 20px 0;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .accordion-toggle .chevron::after {
        content: '▼';
        font-size: 0.6rem;
        transition: transform 0.3s;
    }

    .footer-col.active .chevron::after {
        transform: rotate(180deg);
    }

    .footer-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s;
        padding-bottom: 0;
    }

    .footer-col.active .footer-nav {
        max-height: 500px;
        padding-bottom: 20px;
    }
}

/* --- Scrolling Marquee Styles --- */
.marquee-wrapper {
    width: 100%;
    background-color: #ff6600; /* Bright orange from design */
    overflow: hidden;
    white-space: nowrap;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    z-index: 1050;
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

.marquee-item {
    display: inline-block;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding-right: 50px; /* Space between repeated sets */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Keyframe for smooth infinite scrolling */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.33%);
    }
}

/* Pause animation on hover for readability */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 0.85rem;
    }
    .marquee-content {
        animation-duration: 25s; /* Faster scroll for shorter screens */
    }
}
/* --- Trial Class Activities Styles --- */
.activities-section {
    background-color: #0b111a; /* Dark navy background from design */
    padding: 80px 0;
    text-align: center;
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on laptop */
    gap: 20px;
}

.activity-card {
    background-color: #161e2a; /* Slightly lighter card color */
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.activity-img {
    height: 200px;
    width: 100%;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-info {
    padding: 25px 20px;
}

.activity-num {
    display: block;
    color: #888e96;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.activity-info h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.activity-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-info li {
    color: #b0b3b8;
    font-size: 0.95rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 0;
}

/* --- Mobile / Responsive --- */
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablets */
    }
}

@media (max-width: 600px) {
    .activities-grid {
        grid-template-columns: 1fr; /* Single column on phones */
    }
    .section-title {
        font-size: 2rem;
    }
}
/* --- Hero Section Styles --- */
.hero-main {
    background-color: #0b111a; /* Exact dark navy from design */
    padding: 100px 0;
    color: white;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.hero-text {
    flex: 1;
    z-index: 10;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-purple {
    color: #6a56f0; /* Vibrant accent purple */
}

.hero-subtext {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #b0b3b8;
    margin-bottom: 40px;
    max-width: 550px;
}

/* Statistics Badges */
.stats-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #888e96;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ff60b6; /* Pink accent */
}

.voted-box p {
    font-size: 0.75rem;
    margin: 0;
    color: #888e96;
}

.voted-value {
    display: block;
    color: #ff60b6;
    font-weight: 700;
}

.voted-source {
    font-size: 0.75rem;
}

.btn-primary-large {
    background-color: #6a56f0;
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

/* Visual Composition (Right Side) */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.image-stack {
    position: relative;
    z-index: 5;
}

.img-large {
    width: 380px;
    height: 480px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.img-small {
    position: absolute;
    bottom: -20px;
    right: -40px;
    width: 220px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Geometric Rectangles */
.rect-pink { position: absolute; width: 120px; height: 40px; background: #ff60b6; top: 10%; right: 20%; z-index: 1; }
.rect-green { position: absolute; width: 80px; height: 120px; background: #2ecc71; top: 40%; left: -20px; z-index: 1; }
.rect-magenta { position: absolute; width: 60px; height: 60px; background: #ff00ff; bottom: 5%; left: 0; z-index: 1; }
.rect-blue { position: absolute; width: 40px; height: 80px; background: #0000ff; top: 15%; right: -10px; z-index: 1; }

@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .stats-grid { flex-direction: column; align-items: center; }
    .hero-visual { display: none; } /* Hide complex visual on mobile */
}

/* --- Top-Rated Programs Styles --- */
.programs-section {
    background-color: #020b21; /* Deep navy background */
    padding: 80px 0;
    color: white;
}

.programs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #02b3e4;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.programs-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.btn-outline-blue {
       border: 1px solid #6a56f0;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-blue:hover {
    background-color: #02b3e4;
}

/* Horizontal Scroll Grid */
.programs-scroll-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for laptop */
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.program-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    color: #333;
    display: flex;
    flex-direction: column;
    min-width: 280px;
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.card-thumb {
    height: 160px;
    position: relative;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
}

.icon-blue { background-color: #02b3e4; }
.icon-purple { background-color: #a951ed; }

.card-body {
    padding: 20px;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.1rem;
    color: #02b3e4;
    margin-bottom: 15px;
}

.card-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    color: #02b3e4;
}

.rating { color: #f39c12; }

.card-footer {
    background-color: #f9f9fb;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

/* --- Mobile / Responsive --- */
@media (max-width: 1100px) {
    .programs-scroll-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-scroll-container {
        display: flex; /* Snap scrolling for mobile */
        scroll-snap-type: x mandatory;
    }
    .program-card {
        scroll-snap-align: center;
        flex: 0 0 85%;
    }
}

.main-header {
    top: 64px;
}

.main-header {
    ...
    top: 0;
}
.main-header.scrolled {
    top: 0;
}

/* --- Schools Category Styles --- */
.schools-section {
    background-color: #f9f9fb; /* Light gray background */
    padding: 60px 0;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns like the design */
    gap: 24px;
}

.school-card {
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.school-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #eee;
}

.school-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Color Accents for Icons */
.icon-bg-blue { background-color: #e6f0ff; color: #02b3e4; }
.icon-bg-purple { background-color: #f5f0ff; color: #a951ed; }
.icon-bg-cyan { background-color: #e0f7f9; color: #15c2d1; }
.icon-bg-orange { background-color: #fff3e0; color: #ff9800; }
/* Using the same color groups for the second column pairs */
.icon-bg-blue-alt { background-color: #e6f0ff; }
.icon-bg-purple-alt { background-color: #f5f0ff; }
.icon-bg-cyan-alt { background-color: #e0f7f9; }
.icon-bg-orange-alt { background-color: #fff3e0; }

.school-text {
    flex-grow: 1;
}

.school-eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #6a56f0;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.school-text h3 {
    color: #0b111a;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.school-arrow {
    font-size: 1.5rem;
    color: #cbd3da;
    transition: color 0.3s;
}

.school-card:hover .school-arrow {
    color: #6a56f0;
}

/* --- Mobile View --- */
@media (max-width: 768px) {
    .schools-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}
/* --- Trust Bar / Benefits Grid Styles --- */
.trust-bar {
    background-color: #0b111a; /* Matches Hero Navy */
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid {
    display: grid;
    /* Asymmetrical grid: Message takes more space, stats take less */
    grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr; 
    gap: 40px;
    align-items: center;
}

.trust-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.eyebrow-muted {
    display: block;
    font-size: 0.85rem;
    color: #888e96;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.trust-item.description p {
    font-size: 1rem;
    color: #b0b3b8;
    line-height: 1.6;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.85rem;
    color: #888e96;
    line-height: 1.4;
}

/* --- Responsive Adjustments --- */

/* Tablet View */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 Layout */
        gap: 30px;
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr; /* Stacked */
        text-align: center;
    }
    
    .trust-item.message h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}
/* --- School Pathways Grid --- */
.pathways-section {
    background-color: #f9f9fb;
    padding: 60px 0;
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pathway-card {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.pathway-card:hover {
    transform: translateY(-3px);
}

.pathway-icon {
    width: 50px;
    height: 50px;
    background: #eef2ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.pathway-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 4px;
}

.pathway-content h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #111827;
}

.pathway-arrow {
    margin-left: auto;
    color: #d1d5db;
    font-size: 1.2rem;
}

/* --- FAQ Accordion --- */
.faq-section {
    background-color: #e5e7eb; /* Light gray background */
    padding-top: 80px;
    text-align: left;
}

.narrow-container {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #000;
}

.faq-accordion {
    border-top: 1px solid #ccc;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    color: #333;
}

.faq-plus {
    font-size: 1.5rem;
    color: #666;
}

.contact-strip {
   background: linear-gradient(90deg, #6a56f0, #e91e63, #ff9800);
    padding: 30px 0;
    color: white;
    color: white;
    text-align: center;
    padding: 20px;
    font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .pathways-grid { grid-template-columns: 1fr; }
    .faq-main-title { font-size: 2rem; }
}
/* --- AI Platform Banner --- */
.platform-banner {
    background: linear-gradient(90deg, #6a56f0, #e91e63, #ff9800);
    padding: 30px 0;
    color: white;
}

.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-outline-white {
    padding: 10px 25px;
    border: 1px solid white;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* --- Mission Split Grid --- */
.mission-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.mission-col {
    padding: 80px 10%;
    display: flex;
    align-items: center;
}

.problem-bg { background-color: #ffcc00; color: #000; }
.solution-bg { background-color: #33cc33; color: #000; border-left: 1px solid #000; }

.mission-eyebrow {
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.mission-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}

/* --- Philosophy Section --- */
.philosophy-section {
    background-color: #6a56f0; /* Deep Purple */
    padding: 100px 0;
    color: white;
    overflow: hidden;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    position: relative;
}

.philosophy-image img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.display-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
}

.text-pink { color: #ff80ab; }

.philosophy-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .mission-split, .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .display-title { font-size: 2.5rem; }
}
/* --- Back to Top Button --- */
.back-to-top {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 90px; /* Positioned above the mobile fixed footer */
    left: 20px;
    z-index: 99;
    border: 2px solid #ff4d6d;
    background-color: white;
    color: #ff4d6d;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    transition: 0.3s;
}

.arrow-up {
    border: solid #ff4d6d;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
}

/* --- Sticky Side Tab (image_39349b.jpg) --- */
.sticky-side-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.demo-link {
    background-color: #f0e6ff; /* Light purple from image_f6081c.png */
    color: #7a00ff;
    padding: 15px 10px;
    text-decoration: none;
    writing-mode: vertical-rl; /* Vertical text */
    text-orientation: mixed;
    font-weight: bold;
    border: 1px solid #7a00ff;
    border-right: none;
    border-radius: 8px 0 0 8px;
}

/* --- WhatsApp Float (image_39349b.jpg) --- */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 99;
}

@media (max-width: 768px) {
    .sticky-side-tab { display: none; } /* Hide side tab on mobile to avoid clutter */
}



/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    background-color: #000;
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 15px;
    background: #000;
    border-bottom: 1px solid #333;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 1px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
}

.gold-text { color: #fbb03b !important; }

.search-bar {
    background: #111;
    border: 1px solid #444;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    margin-left: 10px;
    outline: none;
}

.btn-login {
    background: transparent;
    border: 1px solid #fff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-join {
    background: #ff823b;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    
    display: flex;
  
    overflow: hidden;
	border-bottom: 1px solid #333;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-top: 50px;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #ccc;
    max-width: 450px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary { background: #ff823b; border: none; color: #fff; }
.btn-secondary { background: transparent; border: 1px solid #fff; color: #fff; }

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This creates the fade effect into black on the left */
    mask-image: linear-gradient(to right, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

.menu-toggle { display: none; font-size: 24px; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-links, .search-bar { display: none; }
    .menu-toggle { display: block; }
    .hero-content h1 { font-size: 50px; }
}

@media (max-width: 768px) {
    .hero { height: auto; padding:30px 20px; text-align: center; }
    .hero-container { flex-direction: column; padding: 0; }
    .hero-content { order: 2; padding: 30px 30px 80px;        }
    .hero-content p { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; flex-direction: column; }
    .hero-image { 
        position: relative; 
        width: 100%; 
        height: 300px; 
        order: 1;
        mask-image: none;
        -webkit-mask-image: none;
    }
}
/* Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #111;
    z-index: 1000;
    transition: 0.4s ease-in-out;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.mobile-sidebar.active {
    right: 0; /* Slide in */
	z-index: 99999;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-menu {
    font-size: 28px;
    cursor: pointer;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.sidebar-links li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
}

/* Background Overlay when menu is open */
.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 999;
}

.overlay-bg.show {
    display: block;
}

.page-container {
    position: relative;
    padding: 50px;
    width: 100%;
    max-width: 1300px;
}

/* --- Card Grid Layout --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding-right: 60px; /* Space for the vertical button */
}

/* --- Card Styling --- */
.course-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.card-image-container {
    width: 100%;
    height: 180px; /* Control image height */
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stretch to fill without distorting */
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1; /* Allow content to grow to align buttons */
}

.course-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #111;
}

/* --- Info Badges --- */
.info-badges-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.info-badge {
    background-color: var(--primary-pink-bg);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    flex: 1 1 30%; /* Try to make them fill space evenly */
}

.info-badge.highlight-pink {
    background-color: #FCE7F3; /* Slightly darker pink for highlight */
    color: var(--text-muted);
}

/* --- Detail Blocks --- */
.info-details-row {
    display: flex;
    gap: 10px;
}

.detail-block {
    background-color: var(--primary-pink-bg);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

.detail-block .detail-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.detail-block .detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Specific styling for price block to align it right if needed */
.price-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Reserve Button --- */
.reserve-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    margin-top: auto; /* Pushes button to bottom of content area */
    background: transparent;
    border: 1px solid var(--primary-purple);
    color: var(--primary-purple);
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

/* --- Vertical "Book a Demo" Button --- */
.vertical-book-demo {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #F0E6F7; /* Light purple background */
    border: 1px solid var(--primary-purple);
    border-right: none; /* Mimics edge alignment */
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 25px;
    border-radius: 8px 8px 0 0; /* Rounds corners before rotation */
    cursor: pointer;
    z-index: 100;
    font-family: var(--font-family);
}

.school-card img{width:60px;height:60px;}

.program-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tags span {
    background: #f0f0f0;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
}

.outline-btn {
    width: 100%;
    padding: 12px;
    border: 2px solid #8e2de2;
    background: transparent;
    color: #8e2de2;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.outline-btn:hover {
    background: #8e2de2;
    color: #fff;
}
.programs {
    padding: 80px 5%;
}

.container-dh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}


.row {
    display: flex;
    gap: 40px;
}

/* LEFT SIDE */

.left-content {
    flex: 2;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.quote-box {
    background: #f2eefc;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 60px;
    position: relative;
    color: #000;
}

.quote-box::before {
    content: "❝";
    font-size: 40px;
    color: #7a2ae0;
    position: absolute;
    left: 20px;
    top: 10px;
}

.section-block {
    margin-bottom: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
	text-align:left;
}
.section-block .section-title {Color:#000;}
.ssty {color:#fff !important;}
.section-title::before {
    content: "";
    width: 5px;
    height: 100%;
    background: #7a2ae0;
    position: absolute;
    left: 0;
    top: 0;
}

.section-block h3 {
    margin-bottom: 15px;
}

.section-block p {
    line-height: 1.7;
    color: #555;
}
.sk p {
    line-height: 1.7;
    color: #ffffff;
}

.highlight {
    background: #f2eefc;
    padding: 30px;
    border-radius: 15px;
}
.val{ background: transparent;
    padding: 0px;
    border-radius: 15px;
}
.highlight ul {
    margin-top: 15px;
    padding-left: 20px;
}

.highlight li {
    margin-bottom: 8px;
}

/* RIGHT SIDEBAR */

.sidebar {
    flex: 1;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.course-info {
    list-style: none;
    padding: 25px;
}

.course-info li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
	color: #000;
}

.course-info span {
    font-weight: 600;
}

.primary-btn {
    width: 90%;
    margin: 0 auto 25px auto;
    display: block;
    padding: 14px;
    background: #7a2ae0;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #5d18c7;
}

/* RESPONSIVE */

@media(max-width: 992px){
    .row {
        flex-direction: column;
    }
	.row {
 
    gap: 20px;
}
.contact-info {
    
    gap: 15px !important;
}
    .course-card { 
        position: relative;
        top: 0;
    }
	.contact-grid {

    padding-top: 0px !important;
 
}
}
.course-section .container{ padding-top:80px; padding-bottom:80px;}

/* 1. The Trigger Button (Matches image_d8ffc1.jpg) */
        .sticky-tab {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: #fdf2ff;
            color: #7a00ff;
            padding: 20px 10px;
            writing-mode: vertical-rl;
            border: 1px solid #7a00ff;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-weight: bold;
                z-index: 99999;
				    cursor: pointer;
        }

        /* 2. Modal Overlay - HIDDEN BY DEFAULT (Matches image_c8807c.png) */
        .modal-overlay {
            display: none; /* This is toggled by JS */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        /* 3. Modal Content Box */
        .modal-content {
            background: white;
            width: 90%;
            max-width: 550px;
            padding: 30px;
            border-radius: 15px;
            position: relative;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            font-family: sans-serif;
        }

        .close-btn {
            position: absolute;
            right: 15px;
            top: 15px;
            font-size: 28px;
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
        }

        /* 4. Form Styling (Matches image_c8807c.png) */
        .form-group {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }

        .form-group label { width: 40%; color: #555; font-size: 14px; }
        .form-group input, .form-group select {
            width: 60%;
            border: none;
            outline: none;
            font-size: 14px;
        }

        .submit-btn {
            background: linear-gradient(to right, #9c27b0, #03a9f4);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: bold;
            margin-top: 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }
		
		/* --- Accordion Styles --- */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-dark); /* Matches existing background */
}

.accordion {
   
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px 0px;
    background: transparent;
    border: none;
    color: var(--text-white); /* White text from variables */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition); /* Uses global 0.3s transition */
}

.accordion-header:hover {
    color: var(--primary-purple); /* Hover effect using brand purple */
}

.accordion-header i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-body {
    max-height: 200px; /* Adjust based on content */
    padding: 0 20px 20px 20px;
}

.accordion-body p {
    color: var(--text-muted); /* Muted gray text for descriptions */
    line-height: 1.6;
}

/* --- Horizontal Tabs Styles --- */
.tabs-section {
    padding: 100px 0;
    background: #7a2ae0;
}

.tabs-nav {
    display: flex;
    justify-content: left;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted); /* */
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition); /* */
}

.tab-btn:hover {
    color: var(--text-white);
}

.tab-btn.active {
    color: var(--primary-purple); /* */
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-purple);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tab-text p {
    color: var(--text-muted);
    line-height: 1.6;
}

.tab-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tab-grid { grid-template-columns: 1fr; text-align: center; }
    .tabs-nav { gap: 20px; }
}





/* --- Footer Styles --- */
.main-footer {
    background-color: #05090e;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-purple);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
	margin-bottom: 30px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.mobile-only { display: none; }

/* --- Mobile Footer Accordion --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-col {
        text-align: center;
        margin-bottom: 0px;
    }

    .social-links { justify-content: center; }

    .footer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        cursor: pointer;
    }

    .mobile-only {
        display: block;
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }

    .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    /* Active State */
    .accordion-col.active .footer-links {
        max-height: 300px;
        padding: 15px 0;
    }

    .accordion-col.active .mobile-only {
        transform: rotate(180deg);
    }
}
.logo {

    color: #fff;
}
.footer-col p{Color:#fff;}
.faq-section {
    border-bottom: 1px solid #3b3b3b;
    border-top: 1px solid #3b3b3b;
}

/* --- Timeline Styles --- */
.timeline-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* The central line */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* Alternate Left/Right */
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

/* The connecting dots */
.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--primary-purple);
    border: 3px solid var(--bg-dark);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-date {
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.timeline-content {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Mobile View for Timeline */
@media screen and (max-width: 768px) {
    .timeline::after { left: 31px; }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) { left: 0; }
    
    .timeline-dot {
        left: 23px !important;
        right: auto;
    }
}

/* --- Contact Page Styles --- */
.contact-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(106, 86, 240, 0.1), transparent);
}

.contact-hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.contact-hero p { color: var(--text-muted); font-size: 1.2rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding-top: 80px;
	padding-bottom: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    background: rgba(106, 86, 240, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.info-card h3 { margin-bottom: 5px; }
.info-card p { color: var(--text-muted); }

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #161b22;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--primary-purple);
    background: #1c2128;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
	.form-row label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 18px !important;
}
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-hero h1 { font-size: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
	.form-row {
    margin-bottom: -17px !important;
}
}

.cta-button {padding:15px;}
/* --- Fixed Mobile Footer Menu --- */
.mobile-fixed-footer {position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ff823b;
    /* background: linear-gradient(90deg, #4b1fb0 0%, #ff823b 100%); */
    display: none;
    grid-template-columns: repeat(5, 1fr);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    gap: 5px;
    transition: var(--transition);
}

.mobile-footer-item i {
    font-size: 1.2rem;
}

.mobile-footer-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

.mobile-footer-item:hover, 
.mobile-footer-item.active {
    color: var(--primary-purple);
}

/* --- Show only on Mobile/Tablet --- */
@media (max-width: 768px) {
    .mobile-fixed-footer {
        display: grid;
    }
    
    /* Add padding to body so content isn't hidden behind the footer */
    body {
        padding-bottom: 70px;
    }
    
    /* Hide the floating WhatsApp button if it overlaps */
    .whatsapp-float {
        bottom: 80px; /* Moves it above the new footer */
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 0px 0px;
        text-align: center;
    }
}
/* --- Mega Menu Desktop Styles --- */
.mega-menu-parent {
    position: static; /* Required for full-width dropdown */
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f172a; /* Slightly lighter than bg-dark */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--primary-purple);
    padding: 40px 0;
    display: none; /* Hidden by default */
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mega-menu-parent:hover .mega-menu-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-column h3 {
    font-size: 0.9rem;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 12px;
}

.mega-column ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.mega-column ul li a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

/* Featured Banner inside Mega Menu */
.mega-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(106, 86, 240, 0.2);
}

.mega-banner span {
    font-size: 0.7rem;
    background: var(--primary-purple);
    padding: 3px 8px;
    border-radius: 4px;
}

.mega-banner h4 { margin: 15px 0 10px; }
.mega-banner p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; }

.btn-small {
    font-size: 0.8rem;
    color: var(--primary-purple);
    font-weight: 700;
    text-decoration: none;
}

/* --- Keep Responsive Menu Same --- */
@media (max-width: 992px) {
    .mega-menu-content {
        display: none !important; /* Forces mega menu to never show on mobile */
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- Mentors Grid Styles --- */
.mentors-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-subtitle {
    text-align: left;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
 
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mentor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.mentor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    background: rgba(106, 86, 240, 0.05);
}

.mentor-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mentor-card:hover .mentor-image img {
    transform: scale(1.1);
}

.mentor-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: bottom 0.3s ease;
}

.mentor-card:hover .mentor-socials {
    bottom: 0;
}

.mentor-socials a {
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.mentor-socials a:hover {
    color: var(--primary-purple);
}

.mentor-info {
    padding: 25px;
    text-align: center;
}

.mentor-info h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.mentor-role {
    display: block;
    color: var(--primary-purple);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.mentor-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .mentors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .mentors-grid { grid-template-columns: 1fr; }
    .mentor-image { height: 350px; }
}

/* --- Updated Mentors Responsive Grid --- */

@media (max-width: 1024px) {
    .mentors-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; /* Slightly smaller gap for tablet */
    }
}

@media (max-width: 600px) {
    .mentors-grid { 
        grid-template-columns: repeat(2, 1fr); /* 2 items in a row on mobile */
        gap: 15px; /* Tighter gap for small screens */
    }

    .mentor-image { 
        height: 200px; /* Reduced height so two cards fit better vertically */
    }

    .mentor-info {
        padding: 15px; /* Less padding to save space */
    }

    .mentor-info h3 {
        font-size: 1rem; /* Smaller titles for 2-column mobile view */
    }

    .mentor-role {
        font-size: 0.75rem;
    }

    .mentor-info p {
        display: none; /* Optional: Hide description on mobile to keep cards clean */
    }
}

/* --- Curriculum Block Styles --- */
.curriculum-how-it-works {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.curriculum-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.eyebrow-purple {
    color: var(--primary-purple);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-purple);
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

.heading-l {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.paragraph-content {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.curriculum-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.curriculum-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    background: rgba(106, 86, 240, 0.05);
}

.card-icon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.card-icon-header img:first-child {
    width: 60px;
    height: auto;
}

.expand-icon {
    width: 32px;
    opacity: 0.5;
}

.curriculum-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.curriculum-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Adjustments */


/* --- CREATE Framework Styles --- */
.create-framework { padding: 80px 0; background: rgb(250, 216, 94); }
.framework-header { text-align: center; margin-bottom: 50px; }
.charge-heading { font-size: 2.5rem; margin-bottom: 15px; color: var(--text-white); }

.tabs-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-link {
    width: 60px;
    height: 60px;
    
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.tab-link.active, .tab-link:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(106, 86, 240, 0.4);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.5s ease; }

.framework-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.gradient-text {
    background: linear-gradient(90deg, #6a56f0, #ff60b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    margin-bottom: 20px;
}

.course-accordion {
    margin-top: 30px;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-trigger {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.accordion-trigger img { width: 35px; }
.accordion-trigger i { margin-left: auto; transition: 0.3s; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: 0.3s ease;
    color: var(--text-muted);
}

.course-accordion.active .accordion-content {
    max-height: 200px;
    padding: 20px;
}

.course-accordion.active i { transform: rotate(180deg); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- Curriculum Principles Block --- */
.curriculum-principles {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.curriculum-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.color-purple-b {
    color: var(--primary-purple);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Desktop: 5 columns */
    gap: 30px;
}

.principle-card {
    text-align: left;
    transition: var(--transition);
}

.principle-card img {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
    object-fit: contain;
}

.principle-card h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-white);
    min-height: 2.8rem; /* Keeps titles aligned */
    display: flex;
    align-items: center;
}

.principle-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* --- Responsive View --- */
@media (max-width: 1200px) {
    .principles-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet: 3 columns */
    }
}

@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobile: 2 items per row */
        gap: 20px;
    }
    
    .principle-card h5 {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .principle-card p {
        font-size: 0.8rem;
    }
}

.heading-46 {font-size: 60px;
    line-height: 120%;
    display: block;}
	.underline-small.purple {
    border-style: none none solid;
    border-width: 1px 1px 5px;
    border-color: black black var(--ai-purple);
    color: #eee;
    letter-spacing: -.03em;
    flex: 0 auto;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: .1;
}

.charge-heading {
      color: #eee;
    text-align: center;
    justify-content: center;
    align-items: center;
    /* width: auto; */
    margin-bottom: 32px;
    padding-left: 0;
    padding-right: 60px;
    font-size: 63px;
    line-height: 120%;
    display: block;
    max-width: 800px;
    margin: 0 auto;
}
.paragraph-9 {color: #dedede;
    text-align: center;
    -webkit-text-stroke-color: #9ba1a6;
    max-width: 800px;
    margin-top: 0;
    margin-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;}
	
	.principle-card {
    text-align: left;
    transition: var(--transition);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    /* background-color: var(--black-700); */
    border-radius: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 12px 16px;
    display: flex;
    /* background-color: var(--black-700); */
    background: #181d2a;
}

@media (max-width: 992px) {
    .curriculum-grid {
        grid-template-columns: 1fr; /* Stack vertically on tablet/mobile */
    }
    
    .heading-l {
        font-size: 2rem;
    }
	
	.paragraph-9 {
   
    text-align: left;
   

}

.charge-heading {
    color: #eee;
    text-align: left;
    justify-content: center;
    align-items: center;

    padding-right: 60px;
    font-size: 34px;
 
}
.heading-46 {
    font-size: 35px;
  

    text-align: left;
}
}


/* --- Dynamic Hero Banner --- */
.hero-banner-dynamic {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(106, 86, 240, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

.hero-flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text-col { flex: 1.2; min-width: 300px; }
.hero-image-col { flex: 0.8; min-width: 300px; position: relative; }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.banner-gallery .thumbnail img {
    width: 100%;
    max-width: 470px;
    height: auto;
    border-radius: 30px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

/* Floating Animation */
.floating-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-flex-row { flex-direction: column; text-align: center; }
    .hero-description { margin: 0 auto 40px; }
    .hero-image-col { order: -1; } /* Image first on mobile */
}



/* --- Modal Styling --- */
.custom-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.custom-modal.active { display: flex; }

.modal-content {
    background: #111827;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.close-modal {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Form Styles */
.form-row { margin-bottom: 20px; }
.form-row label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }

.form-row input, .form-row select {
    width: 100%;
    padding: 12px;
  
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
       color: #000000;
    font-size: 1rem;
	margin-bottom:10px;
}

.phone-input-container { display: flex; gap: 10px; }
.country-code { 
    background: rgba(255, 255, 255, 0.1); 
    padding: 12px; 
    border-radius: 10px; 
    font-weight: bold; 
}

.hidden-field { display: none; }
.w-100 { width: 100%; margin-top: 10px; cursor: pointer; }

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.program-type {
    color: #007bff;
    font-size: 20px;
}
.tab-btn.active {
    color: #000000;
}
.tab-btn.active::after {
  
    background: #000000;
}

/* --- Franchise Timeline Section --- */
.curriculum {
    padding: 80px 0;
    background-color: #0b1118;
}

.container-10.center {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.heading-m {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.color-purple-b { color: #A125C2; }
.color-pink { color: #ee4a62; font-weight: 800; }

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns on desktop */
    gap: 20px;
}

.support-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.support-feature:hover {
    transform: translateY(-5px);
    background: rgba(161, 37, 194, 0.1);
    border-color: #A125C2;
    box-shadow: 0 10px 30px rgba(161, 37, 194, 0.2);
}

.support-feature.selected {
    border-color: #ee4a62;
    background: rgba(238, 74, 98, 0.05);
}

.text-block-101 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.franchise-timeline-title {
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .timeline-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .timeline-steps { grid-template-columns: repeat(2, 1fr); }
    .heading-m { font-size: 1.8rem; }
}


/* Typography & Colors */
.text-blue { color: #5B8DEF; }
.eyebrow { 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 14px; 
    color: #888; 
}

.we-are-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.heading-who-we-are {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Team Avatar Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.image-48 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-48:hover {
    transform: scale(1.1);
    border-color: #5B8DEF;
}

/* Utilities */
.bg-black { background-color: #000; color: #fff;padding:80px; }
.center { text-align: center; }
.mt-100 { margin-top: 100px; }
.mb-100 { margin-bottom: 100px; }
.heading-who-we-are {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 36px;
}
/* Job Section Styling */
.heading-jobs {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.job-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.job-card {
    padding: 20px 0;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateX(10px);
}

.job-link {
    text-decoration: none;
    display: block;
}

.heading-41 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.text-block-79 {
    font-size: 1rem;
    color: #888; /* Dimmer text for job type */
}

/* Responsive Grid */
@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .heading-jobs {
        font-size: 2rem;
    }
}
.job-card {
    padding: 20px 20px;
    transition: transform 0.3s ease;
    border: 1px solid #0fff;
}
#job-openings .wrapper{padding:60px 15px;}

.heading-jobs {
   
    margin-bottom: 40px;
}

#job-openings .wrapper {
        padding: 100px 15px;
    border-top: 1px solid #373737;
}

/* Gallery Container */
.galleries-wrapper {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
}

/* 4-Column Grid */
.galleries-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; /* Minimal spacing between photos */
    margin-bottom: 60px;
}

/* Gallery Item & Image */
.galleries-item {
    overflow: hidden;
    border-radius: 4px; /* Subtle rounding as seen in images */
}

.image-56 {
    width: 100%;
    height: 250px; /* Fixed height for uniform grid rows */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-56:hover {
    transform: scale(1.05); /* Interactive zoom effect */
}

/* Typography */
.h1-gallery {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.bg-black {
    background-color: #000;
    color: #fff;
    padding: 15px;
}
    .galleries-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 479px) {
    .galleries-list {
        grid-template-columns: 1fr; /* Stacked for mobile */
    }
    .h1-gallery {
        font-size: 2rem;
    }
}

/* Partner Section Background */
.gradient-cool {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0;
}

.heading-xs {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Loop Animation */
.loop-outer-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee {
    display: inline-flex;
    animation: scroll 40s linear infinite;
}

.logos-div {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.uni-logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(200%); /* Keeps branding subtle */
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.uni-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .uni-logo { height: 35px; }
    .logos-div { gap: 30px; }
}

.heading-xs {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 26px;
    opacity: 0.7;
    padding: 10px;
    margin-bottom: 40px;
}

.gradient-cool {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 40px 0;
}

/* Section & Typography */
.bg-black { background-color: #0a0a0a; color: #fff; }
.heading-l { font-size: 2.5rem; font-weight: 700; margin-top: 10px; }
.underline-small.purple { border-bottom: 2px solid #a855f7; padding-bottom: 4px; color: #a855f7; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; }

/* Grid Layout */
.course-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 0;
}

/* Card Styling */
.course-card {
    background: #161b22;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.course-card:hover {
    background: #1c2128;
    transform: translateY(-5px);
    border-color: #a855f7;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-label {
    font-size: 0.85rem;
    color: #8b949e;
    margin-bottom: 8px;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.course-icon {
    width: 60px;
    height: 60px;
}

/* Responsive */
@media (max-width: 991px) {
    .course-list-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 479px) {
    .course-list-grid { grid-template-columns: 1fr; }
    .heading-l { font-size: 1.8rem; }
}

/* Hero Layout */
.hero-section {
    padding: 100px 5%;
    background-color: #f0f7ff; /* Soft light blue background */
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-content {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

.hero-image-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

/* Typography & Colors */
.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.text-purple {
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Button Styling */
.btn-get-started {
    display: inline-block;
    padding: 16px 32px;
    background-color: #a855f7;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-get-started:hover {
    background-color: #9333ea;
    transform: translateY(-2px);
}

/* Image Assets */
.hero-main-img {
    width: 100%;
    max-width: 450px;
    z-index: 2;
    position: relative;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-text-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    .hero-heading { font-size: 2.5rem; }
    .hero-image-wrap { justify-content: center; }
}

.raised_by .option {color:#000 !important;}

.w-100 {
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
    margin-top: 23px;
    cursor: pointer;
    background: #ff823b;
    color: #fff;
}

@media (max-width: 1024px) {
    .hero-content h1 {
    
        text-align: left;
    }
}
@media (max-width: 768px) {
	.sssssd {margin-bottom:25px;}
	.hero-flex {
    
    max-width: 100%;
  
}
    .hero-content p {
        
        text-align: left;
    }
	.programs-header {
  
    align-items: baseline !important;
   
    
}
.programs-header {

    padding-top: 0px;
}
.hero-section {
    padding: 100px 15px !important;
  
}
}
.modal-header {
  
    border-bottom: 1px solid #616161;
}
/* .close-modal { */
   
    padding-bottom: 6px;
    padding-top: -8px;
}


@media (max-width: 768px) {
    .about-col {
     
        text-align: left;
    }
	.hero-text-content {
      
        text-align: left;
    }
	    .trust-grid {
        ;
        text-align: left;
    }
	.grad-intro {
   
    text-align: left;
}
    .social-links {
        justify-content: left;
    }
}


.w-100 {
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
    margin-top: 23px;
    cursor: pointer;
    background: #ff823b !important;
    color: #fff;
}
.cta-button {background: #ff823b !important;padding:15px !important;}

.hysf {padding:12px !important;  height: 50px !important;}

.form-row input, .form-row select {

    height: 50px !important;
}


.sssssd {margin-bottom:25px;}

.or {background: #ff823b !important;;}
.bl {background:#792abe !important; }
.timeline-content p {
    color: #ffffff;
 
}

.cta-button {
    background: #ff823b !important;
    padding: 15px 20px !important;
    color: #fff;
    text-decoration: none;
    border-radius: 43px;
}

.curriculum-how-it-works {

    border-top: 1px solid #565656;
}

.gradient-cool {
   
    border-top: 1px solid #4b4b4b;
}

.auth-container {
    display: flex;
    min-height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Left Promo Side */
.auth-promo {
    flex: 1;
    background: #02042b; /* Dark Navy */
    color: white;
    padding: 60px;
    display: flex;
    align-items: center;
}

.auth-promo .highlight { color: #3395ff; }

.trust-points {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.trust-points li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Right Form Side */
.auth-form-wrapper {
    flex: 1;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-form-card {
    max-width: 400px;
    width: 100%;
}

.input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
}

.btn-continue {
    width: 100%;
    background: #3395ff;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .auth-promo { display: none; } /* Hide promo on mobile */
    .auth-container { flex-direction: column; }
	
	.dderr {    font-size: 36px;
    letter-spacing: -2px;}
	.ddrtyyy p{text-align:left;}
	.ddrtyyy h3{text-align:left;}
}

.dderr.active {
    color: #f9ff00;
}

.dderr.active::after {
    background: #f9ff00;
}
.dderr {

    color: #ffffff;

}

.section-titlesw {
   
    margin-left: -15px;
}


	.dderr {    font-size: 36px;
    letter-spacing: -2px;}
	
	.ddrtyyy  p {
    color: #fff;
	}
	
	
	.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}


.card-footer{display:none;}
.rating {display:none;}



.card-body h3 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 15px;
    margin-top: 44px !important;
}
.program-type {display:none;}

.programs-titleddd {
    
    color: #000;
    margin-bottom: 10px;
}
.school-card img {
    width: 38px;
    height: 38px;
}


.charge-heading {
    color: #000000;
}
.paragraph-9 {
    color: #000000;
}
.tab-link {
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    background: rgba(255, 255, 255, 0.05);
    color: #000;
  
}
.charge-content {Color:#000;}
.course-accordion.active .accordion-content {
    
    color: #000;
}
.accordion-trigger span{Color:#000;}
.accordion-trigger {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid #000;
}
.course-accordion {
   
    background: #fff;
  
}
.tab-link {
  
    color: #ffffff;
}
.gradient-text {
    background: linear-gradient(90deg, #000, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    margin-bottom: 20px;
}

.SSSE {background:#000;}

.seeee .section-title {
   
    font-size: 2.5rem;
}
.mentor-info p {
  
    display: none;
}
.ses {color:red;}

@media (max-width: 768px) {
    .about-col {
        text-align: left;
        margin-bottom: 0px;
    }
}
@media (max-width: 768px) {
    .social-links {
        justify-content: left;
    }
}

.metric-card {
    flex: 1;
    min-width: 250px;
    border: 2px dashed #000;
    padding: 20px;
    border-radius: 12px;
}
.final-block {
    padding: 100px 0;
    background: #0a0e14;
    background: rgb(250, 216, 94);
    color: #fff;
}
.metric-card .val {
    font-size: 28px;
    font-weight: 700;
    margin: 8px 0;
    color: #000;
}
.metric-card .sub {
    font-size: 0.85rem;
    color: #b0b3b8;
    font-size: 28px;
    font-weight: 700;
    margin: 8px 0;
    color: #000;
}
.metric-card .label {
    font-size: 21px;
    color: #000000;
    display: block;
}
.metric-card .arrow {
    float: right;
    color: #000000;
}

.grad-testimonials {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
    background: rgb(202, 231, 243);

}
.fa-chevron-down:before {
    color:#000;
}

.dffeee .hero-content {
        order: 2;
        padding: 30px 30px 80px;
        color: #000;
    }
	 .dffeee .hero-content p {
        text-align: left;
        color: #000;
    }
}
@media (max-width: 768px) {
    .dffeee .hero-content {
        order: 2;
        padding: 30px 30px 80px;
        color: #000;
    }
}
@media (max-width: 768px) {
    .dffeee .hero-content p {
        text-align: left;
        color: #000;
    }
	
	.blog-featured-image {
   
    border-radius: 0;
}
.blog-featured-image img {
   
    
}
.blog-featured-image img {
   
    height: auto !important;
   object-fit: contain !important;
}
}

.grad-quote {
   
   
    display: none;
}

/* Blog Detail Specifics */
.blog-detail-container {
    padding-top: 120px;
    background: #fff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: 3rem;
    margin: 20px 0;
    color: var(--bg-dark);
}

.blog-featured-image {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
}
.blog-featured-image {
   
    border-radius: 0;
  
}

.blog-featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.blog-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.4rem !important;
    font-weight: 500;
    color: var(--bg-dark) !important;
}

.blog-cta {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid #eee;
}

.blog-detail-container {
    padding-top: 80px;
    background: #fff;
    padding-bottom: 80px;
}

.syllabus-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.syllabus-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.syllabus-tab-btn {
    padding: 12px 30px;
    border: 2px solid #eee;
    background: white;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.syllabus-tab-btn.active {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.syllabus-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
}

.syllabus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 86, 240, 0.1);
}

.module-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f0f0f0;
    position: absolute;
    top: 20px;
    right: 30px;
}

.syllabus-card h3 {
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.syllabus-card ul {
    list-style: none;
    margin-top: 20px;
}

.syllabus-card li {
    padding: 5px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.syllabus-card li::before {
    content: "→";
    color: var(--primary-purple);
    margin-right: 10px;
}

/* Syllabus Block Styling */
.syllabus-block {
    padding: 100px 0;
    background-color: #ffffff;
}

.syllabus-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.syllabus-card {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.syllabus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: var(--primary-purple);
    filter: blur(60px);
    opacity: 0.15;
}

.level-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f3f0ff;
    color: var(--primary-purple);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.syllabus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.syllabus-topics {
    list-style: none;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f5f5f5;
}

.syllabus-topics li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.syllabus-topics i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

/* Comparison Section Styles */
.comparison-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-table-wrapper {
    overflow-x: auto; /* For Mobile responsiveness */
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
    padding: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.comparison-table th, 
.comparison-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    font-size: 1.1rem;
    color: var(--bg-dark);
    font-weight: 700;
}

/* Microstack Highlight Column */
.highlight-col {
    background: rgba(106, 86, 240, 0.03);
    text-align: center;
    color: var(--primary-purple);
    font-weight: 600;
    position: relative;
}

.comparison-table tr:first-child th.highlight-col {
    border-radius: 15px 15px 0 0;
    background: var(--primary-purple);
    color: white;
}

.comparison-table tr:last-child td.highlight-col {
    border-radius: 0 0 15px 15px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .comparison-table th, .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
	.display-title {
    font-size: 41px !important;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
    color: #000;
    text-align: left;
}
.section-header.center {
    text-align: left;
    margin-bottom: 60px;
}
}
.comparison-table tbody{color:#000;}
    .comparison-table th, .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
        text-align: left;
    }
	.display-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
    color: #000;
}
.accordion-info-block {background:#fff;}
.accordion-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    
	background:#fff;
}


.accordion-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bg-dark);
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--primary-purple);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-body p {
    padding-top: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Active State */
.accordion-item.active .accordion-header h3 {
    color: var(--primary-purple);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
    max-height: 200px; /* Adjust based on content */
}

/* Right Image Styling */
.image-wrapper {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .accordion-grid { grid-template-columns: 1fr; gap: 40px; }
	
}
.quote-section {
    background-color: #f9fafb;
    
    overflow: hidden;
}
.accordion-body p {
 
    color: #000;
}
.accordion-item {
    border-bottom: 1px solid #0e0000;
    padding: 0px 0;
}

.accordion-info-block {
 
    padding-bottom: 80px;
}
.ssssb .image-wrapper {
   
   box-shadow:none !important;
}
.ssssb .accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 1px 20px 0px;
}

/* Quote Section Styling */
.quote-section {
    background-color: #f9fafb; /* Light neutral background */
    padding: 100px 0;
    overflow: hidden;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Text Side */
.quote-icon {
    font-size: 80px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-purple);
    line-height: 1;
    opacity: 0.2;
    margin-bottom: -40px;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--bg-dark);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
	text-align: left;
}
.quote-section .image-bg-accent{background:transparent;}
.quote-section .portrait-img {

   box-shadow:none;
}
.quote-author {
	text-align: left;
    font-size: 1.1rem;
    color: var(--text-muted);
    border-left: 3px solid var(--primary-purple);
    padding-left: 20px;
}

/* Image Side with Two-Layer Effect */
.quote-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.portrait-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

/* This creates the "second image" / background decorative box effect */
.image-bg-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-purple); /* Or use your green accent */
    top: -20px;
    right: -20px;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.1;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .quote-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .quote-author {
        border-left: none;
        padding-left: 0;
    }
    
    .image-stack {
        margin: 40px auto 0;
    }
}
.quote-author {
  
    color: #000000;
	text-align: left;
   
}

.main-footer {
    background-color: #05090e;
    padding: 80px 0 0;
    border-top: 1px solid #565656;
}
.ssssd1{
    text-decoration: none;
    color: #fff;
	}
	
	.ssssd1 i{padding-right:7px;}
	
	.program-card {
    width: 25%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}
.course-info span {
    font-weight: 600;
    color: #fff;
}
.course-info li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    color: #ffffff;
}


.blog-detail-container {
 
    display: none;
}
.syllabus-block {
  
    display: none;
}
.comparison-section {
  
    display: none;
}
.dasdasadsdas .accordion-info-block {
   display: none;
}
.dasdasadsdas .accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 20px 17px 0px;
}
.dasdasadsdas .accordion-body p {
    color: #ffffff;
}
.dasdasadsdas .accordion-header {

    font-size: 27px;
  
}
.dasdasadsdas .accordion-item {
    border-bottom: 1px solid #ffffff;
    padding: 0px 0;
}
.dasdasadsdas .fa-chevron-down:before {
    color: #fff !important;
}

/* Tags Section Styling */
.tags-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.tags-grid {
    display: grid;
    /* 6 columns on desktop, 3 on tablet, 2 on mobile */
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.tag-btn {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    background: transparent;
    color: var(--bg-dark);
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.tag-btn:hover {
    background-color: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 86, 240, 0.15);
}

/* Tablet View */
@media (max-width: 1024px) {
    .tags-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile View */
@media (max-width: 640px) {
    .tags-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tag-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Unoriginal Hero Section */
.unoriginal-hero {
    padding: 100px 0;
    text-align: center;
    background-color: #f9fafb; /* Light grey background */
}

.unoriginal-content {
    max-width: 800px;
    color: #000;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid #000; */
}

.unoriginal-logo {
    margin-bottom: 15px;
    width: 100%;
}

.logo-text {
    font-size: 5rem;
    font-weight: 900;
    color: var(--bg-dark);
    letter-spacing: -4px;
    font-size: 56px !important;
}

.hero-description {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 20px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn-search {
    background-color: var(--bg-dark);
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--bg-dark);
}

.btn-search:hover {
    background-color: transparent;
    color: var(--bg-dark);
}

.btn-upload {
    background-color: transparent;
    color: var(--bg-dark);
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--bg-dark);
    cursor: pointer;
    transition: var(--transition);
}

.btn-upload:hover {
    background-color: var(--bg-dark);
    color: white;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
	.juio .section-title {
    font-size: 52px;
    color: #000;
    line-height: 47px;
    padding-bottom: 17px;
    margin-bottom: 38px;
    display: block;
}
	.juio  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 0px;
    }
    .btn-search, .btn-upload { width: 100%; }
	
	.hero-description {

    padding: 0 0px;
    text-align: left;
}
.logo-text {
        font-size: 57px;
    }
	.hero-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.logo-text {
 
    text-align: left;
}
}

.unoriginal-hero {
    padding: 100px 0;
    text-align: center;
    background-color: #fee600;
}
.think{color: transparent;
  -webkit-text-stroke: 2px black;    display: block;}
  
  .logo-text {
   
    letter-spacing: -4px;
    font-size: 90px !important;
    line-height: 68px;
}
.pg-student {background: rgb(250, 216, 94);}
.drettt {color:#000 !important;}
.SASASEW{color:#000 !important;}
.pg-student .btn-outline-blue {
    border: 1px solid #000000 !important;
 
}
.pg-student .program-type {
    color: #000000;
    font-size: 13px;
    padding-bottom: 40px;
}
.pg-student .program-type {
    display: block;
}
.pg-student .programs-header h2 {
    font-size: 59px;
    font-weight: 700;
   letter-spacing: -4px;
}
.thinks {
    color: transparent;
    -webkit-text-stroke: 2px black;
  
}
.pg-student .eyebrow {
    text-transform: none;
    letter-spacing: 0px;
    font-size: 21px;
    color: #0c0000;
    border-bottom: 1px solid #000;
    font-weight: 500;
}

.juio .activity-info {
    padding: 25px 20px;
    background: #fff;
}
.juio .activity-info h3 {
    color: #000000;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.juio .activity-info p{color: #000000;}
.juio .activity-num {
 
    color: #000;
   
}
.juio .activity-card {
    background: #ffffff;
    border: 1px solid #aeaeae;
}
.juio  .activities-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
    background: rgb(255 255 255);
}
.juio .section-title {
    font-size: 52px;
 
    color: #000;
}
.juio{
    background-color: #fff !important;
    
}
.tags-section {
    padding: 80px 0;
    background-color: #ffffff;
    background-color: #fee600;
    border-bottom: 1px solid #858585;
}
    .tag-btn {
     
   
        border: 2px dotted #000;
    }
.video-slider-section { padding: 80px 0; background: #fff; }

.video-slider-wrapper { position: relative; display: flex; align-items: center; padding: 0 50px; }

.video-slider-container { overflow: hidden; width: 100%; }

.video-slider-track { display: flex; gap: 20px; transition: transform 0.5s ease; }

.video-card { min-width: calc(33.333% - 14px); cursor: pointer; }

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }

.play-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 40px; transition: 0.3s;
}

.video-card:hover img { transform: scale(1.05); }
.video-card:hover .play-overlay { background: rgba(106, 86, 240, 0.6); }

/* Modal Styles */
.video-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 9999;
    display: none; align-items: center; justify-content: center;
}

.modal-content { width: 80%; max-width: 900px; aspect-ratio: 16/9; }

.video-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd;
    background: #fff; cursor: pointer; z-index: 10;
}
.video-arrow.prev { left: 0; }
.video-arrow.next { right: 0; }

/* Update these in your style.css */
.video-card {
    /* Ensure it takes full width on mobile, or 33% on desktop */
    min-width: calc(33.333% - 14px); 
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* This ensures the video maintains a 16:9 shape regardless of width */
    aspect-ratio: 16 / 9; 
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents image squishing */
}

/* Fix for Mobile (Responsive) */
@media (max-width: 768px) {
    .video-card {
        min-width: 100%; /* Shows 1 full video card at a time on phones */
    }
    
    .video-slider-wrapper {
        padding: 0 10px; /* Reduces side padding on small screens */
    }
}
.sadsa1{background-color: #000;}


	.sadsa2::before {
    content: "";
    width: 5px;
    height: 100%;
    background: #ffffff !important;
    position: absolute;
    left: 0;
    top: 0;
}

.sadsa1 .section-title {
    font-size: 55px;
  
}
.sadsa1 .accordion-header:hover {
    color: #ffffff;
}
.hsusbs {color:#ff8037;}
.sseee {text-decoration:none; Color:#fff;}

.eyebrow-purple {
    color: #000000;
   
    letter-spacing: 1px;
    border-bottom: 2px solid #000000;
    
}
.section-title::before {
    content: "";

    background: #000000;
   
}
.gallery-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 40px;
}

.gallery-container {
    overflow: hidden;
    border-radius: 20px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-card {
    min-width: calc(33.333% - 14px); /* 3 items per view */
    border-radius: 15px;
    overflow: hidden;
}

.img-zoom-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.img-zoom-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hover-icon {
    position: absolute;
    inset: 0;
    background: rgba(106, 86, 240, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-card:hover img { transform: scale(1.1); }
.gallery-card:hover .hover-icon { opacity: 1; }

/* Arrows */
.gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: 0.3s;
}

.gal-arrow:hover { background: var(--primary-purple); color: white; }
.gal-arrow.prev { left: 0; }
.gal-arrow.next { right: 0; }

@media (max-width: 992px) { .gallery-card { min-width: calc(50% - 10px); } 
.form-row input, .form-row select {
    width: 100% !important;
   
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

}
@media (max-width: 600px) { .gallery-card { min-width: 100%; } .gallery-wrapper { padding: 0 45px; } }


.form-row input, .form-row select {
    width: 96%;
   
}
.info-card {
   
    border: 1px solid #fff;
}
.info-card i {
   
    color: #ffffff;
    background: none !important;
 
   
}


.business-content-grid {
    display: grid;
    grid-template-columns: 350px 1fr; /* Fixed left width, flexible right */
    gap: 40px;
    align-items: start;
}

/* Left Thumbnails */
.thumb-list { list-style: none; }
.thumb-list li { margin-bottom: 15px; }

.thumb-box {
    position: relative;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.thumb-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.thumb-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thumb-list li.active .thumb-box { border: 2px solid var(--primary-purple); }

/* Right Preview */
.main-preview-img {
    position: relative;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
}

.main-preview-img img { width: 100%; height: 100%; object-fit: cover; }

.expand-indicator {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(106, 86, 240, 0.9);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: 0.3s;
}

.main-preview-link:hover .expand-indicator { opacity: 1; }

/* Links Section */
.display-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 30px;
}

.sector-links { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; max-width: 70%; }
.sector-links a { color: #333; text-decoration: none; font-weight: 500; }
.sector-links i { font-size: 10px; margin-left: 5px; }

.explore-btn {
    padding: 12px 30px;
    border: 1px solid #333;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}
.explore-btn:hover { background: #333; color: white; }

.value-creation {
    padding: 80px 0;
    background-color: #f9f9fb;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

/* Creating the Staggered Layout */
.value-card.card-long {
    min-height: 400px;
    margin-top: -20px; /* Pulls the middle cards up slightly */
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 86, 240, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes the button to the bottom */
}

/* Read More Link */
.read-more {
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .value-card.card-long { margin-top: 0; }
}

.eyebrow-purple {
    color: #ffffff;
    letter-spacing: 1px;
    border-bottom: 2px solid #ffffff;
}

.sidebar-footer a{color: #fff;
    text-decoration: none;}
	
	@media (max-width: 768px) {
    .btn-search, .btn-upload {
        width: 100%;
        font-size: 20px;
    }
}
 .btn-search, .btn-upload {
        width: 100%;
        font-size: 16px;
    }
	
	.main-footer .fa-chevron-down:before {
    color: #ffffff;
}

.tags-section .eyebrow-purple {
    color: #000000;
    letter-spacing: 1px;
    border-bottom: 2px solid #000000;
}
.video-slider-section {display:none;}