@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Core Brand Colors - Preserving user's original combination */
    --brand-primary: #6b63d4;
    --brand-primary-dark: #564dbd;
    --brand-primary-light: #8b7ce8;
    --brand-secondary: #52b244;
    --brand-secondary-dark: #3ea830;
    --brand-accent: #f59e0b;
    
    /* Neutral / UI Colors */
    --brand-text: #1a3320;
    --brand-text-light: #4b5563;
    --brand-muted: #6b7280;
    --brand-bg: #f4f2ff;
    --brand-bg-alt: #f0fdf4;
    --brand-white: #ffffff;
    --brand-border: #e2e8f0;
    
    /* Glassmorphism & Overlays */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(107, 99, 212, 0.1);
    
    /* Advanced Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(107, 99, 212, 0.1), 0 8px 10px -6px rgba(107, 99, 212, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(107, 99, 212, 0.15);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --trans-fast: all 0.2s ease;
    --trans-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    --grad-secondary: linear-gradient(135deg, var(--brand-secondary), var(--brand-secondary-dark));
    --grad-premium: linear-gradient(135deg, #6b63d4 0%, #52b244 100%);
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--brand-bg);
    color: var(--brand-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--brand-primary);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-text);
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-primary { color: var(--brand-primary); }
.text-secondary { color: var(--brand-secondary); }
.text-white { color: #fff; }
.text-muted { color: var(--brand-text-light); }

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.section-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--brand-text-light);
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.sub-section-title{font-size:2rem;font-weight:700;margin-bottom:20px;color:var(--brand-text);}
.sub-section-title span{background:var(--grad-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}

.text-muted{color:var(--brand-muted);}
.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.fs-11{font-size:1.05rem;}
.fw-600{font-weight:600;}
.central{text-align:center;}
.max-700{max-width:700px;margin-left:auto;margin-right:auto;}
.margin-top-40{margin-top:40px;}
.margin-bottom-15{margin-bottom:15px;}
.margin-bottom-25{margin-bottom:25px;}
.margin-bottom-40{margin-bottom:40px;}
.margin-left-10{margin-left:10px;}
.no-margin{gap:20px;}
.white-text{color:#fff!important;}
.white-text-opacity{color:rgba(255,255,255,0.85)!important;}
.light-text{color:rgba(255,255,255,0.9);line-height:1.8;}
.gold-text{color:var(--brand-primary);font-weight:600;}
.small-info{color:rgba(53, 53, 53, 0.8);font-size:0.95rem;}
.italic-text{font-style:italic;}
.full-width-btn{width:100%;}
.red-subtitle{color:var(--brand-secondary);font-size:0.9rem;font-weight:600;margin-bottom:10px;}
.border-white{border:3px solid rgba(255,255,255,0.3);}

.flex-center-gap-15{display:flex;align-items:center;gap:15px;flex-wrap:wrap;}

/* GRIDS */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:60px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}

/* ===== SECTION ALTERNATION ===== */
.dark-section{background:#fff;}
.alt-section{background:var(--brand-bg);}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--trans-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 10px 20px -10px rgba(107, 99, 212, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(107, 99, 212, 0.6);
    color: #fff;
}

.btn-secondary {
    background: var(--grad-secondary);
    color: #fff;
    box-shadow: 0 10px 20px -10px rgba(82, 178, 68, 0.5);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(82, 178, 68, 0.6);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: #fff;
}

.btn-large { padding: 18px 44px; font-size: 1.1rem; }
.btn-small { padding: 12px 28px; font-size: 0.95rem; border-radius: var(--radius-full); }

/* Grid System */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }



/* Advanced Cards */
.card {
    background: var(--brand-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(107, 99, 212, 0.05);
    transition: var(--trans-slow);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: var(--brand-primary-light);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--grad-primary);
    transition: var(--trans-base);
}

.card:hover::before {
    height: 100%;
}

/* Top Bar */
/* Top Bar - Dark Theme */
.top-bar {
    background: #0f172a;
    padding: 8px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--trans-base);
    font-weight: 500;
}

.top-info a:hover {
    color: var(--brand-primary-light);
}

.top-info i {
    color: var(--brand-primary-light);
    font-size: 0.85rem;
}

.top-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-social a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    transition: var(--trans-base);
}

.top-social a:hover {
    color: var(--brand-primary-light);
    transform: translateY(-2px);
}

/* Header Navigation */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--trans-base);
}

.header.scrolled {
    padding: 10px 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-main-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    width: 180px;

    display: block;
}

.nav-center-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links-list {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links-list a {
    font-weight: 600;
    font-size: 0.88rem;
    color: #333;
    position: relative;
    padding: 10px 0;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: var(--trans-base);
    transform: translateX(-50%);
}

.nav-links-list a:hover::after,
.nav-links-list a.active::after {
    width: 100%;
}

.nav-links-list a:hover,
.nav-links-list a.active {
    color: var(--brand-primary);
}

.nav-right-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--brand-primary);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(107, 99, 212, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(82, 178, 68, 0.05), transparent);
    position: relative;
    overflow: hidden;
}

.hero-content { max-width: 650px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: #fff;
    color: var(--brand-primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(107, 99, 212, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--brand-secondary);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 10px var(--brand-secondary);
    animation: pulse-green 2s infinite, float-soft 3s ease-in-out infinite;
}

@keyframes float-soft {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(82, 178, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(82, 178, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(82, 178, 68, 0); }
}

/* Background Bubbles */
.hero-bubble, .section-bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--grad-primary);
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    animation: bubble-float 15s infinite linear;
}

@keyframes bubble-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, 50px) rotate(120deg); }
    66% { transform: translate(-20px, 80px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.bubble-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-duration: 25s; }
.bubble-2 { width: 200px; height: 200px; bottom: 50px; left: -50px; background: var(--brand-secondary); animation-duration: 20s; animation-direction: reverse; }
.bubble-3 { width: 150px; height: 150px; top: 20%; left: 10%; opacity: 0.03; animation-duration: 30s; }

.bg-premium { 
    background: var(--grad-premium); 
    color: #fff; 
    position: relative; 
    overflow: hidden; 
}

.bg-premium .section-bubble {
    background: #fff;
    opacity: 0.1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--brand-text-light);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* Quick Links Section */
.quick-link-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--trans-base);
}

.quick-link-card:hover {
    background: var(--grad-primary);
    color: #fff;
}
.quick-link-card:hover h4 {
color: #fff;
}

.quick-link-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--brand-primary);
}

.quick-link-card:hover i {
    color: #fff;
}

/* Testimonials Slider - Owl Overrides */
.testimonial-track {
    display: block;
    padding: 20px 0 50px;
}

.owl-dots {
    margin-top: 30px !important;
    text-align: center;
}

.owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: rgba(107, 99, 212, 0.2) !important;
    transition: var(--trans-base) !important;
    border-radius: 50% !important;
}

.owl-dot.active span {
    width: 30px !important;
    background: var(--brand-primary) !important;
    border-radius: 10px !important;
}

.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-item {
    min-width: 380px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--trans-base);
}

.testimonial-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--trans-base);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(15deg);
    color: #fff;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--brand-primary);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--brand-primary);
    padding-left: 5px;
}





/* AOS Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--trans-slow);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* New components for missions/vision */
.mission-vision-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}
/* About Image Fix */
.about-img-fixed {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}



/* Alumni Card Images */
.alumni-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: block;
    transition: var(--trans-base);
}

.card:hover .alumni-img {
    transform: scale(1.05);
}

/* Certificate Cards */
.cert-card {
    padding: 20px!important;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-img-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--brand-border);
}

.cert-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa;
    transition: var(--trans-slow);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 99, 212, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--trans-base);
    backdrop-filter: blur(5px);
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-card:hover .cert-img {
    transform: scale(1.1);
}





/* --- Global Utility Classes --- */
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.pt-30 { padding-top: 30px; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-60 { gap: 60px; }
.align-center { align-items: center; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-800 { max-width: 800px; }
.max-700 { max-width: 700px; }

/* Background Utilities */
.bg-white { background: #fff; }
.bg-brand { background: var(--brand-bg); }
.bg-premium { background: var(--grad-premium); color: #fff; }

/* Component Styles */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-title { margin-bottom: 20px; }
.section-header p { max-width: 700px; margin: 0 auto; color: var(--brand-text-light); }

.grid-center { align-items: center; }

.full-rounded-img { border-radius: var(--radius-lg); width: 100%; height: auto; object-fit: cover; }
.shadow-premium { box-shadow: var(--shadow-premium); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.gallery-card { padding: 0; overflow: hidden; border-radius: var(--radius-lg); }
.gallery-img { width: 100%; height: 250px; object-fit: cover; transition: var(--trans-base); }
.gallery-img:hover { transform: scale(1.05); }
.gallery-img-lg { height: 300px; }

.quick-link-title { font-size: 1rem; margin-top: 10px; }

.contact-form-container { background: #fff; padding: 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--brand-text); }
.form-input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: var(--radius-sm); transition: var(--trans-base); }
.form-input:focus { border-color: var(--brand-primary); outline: none; }

.footer-bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.9rem; }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom span { color: var(--brand-primary-light); font-weight: 600; }

.icon-box { width: 70px; height: 70px; background: var(--brand-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 1.5rem; }
.icon-box i { color: var(--brand-primary); }
.icon-box.secondary i { color: var(--brand-secondary); }

.plus-icon { width: 30px; height: 30px; background: var(--brand-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plus-icon i { font-size: 0.8rem; }

.trust-quote { margin-top: 30px; padding: 30px; background: var(--brand-bg); border-radius: var(--radius-lg); border-left: 5px solid var(--brand-secondary); }
.trust-quote p { font-style: italic; color: var(--brand-text); }

.course-info-box { background: var(--brand-bg); padding: 25px; border-radius: var(--radius-md); margin-bottom: 30px; }
.course-info-box ul { display: flex; flex-direction: column; gap: 10px; }
.course-info-box i { width: 25px; margin-right: 10px; text-align: center; }

.mb-100 { margin-bottom: 100px; }
.order-2 { order: 2; }
.order-1 { order: 1; }



.num-indicator { font-weight: 800; font-size: 1.5rem; color: var(--brand-primary); opacity: 0.3; }
.icon-text-card { padding: 30px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

.recruit-box { padding: 40px; background: var(--brand-bg); border-radius: var(--radius-xl); border: 2px dashed var(--brand-primary); }
.school-tag { padding: 8px 15px; background: #fff; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; display: inline-block; }

.transform-box { padding: 40px; border-radius: var(--radius-xl); }
.transform-box.before { background: var(--brand-bg); }
.transform-box.after { background: #f0fdf4; }

.franch-icon-box { width: 40px; height: 40px; background: var(--brand-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.text-red { color: #ff4d4d; }
.w-100 { width: 100%; }

.step-num { width: 60px; height: 60px; background: var(--brand-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: 800; font-size: 1.2rem; }
.eligibility-item { display: flex; align-items: center; gap: 15px; background: #fff; padding: 20px; border-radius: var(--radius-md); }

.mobile-menu-overlay { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: #fff; z-index: 2000; padding: 40px 30px; transition: var(--trans-base); box-shadow: var(--shadow-lg); }
.mobile-menu-close { font-size: 1.8rem; color: var(--brand-primary); cursor: pointer; text-align: right; margin-bottom: 30px; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav-list a { font-weight: 500; color: var(--brand-text); }
.mobile-nav-list a:hover { color: var(--brand-primary); }

.min-h-70 { min-height: 70vh; }
.fs-80 { font-size: 8rem; }
.lh-1 { line-height: 1; }

/* Certificate Preview */
.cert-preview-flex { display: flex; gap: 20px; flex-wrap: wrap; }
.cert-item { text-align: center; flex: 1; min-width: 120px; }
.cert-preview-img { height: 120px; border-radius: 10px; border: 1px solid #eee; margin: 0 auto 10px; display: block; cursor: pointer; transition: var(--trans-base); }
.cert-preview-img:hover { transform: scale(1.05); border-color: var(--brand-primary); }

.cert-main-img-container { position: relative; text-align: center; margin-top: 40px; }
.cert-main-img { max-width: 450px; width: 100%; margin: 0 auto; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.cert-badge { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); background: var(--brand-white); padding: 12px 25px; border-radius: var(--radius-full); box-shadow: var(--shadow-lg); font-weight: 700; color: var(--brand-primary); white-space: nowrap; z-index: 10; }



.cta-title { font-size: 3rem; color: #fff; margin-bottom: 20px; }
.cta-desc { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }

/* Prospectus Preview */
.prospectus-preview-container { border: 2px solid var(--brand-primary); padding: 15px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-lg); transition: var(--trans-base); }
.prospectus-preview-container:hover { transform: translateY(-10px); border-color: var(--brand-secondary); }
.prospectus-img { width: 100%; height: 500px; object-fit: contain; background: #f8f9fa; border-radius: var(--radius-md); }

@media (max-width: 768px) {
    .prospectus-img { height: 350px; }
    .cta-title { font-size: 2.2rem; }
}

.course-highlight-img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 20px; }

/* --- Extracted Inline Styles from index.php --- */
.hero-subtitle { font-size: 1.8rem; color: var(--brand-secondary); }
.lh-18 { line-height: 1.8; }
.bg-light-gray { background-color: #f9f9fc; }
.principal-msg { line-height: 1.8; font-style: italic; font-size: 1.05rem; }
.principal-name { font-size: 1.2rem; color: var(--brand-primary); }
.principal-designation { color: var(--brand-secondary); }
.principal-img { width: 100%; margin: 0 auto; border: 8px solid white; }
.mv-title { font-size: 1.5rem; }
.why-choose-icon { font-size: 2.5rem; }
.why-choose-desc { font-size: 0.9rem; }
.course-desc { font-size: 0.85rem; margin-bottom: 20px; }
.flex-center-gap-15 { display: flex; align-items: center; gap: 15px; }
.testimonial-stars { color: var(--brand-accent); margin-bottom: 15px; }
.testimonial-img { width: 60px !important; height: 60px !important; object-fit: cover; border-radius: 50%; border: 2px solid var(--brand-primary-light); flex-shrink: 0; }
.testimonial-author { font-size: 1rem; }
.testimonial-designation { font-size: 0.8rem; color: var(--brand-primary); }

/* Wall of Excellence Cards */
.excellence-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-left: 4px solid var(--brand-secondary);
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.excellence-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 2px solid var(--brand-primary-light);
}

@media (max-width: 576px) {
    .excellence-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--brand-secondary);
    }
}
