/* --- CSS Reset & Variables --- */
:root {
    --primary-blue: #1E3A8A;
    --accent-green: #10B981;
    --accent-yellow: #FBBF24;
    --white: #FFFFFF;
    --neutral-gray: #6B7280;
    --bg-light: #F9FAFB;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* --- Preloader Styles --- */


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Sticky Wrapper for Entire Header System --- */
.sticky-header-system {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* --- Top Marquee & Buttons Bar --- */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Marquee Section */
.marquee-section {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    min-width: 0;
    /* Prevents flex item from overflowing */
    max-width: 100%;
    /* Ensures it doesn't exceed parent width */
    /* Mask to fade edges slightly */
    mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
}

.marquee-content {
    white-space: nowrap;
    display: inline-block;
    animation: scroll-left 45s linear infinite;
    font-weight: 600;
}

.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    margin-right: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Top Buttons Section */
.top-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-top {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-top.btn-apply {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    font-weight: 800;
}

.btn-top.btn-apply:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-call {
    background-color: var(--accent-yellow);
    color: #1f2937;
}

.btn-call:hover {
    background-color: #d97706;
    color: white;
    transform: translateY(-1px);
}

/* --- Main Header --- */
.site-header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Logo */
.logo-img {
    height: 65px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

/* Compact Styling */
.compact .site-header .header-container {
    padding: 5px 20px;
}

.compact .site-header .logo-img {
    height: 50px;
}

/* Navigation */
.main-nav {
    display: none;
}

@media (min-width: 1250px) {
    .main-nav {
        display: block;
    }

    /* Hide the close button on desktop */
    .menu-header {
        display: none;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 15px 5px;
    display: block;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-link i {
    margin-left: 3px;
    font-size: 0.75em;
    color: var(--neutral-gray);
}

.nav-item.highlight-cta a.nav-link {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    margin-left: 10px;
}

.nav-item.highlight-cta a.nav-link:hover {
    background-color: var(--accent-green);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    border-radius: 0 0 4px 4px;
    z-index: 1002;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 8px 15px;
    color: #4b5563;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-transform: none;
}

.dropdown li a:hover {
    background-color: #f0fdf4;
    color: var(--primary-blue);
    padding-left: 20px;
}

/* Mobile Menu */
.mobile-limit-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 85vh;
    /* Large impactful height */
    min-height: 600px;
    background-image: url('./Image/hero_bg.png');
    /* Using new image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align Text Left */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.8) 0%, rgba(30, 58, 138, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    color: white;
}

.hero-text-box {
    max-width: 650px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: #1f2937;
    padding: 15px 40px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    background-color: #d97706;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* --- Side Sticky Widget --- */
.side-sticky-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    background-color: #1e3a8a;
    /* Primary Blue */
    box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

.side-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    /* Square buttons */
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

.side-item:last-child {
    border-bottom: none;
}

.side-item:hover {
    background-color: var(--accent-green);
}

.side-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.side-item span {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1249px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 2000;
        overflow-y: auto;
        padding-bottom: 30px;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-link {
        padding: 16px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
    }

    .nav-item.highlight-cta {
        margin: 20px 20px 0;
        border: none;
    }

    .nav-item.highlight-cta a.nav-link {
        background-color: var(--accent-green);
        color: white;
        justify-content: center;
        margin: 0;
        border-radius: 8px;
    }

    .dropdown {
        position: static;
        border-top: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: #fafafa;
        padding: 10px 0;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .nav-item.active .fa-chevron-down {
        transform: rotate(180deg);
        transition: transform 0.2s;
    }

    .menu-header {
        display: flex;
        justify-content: flex-end;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        background: #fff;
    }

    .close-menu-btn {
        font-size: 1.8rem;
        color: var(--neutral-gray);
        cursor: pointer;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
        padding: 5px 15px;
    }

    .top-buttons {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .btn-top {
        flex: 1;
        justify-content: center;
    }

    /* Hero Mobile */
    .hero-section {
        height: 60vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    /* Adjust Side bar for mobile */
    .side-sticky-bar {
        display: none;
        /* Often hidden on small screens to prevent overlap, or moved to bottom bar */
    }
}

/* Scoped Hero Styles */
.hero-monolithic {
    position: relative;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: stretch;
    gap: 20px;
    padding: 20px 3%;
    overflow: hidden;
    background-color: var(--bg-light);
    z-index: 1;
    font-family: 'Nav-body', sans-serif;
}

/* Monolithic Background Elements */
.stratified-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.strata {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 120%;
    width: 60%;
    transform: skewX(-15deg) translateX(20%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.12;
}

.strata-layer {
    position: absolute;
    inset: 0;
    transform-origin: bottom right;
}

.layer-1 {
    background: var(--primary-blue);
    z-index: 1;
    transform: translateX(0);
}

.layer-2 {
    background: var(--accent-green);
    z-index: 2;
    transform: translateX(15%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.layer-3 {
    background: var(--accent-yellow);
    z-index: 3;
    transform: translateX(85%);
    width: 20%;
}

/* --- Left Column: Enhanced Content --- */
.hero-content-mono {
    z-index: 10;
    max-width: 850px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Consistent spacing */
}

/* Top Tier: Badge & Headline */
.prestige-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 138, 0.08);
    /* Light blue bg */
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    width: fit-content;
    border: 1px solid rgba(30, 58, 138, 0.15);
    animation: fadeInDown 0.8s ease-out;
}

.prestige-badge i {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.hero-headline {
    font-family: var(--font-heading);
    /* Montserrat */
    font-weight: 900;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    color: var(--primary-blue);
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-tagline {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 90%;
    border-left: 4px solid var(--accent-yellow);
    padding-left: 15px;
    margin: 0;
}

/* Mid Tier: Benefits, Stats, Trust */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.benefit-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-green);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #ecfdf5;
    /* Light green */
    color: var(--accent-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--primary-blue);
}

.stats-row {
    display: flex;
    gap: 40px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: left;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 600;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    color: var(--accent-green);
}

/* Bottom Tier: CTAs */
.cta-cluster {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-cta-primary:hover {
    background: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-secondary:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: translateY(-3px);
}

/* --- Left Column: Hero Image Slider --- */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Overlay for darkening the image */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.75) 0%, rgba(16, 185, 129, 0.4) 100%);
    z-index: 1;
}

/* Slide Content Container */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 700px;
    color: white;
}

.slide-content .prestige-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.slide-content .hero-headline {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.slide-content .gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content .hero-tagline {
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 1rem;
    max-width: 100%;
}

/* Benefit Pills */
.slide-benefits {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-pill i {
    color: var(--accent-yellow);
}

.slide-content .btn-cta-primary {
    margin-top: 10px;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover,
.dot.active {
    background: white;
    transform: scale(1.2);
    border-color: var(--accent-yellow);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 15px;
}

.slider-arrow.next {
    right: 15px;
}

/* Academic Stats Overlay */
.slider-stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-chip i {
    color: var(--accent-green);
}

/* Headline Overlay on Slider */
.slider-headline-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    max-width: 60%;
}

.slider-headline-overlay .prestige-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
}

.slider-headline-overlay .hero-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slider-headline-overlay .gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.form-card-wrapper {
    position: relative;
    z-index: 20;
    perspective: 1000px;
    margin-top: 20px;
    /* Slight gap on mobile */
}

.admission-form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-top: 6px solid var(--accent-yellow);
    max-width: 420px;
    margin-left: auto;
    position: relative;
}

.admission-form-card::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    bottom: -15px;
    left: 15px;
    border: 2px solid var(--primary-blue);
    z-index: -1;
    border-radius: 12px;
    opacity: 0.2;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h3 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 12px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    background-color: #f9fafb;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design Rules */

/* Tablet & Small Desktop (Max 1100px) */
@media (max-width: 1100px) {
    .hero-monolithic {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px 15px;
        height: auto;
        min-height: auto;
    }

    .hero-slider-wrapper {
        min-height: 450px;
        max-width: 100%;
        order: 1;
    }

    .hero-slider {
        min-height: 450px;
    }

    .slide-content .hero-headline {
        font-size: 2rem;
    }

    .slide-content .hero-tagline {
        font-size: 0.95rem;
    }

    .benefit-pill {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .form-card-wrapper {
        order: 2;
    }

    .admission-form-card {
        margin: 0 auto;
        max-width: 550px;
        width: 100%;
    }

    .admission-form-card::after {
        display: none;
    }
}

/* Mobile Landscape & Tablet Portrait (Max 768px) */
@media (max-width: 768px) {
    .hero-slider-wrapper {
        min-height: 380px;
    }

    .hero-slider {
        min-height: 380px;
    }

    .slide-content .hero-headline {
        font-size: 1.6rem;
    }

    .slide-content .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .slide-benefits {
        gap: 8px;
        margin-bottom: 15px;
    }

    .benefit-pill {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }



    .admission-form-card {
        padding: 1.5rem;
    }
}

.mobile-bottom-nav {
    display: flex !important;
    /* Re-enable */
    justify-content: center;
    background: #1e3a8a;
    padding: 10px 20px;
    z-index: 99999;
}

.bottom-nav-item {
    background: #fbbf24;
    color: #1e3a8a !important;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px;
}

/* Ensure arrows are clickable over iframes */
.testimonials-slider,
.reels-slider-wrapper {
    position: relative;
    z-index: 5;
}

.track-arrow {
    z-index: 100000 !important;
    /* Super high to beat everything */
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-blue);
    width: 50px;
    /* Larger hit area */
    height: 50px;
}

.track-arrow:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* Mobile Portrait (Max 480px) */
@media (max-width: 480px) {
    .hero-monolithic {
        padding: 10px;
        gap: 15px;
    }

    .hero-slider-wrapper {
        min-height: 320px;
        border-radius: 12px;
    }

    .hero-slider {
        min-height: 320px;
    }

    .slide-content {
        width: 95%;
    }

    .slide-content .prestige-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        gap: 5px;
    }

    .slide-content .hero-headline {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .slide-content .hero-tagline {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .slide-benefits {
        gap: 6px;
        margin-bottom: 12px;
    }

    .benefit-pill {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .slide-content .btn-cta-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .slider-dots {
        bottom: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .admission-form-card {
        padding: 1rem;
    }

    .form-header h3 {
        font-size: 1.1rem;
    }

    .form-control {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .btn-submit {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* --- Why Shraddha Section (Infinite Slider) --- */
.why-shraddha-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.why-shraddha-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.why-shraddha-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 2px;
}

/* Infinite Slider Wrapper */
.why-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Add fade edges */
.why-slider-wrapper::before,
.why-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.why-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.why-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* Slider Track */
.why-slider-track {
    display: flex;
    gap: 30px;
    /* animation: none !important; */
    animation: none !important;
    width: max-content;
    transition: transform 0.5s ease-out;
}

/* 
.why-slider-wrapper:hover .why-slider-track {
    animation-play-state: paused;
} 
*/

@keyframes why-slider-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Slider Items */
.why-slider-item {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.why-slider-item:hover {
    transform: scale(1.1) translateY(-10px);
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Individual Gradient Styles - Reuse existing gradients */
.why-slider-item.item-1 {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%);
}

.why-slider-item.item-2 {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
}

.why-slider-item.item-3 {
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
}

.why-slider-item.item-4 {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.why-slider-item.item-5 {
    background: linear-gradient(135deg, #db2777 0%, #f472b6 100%);
}

.why-slider-item.item-6 {
    background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
}

.why-slider-item.item-7 {
    background: linear-gradient(135deg, #4b5563 0%, #9ca3af 100%);
}

.why-slider-item.item-8 {
    background: linear-gradient(135deg, #65a30d 0%, #a3e635 100%);
}

/* Center Logo Item */
.why-slider-item.center-logo-item {
    background: white;
    border: 5px solid #f0f0f0;
}

.why-slider-item.center-logo-item .core-circle {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
}

.why-slider-item.center-logo-item .core-circle::before {
    display: none;
}

.why-slider-item.center-logo-item .core-logo {
    width: 70%;
    height: auto;
}

/* Content Inside Items */
.why-item-content {
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.why-slider-item:hover .why-item-content {
    transform: scale(1.05);
}

.why-item-content i {
    font-size: 2.5rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.why-item-content span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-shraddha-section {
        padding: 40px 0;
    }

    .why-shraddha-section .section-title {
        font-size: 1.8rem;
    }

    .why-container {
        margin-bottom: 30px;
    }

    .why-slider-wrapper::before,
    .why-slider-wrapper::after {
        width: 50px;
    }

    .why-slider-item {
        width: 150px;
        height: 150px;
    }

    .why-slider-track {
        gap: 20px;
    }

    .why-item-content i {
        font-size: 2rem;
    }

    .why-item-content span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .why-slider-item {
        width: 130px;
        height: 130px;
    }

    .why-item-content {
        padding: 15px;
        gap: 6px;
    }

    .why-item-content i {
        font-size: 1.6rem;
    }

    .why-item-content span {
        font-size: 0.7rem;
    }
}

/* --- Curriculum Section --- */
.curriculum-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.curr-container {
    max-width: 1300px;
    margin: 0 auto;
}

.curriculum-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.curriculum-section .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 60px;
    font-weight: 500;
}

/* Grid */
.curr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.curr-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s;
    border: 1px solid #f1f5f9;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.curr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    /* Subtle green border on hover */
}

/* Image */
.curr-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.curr-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.curr-card:hover .curr-img-wrapper img {
    transform: scale(1.1);
}

.curr-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Body */
.curr-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.curr-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.sub-brand {
    font-size: 0.95rem;
    color: var(--accent-green);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.curr-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.curr-list li {
    font-size: 0.92rem;
    color: #4b5563;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
}

.curr-list li strong {
    color: #1f2937;
    font-weight: 700;
}

.curr-list li::before {
    content: '•';
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.curr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.curr-tags span {
    background: #eff6ff;
    color: var(--primary-blue);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* Promise Banner */
.curr-promise-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    border-radius: 12px;
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.curr-promise-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.promise-text {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-align: left;
}

.promise-text i {
    color: var(--accent-green);
    opacity: 0.5;
    font-size: 1.2rem;
    vertical-align: super;
    margin: 0 5px;
}

.btn-tour {
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
    .curr-promise-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .promise-text {
        text-align: center;
        font-size: 1.25rem;
    }

    .curr-img-wrapper {
        height: 160px;
    }
}

/* --- Overview Section Styles --- */
.overview-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.overview-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Composition */
.overview-image-wrapper {
    position: relative;
    padding: 20px;
}

.image-back-blob {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
    filter: blur(40px);
}

.image-frame {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
    border: 8px solid white;
}

.overview-image-wrapper:hover .image-frame {
    transform: rotate(0deg);
}

.overview-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -10px;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--accent-green);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--accent-yellow);
}

.floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.badge-count {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-blue);
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    color: var(--neutral-gray);
    font-weight: 600;
}

/* Content Side */
.overview-content {
    padding-left: 20px;
}

.section-badge {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.overview-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    font-weight: 800;
    z-index: 1;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: -2px;
    width: calc(100% + 4px);
    height: 12px;
    background-color: var(--accent-yellow);
    z-index: -1;
    border-radius: 2px;
    opacity: 0.6;
}

.separator-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-yellow));
    margin-bottom: 30px;
    border-radius: 2px;
}

.overview-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.overview-description.secondary-text {
    font-size: 1rem;
    color: #777;
    margin-bottom: 35px;
}

.overview-action {
    margin-bottom: 40px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.btn-read-more:hover {
    background-color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Stats Box */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item-box {
    text-align: center;
    padding: 15px 10px;
    background-color: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-item-box:hover {
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--neutral-gray);
    font-weight: 600;
    line-height: 1.2;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsiveness */
@media (max-width: 992px) {
    .overview-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .overview-content {
        padding-left: 0;
        text-align: center;
    }

    .separator-line {
        margin: 0 auto 30px;
    }

    .floating-badge {
        right: 0;
    }
}

@media (max-width: 576px) {
    .overview-heading {
        font-size: 2rem;
    }

    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .floating-badge {
        position: static;
        margin-top: 20px;
        transform: none;
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }
}

/* --- Compact Overview Stats Update --- */
/* Replacing Previous Stats Styles somewhat by overriding or adding new specific classes */

.overview-stats.compact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 25px 15px;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(16, 185, 129, 0.1);
    border-color: var(--accent-green);
    background: #fff;
}

.stat-icon-small {
    width: 55px;
    height: 55px;
    background: #ecfdf5;
    color: var(--accent-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-item-compact:hover .stat-icon-small {
    background: var(--accent-green);
    color: white;
    transform: rotate(10deg);
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num-small {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 850;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-desc-small {
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Update Responsive for Compact Grid */
@media (max-width: 1100px) {
    .overview-stats.compact-stats {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .overview-stats.compact-stats {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2x2 even on mobile as requested */
    }

    .stat-item-compact {
        padding: 20px 10px;
    }

    .stat-num-small {
        font-size: 1.4rem;
    }

    .stat-desc-small {
        font-size: 0.75rem;
    }
}

/* --- Campuses Section Styles --- */
.campuses-section {
    padding: 80px 0 100px;
    background-color: #f9fafb;
}

.campuses-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center .section-subtitle {
    display: block;
    color: var(--accent-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-header-center .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header-center .section-line {
    width: 60px;
    height: 4px;
    background: var(--accent-yellow);
    margin: 0 auto;
    border-radius: 2px;
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.campus-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.campus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: var(--accent-green);
    z-index: 2;
}

.campus-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.campus-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.campus-card:hover .campus-img-box img {
    transform: scale(1.1);
}

.campus-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 138, 0.85);
    /* Primary Blue Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.campus-card:hover .campus-overlay {
    opacity: 1;
}

.btn-campus-view {
    color: white;
    border: 2px solid var(--accent-yellow);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s;
    background: transparent;
}

.btn-campus-view:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.campus-info {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    background: white;
}

.campus-info h3 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.campus-loc {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.campus-loc i {
    color: var(--accent-green);
    margin-right: 5px;
}

/* Tablet Responsiveness - 3 columns maintained */
@media (max-width: 1024px) {
    .campus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .campus-img-box {
        height: 200px;
    }

    .campus-info h3 {
        font-size: 1.1rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .campus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .campus-card {
        border-radius: 12px;
    }

    .campus-img-box {
        height: 220px;
    }

    .section-header-center .section-title {
        font-size: 2rem;
    }

    .campus-info {
        padding: 20px 15px;
    }
}

/* --- Admissions CTA Section --- */
.admissions-cta-section {
    position: relative;
    background-image: url('Image/slider 3.webp');
    /* Engaging class/activity image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 140px 0;
    text-align: center;
    color: white;
    z-index: 1;
    margin-top: 50px;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 138, 0.85);
    /* Strong Blue Overlay */
    z-index: -1;
}

.curve-shape-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.curve-shape-top svg,
.curve-shape-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.curve-shape-top path {
    fill: var(--bg-light);
    /* Match page background */
    stroke: none;
}

.curve-shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.curve-shape-bottom path {
    fill: #f9fafb;
    /* Match next section background (Campuses uses #f9fafb) */
    stroke: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Awards Section Styles (Infinite) --- */
.awards-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.awards-header {
    text-align: center;
    margin-bottom: 50px;
}

.awards-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.awards-track {
    display: flex;
    gap: 40px;
    width: max-content;
    /* animation: none !important; */
    animation: none !important;
    padding: 20px 0;
    transition: transform 0.5s ease-out;
}

/* 
.awards-slider:hover .awards-track {
    animation-play-state: paused;
} 
*/

@keyframes awards-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.award-card {
    flex: 0 0 220px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.award-img-wrapper {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.award-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.award-card:hover img {
    transform: scale(1.05);
}

.award-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    line-height: 1.3;
}

.cta-subhand {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--accent-yellow);
    letter-spacing: 1px;
}

.cta-action-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-main {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-yellow);
}

.btn-cta-main:hover {
    background-color: transparent;
    color: var(--accent-yellow);
    transform: translateY(-3px);
}

.btn-cta-outline {
    background-color: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-cta-outline:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .admissions-cta-section {
        padding: 100px 0;
    }

    .cta-headline {
        margin-bottom: 15px;
    }

    .cta-subhand {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .btn-cta-main,
    .btn-cta-outline {
        width: 100%;
        text-align: center;
    }
}

/* --- Life at Shraddha Section --- */
.life-at-shraddha-section {
    padding: 80px 0;
    background-color: white;
}

.life-container {
    max-width: 1400px;
    /* Wider container for the grid */
    margin: 0 auto;
    padding: 0 20px;
}

.life-grid {
    display: flex;
    gap: 15px;
    height: 350px;
    /* Fixed height for the strip */
    overflow-x: auto;
    /* Allow scrolling if needed on small screens, or usually fit */
    padding-bottom: 20px;
    /* Hide scrollbar for cleaner look */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.life-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Webkit */
}

.life-item {
    flex: 1;
    min-width: 220px;
    /* Minimum card width */
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    /* Center text vertically */
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: default;
}

.life-item:hover {
    flex: 1.5;
    /* Grow on hover - Accordion effect */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.life-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    /* Dark text for contrast on bright bg */
    margin-bottom: 5px;
    line-height: 1.3;
}

.life-content p {
    font-size: 0.9rem;
    color: #4b5563;
    display: none;
    /* Hide description by default to match clean look */
    margin-top: 10px;
    animation: fadeIn 0.5s;
}

.life-item:hover .life-content p {
    display: block;
    /* Show on hover */
}

/* Specific styling for 'white' text items if needed, but the example had mixed.
   Assuming dark text is safer for these bright pastel colors. */

.life-item-large {
    min-width: 280px;
}

.life-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .life-grid {
        flex-direction: row;
        /* Keep horizontal scroll on mobile */
        height: 300px;
    }

    .life-item:hover {
        flex: 1;
        /* Disable accordion grow on mobile for better scrolling */
        transform: none;
    }
}

/* --- Life at Shraddha Slider Section --- */
.life-slider-section {
    padding: 80px 0;
    background: #f8fafc;
    overflow: hidden;
    /* Hide scrollbars */
}

.life-slider-header {
    margin-bottom: 40px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* animation: none !important; */
    animation: none !important;
    transition: transform 0.5s ease-out;
}

/* 
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
} 
*/

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half way assuming content is doubled */
}

.marquee-item {
    flex: 0 0 300px;
    /* Fixed width for consistency */
    height: 300px;
    /* Square cards */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.marquee-item:hover {
    transform: translateY(-5px);
}

/* Image Item Styling */
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-image .overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

/* Text/Quote Item Styling - Quote icon at lower left with text below */
.item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
    text-align: left;
    color: white;
    position: relative;
}

/* Quote icon styling */
.item-text::before {
    content: '\201C\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.item-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 800;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .marquee-item {
        flex: 0 0 250px;
        height: 250px;
    }

    .item-text::before {
        font-size: 3rem;
    }

    .item-text h3 {
        font-size: 1rem;
    }
}

/* --- Reduce Gap Between Campuses and Life at Shraddha --- */
.life-slider-section {
    padding-top: 40px !important;
    /* Reduced from 80px */
    padding-bottom: 60px !important;
}

.life-slider-header {
    margin-bottom: 25px !important;
    /* Reduced from 40px */
}

.campuses-section {
    padding-bottom: 40px !important;
    /* Reduced bottom padding */
}

/* --- Our Partners Section (Compact) --- */
.partners-section {
    padding: 30px 0;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.partners-header {
    text-align: center;
    margin-bottom: 20px;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-marquee {
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 60px;
    width: max-content;
    /* animation: partners-scroll 20s linear infinite; */
    transition: transform 0.5s ease-out;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

@keyframes partners-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex: 0 0 auto;
    height: 50px;
    /* Small logo height */
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* --- Fix Partners Slider Gap --- */
.partners-track {
    gap: 80px !important;
    /* Increased spacing between items */
}

.partner-logo {
    height: 40px !important;
    /* Slightly smaller */
}

/* --- Testimonials Section (Embedded Videos Grid) --- */
.testimonials-section {
    padding: 100px 0;
    background: #f1f5f9;
    overflow: visible;
}

.testimonials-header {
    margin-bottom: 50px;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* animation: none !important; */
    animation: none !important;
    transition: transform 0.5s ease-out;
}

/* 
.testimonials-slider:hover .testimonials-track {
    animation-play-state: paused;
} 
*/

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 400px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Video Embed Wrapper - 16:9 Aspect Ratio */
.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-info {
    padding: 20px;
    background: white;
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.campus-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(16, 185, 129, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.campus-tag i {
    font-size: 0.75rem;
}

/* Responsive - 2 columns on tablet */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Responsive - 1 column on mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-container {
        padding: 0 15px;
    }

    .testimonial-card {
        border-radius: 12px;
    }

    .testimonial-info {
        padding: 18px;
    }

    .testimonial-info h4 {
        font-size: 1rem;
    }

    .testimonial-info p {
        font-size: 0.85rem;
    }
}

/* --- Prioritizing Safety Section --- */
.safety-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2443 100%);
    position: relative;
    overflow: hidden;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.safety-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.safety-sub {
    color: var(--accent-yellow) !important;
}

.safety-title {
    color: white !important;
}

.highlight-text-light {
    color: var(--accent-green);
}

.safety-line {
    background-color: var(--accent-green) !important;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.safety-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.safety-img-wrap {
    flex: 0 0 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.safety-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.safety-card:hover .safety-img-wrap img {
    transform: scale(1.1);
}

.safety-text h4 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.safety-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .safety-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .safety-img-wrap {
        flex: 0 0 120px;
        width: 120px;
        height: 120px;
    }
}

/* --- Safety Compact Slider Section --- */
.safety-slider-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2443 100%);
    overflow: hidden;
}

.safety-slider-header {
    text-align: center;
    margin-bottom: 20px;
}

.safety-slider-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.safety-slider-title i {
    color: var(--accent-green);
    margin-right: 10px;
}

.safety-marquee {
    overflow: hidden;
    width: 100%;
}

.safety-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* animation: none !important; */
    animation: none !important;
    transition: transform 0.5s ease-out;
}

/* 
.safety-marquee:hover .safety-track {
    animation-play-state: paused;
} 
*/

@keyframes safety-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.safety-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.safety-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-green);
    transform: scale(1.05);
}

.safety-chip img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.safety-chip span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */

.faq-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 60px;
    align-items: start;
}

/* FAQ Image Column */
.faq-image-col {
    position: sticky;
    top: 150px;
}

.faq-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.faq-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.9) 0%, transparent 100%);
    padding: 40px 25px 25px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-badge i {
    font-size: 1.5rem;
    color: var(--accent-yellow);
}

.faq-badge span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

/* FAQ Content Column */
.faq-content-col {
    padding-top: 20px;
}

.section-header-left {
    margin-bottom: 40px;
}

.section-header-left .section-subtitle {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header-left .section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-line.left-align {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-blue));
    border-radius: 2px;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-green);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
    gap: 15px;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-item.active .faq-question {
    color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.03);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.08);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--primary-blue);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 12px;
    border: 1px dashed rgba(30, 58, 138, 0.2);
}

.faq-cta p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-cta .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.faq-cta .btn-cta-primary:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* FAQ Responsive */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image-col {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 5%;
    }

    .section-header-left .section-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }

    .faq-cta {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

/* ============================================
   ADMISSION ENQUIRY SECTION STYLES
   ============================================ */

.admission-enquiry-section {
    position: relative;
    padding: 50px 5%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2557 60%, #0a1a3d 100%);
    overflow: hidden;
}

/* Decorative Elements */
.enquiry-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decor-shape {
    position: absolute;
    border-radius: 50%;
}

.decor-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.decor-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.decor-dots {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 150px;
    height: 200px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
}

/* Container */
.enquiry-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.enquiry-content {
    color: #fff;
}

.enquiry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.enquiry-badge i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.enquiry-badge span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enquiry-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.highlight-gradient {
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enquiry-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Features Grid */
.enquiry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* Achievements Section */
.enquiry-achievements {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
}

.achievement-item i.fa-shield-alt {
    color: #fbbf24;
}

.achievement-item i.fa-sun {
    color: #f7b731;
}

/* Phone Link Box */
.phone-link-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

.phone-link-box i {
    color: #10b981;
}

.phone-link-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Right Form Wrapper */
.enquiry-form-wrapper {
    position: relative;
}

.form-card-premium {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 650px;
    margin-left: auto;
}

.form-icon-header {
    width: 60px;
    height: 60px;
    background: #0c4a6e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    margin: -70px auto 20px;
    border: 4px solid #fff;
}

.form-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #0c4a6e;
    font-weight: 800;
    margin-bottom: 5px;
}

.form-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-grid-even {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group-modern {
    margin-bottom: 15px;
}

.form-group-modern label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #f8fafc;
    color: #1e293b;
    transition: 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #0c4a6e;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(12, 74, 110, 0.1);
}

.btn-submit-premium {
    width: 100%;
    padding: 16px;
    background: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit-premium:hover {
    background: #111827;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.form-note i {
    color: var(--accent-green);
}

/* Admission Enquiry Responsive */
@media (max-width: 1024px) {
    .enquiry-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .enquiry-content {
        text-align: center;
    }

    .enquiry-badge {
        margin: 0 auto 25px;
    }

    .enquiry-features {
        justify-content: center;
    }

    .feature-item {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .quick-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .admission-enquiry-section {
        padding: 70px 5%;
    }

    .enquiry-title {
        font-size: 2rem;
    }

    .form-card-premium {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .enquiry-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .enquiry-title {
        font-size: 1.7rem;
    }

    .form-card-premium {
        padding: 25px 20px;
    }

    .form-icon-circle {
        width: 60px;
        height: 60px;
    }

    .form-icon-circle i {
        font-size: 1.5rem;
    }
}

/* ============================================
   AWARDS & ACCREDITATIONS SECTION STYLES
   ============================================ */

.awards-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.awards-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.awards-header .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--accent-yellow);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.awards-header .section-subtitle i {
    font-size: 1rem;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.highlight-green {
    color: #059669;
    /* Darker green for better contrast ratio (>3:1 for large text) */
}

/* Awards Slider */
.awards-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.awards-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: awards-scroll 35s linear infinite;
}

.awards-slider:hover .awards-track {
    animation-play-state: paused;
}

@keyframes awards-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Award Card */
.award-card {
    flex-shrink: 0;
    width: 200px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.award-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.award-img-wrapper {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
}

.award-img-wrapper img {
    max-width: 90%;
    max-height: 130px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.award-card:hover .award-img-wrapper img {
    transform: scale(1.05);
}

.award-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
}

/* Awards Responsive */
@media (max-width: 768px) {
    .awards-section {
        padding: 50px 0;
    }

    .section-title-light {
        font-size: 1.8rem;
    }

    .award-card {
        width: 170px;
        padding: 15px;
    }

    .award-img-wrapper {
        height: 120px;
    }

    .award-title {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .awards-header {
        margin-bottom: 30px;
    }

    .award-card {
        width: 150px;
        padding: 12px;
    }

    .award-img-wrapper {
        height: 100px;
    }

    .award-img-wrapper img {
        max-height: 90px;
    }
}

/* ============================================
   PREMIUM FOOTER STYLES
   ============================================ */

.shraddha-footer {
    position: relative;
    background: var(--primary-blue);
    overflow: hidden;
}

/* Exact Footer Replication Styling */
.shraddha-footer {
    background: #1e3a8a;
    padding: 0;
    color: #fff;
}

.footer-main {
    padding: 80px 5% 50px;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    /* Changed to 1 column since we removed the middle one and want contacts below or inline */
    gap: 50px;
}

.footer-logo-wrapper {
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand-col .footer-tagline {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-email-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2563eb;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-email-box i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.footer-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-icon-box {
    width: 38px;
    height: 38px;
    background: #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.footer-link i {
    color: #10b981;
    font-size: 0.8rem;
}

.footer-link:hover {
    color: #10b981 !important;
    transform: translateX(5px);
}

/* Contact Campus Box */
.contact-campus-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.contact-campus-box:hover {
    background: rgba(255, 255, 255, 0.08);
}

.campus-name-label {
    color: #10b981;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 12px;
}

.campus-phone-item {
    color: #fff !important;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.campus-phone-links i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
}

/* ============================================
   FOOTER RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-brand-col>div:first-child,
    .footer-brand-col>p {
        flex-shrink: 0;
    }

    .footer-social-inline .social-icons {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 5% 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand-col {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-email-inline {
        text-align: center;
    }

    .footer-social-inline .social-icons {
        justify-content: center;
    }

    .footer-heading {
        justify-content: center;
    }

    .footer-links-grid {
        justify-content: center;
    }

    .branch-chips {
        justify-content: center;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .info-links {
        align-items: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-link {
        justify-content: center;
    }

    .footer-logo {
        height: 60px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* --- Mobile Bottom Navigation --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    justify-content: space-around;
    align-items: stretch;
    padding: 0;
    border-top: 3px solid var(--accent-yellow);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bottom-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-nav-item:hover::before,
.bottom-nav-item:active::before {
    opacity: 1;
}

.bottom-nav-item:last-child {
    border-right: none;
}

.bottom-nav-item .nav-icon-wrapper {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bottom-nav-item i {
    font-size: 1.3rem;
    color: white;
    transition: transform 0.3s ease;
}

.bottom-nav-item:active .nav-icon-wrapper {
    background: var(--accent-yellow);
    transform: scale(0.95);
}

.bottom-nav-item:active i {
    color: var(--primary-blue);
}

.bottom-nav-item span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

/* Bottom bar indicator */
.mobile-bottom-nav::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    /* Adjust WhatsApp position on mobile to avoid overlap */
    .whatsapp-float {
        bottom: 95px;
    }

    /* Add bottom padding to body to prevent content from being hidden */
    body {
        padding-bottom: 85px;
    }

    /* Hide side sticky bar on mobile */
    .side-sticky-bar {
        display: none;
    }
}

/* --- Testimonial Marquee Styles --- */
.testimonials-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    /* Mask for fade effect */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: testimonial-scroll 60s linear infinite;
    /* Slow pace for readability */
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonial-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ensure cards in marquee maintain width */
.testimonials-track .testimonial-card {
    width: 400px;
    /* Fixed width for smooth sliding */
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-track .testimonial-card {
        width: 300px;
    }
}

/* --- Highlighting Moments Section --- */
.highlight-moments-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.highlight-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-moments-section .section-title.text-teal {
    color: #0d9488;
    /* Teal color */
    margin-bottom: 10px;
}

.campus-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #9ca3af;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.campus-filter span {
    cursor: pointer;
    transition: color 0.3s;
}

.campus-filter span:hover {
    color: #0d9488;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    /* Gallery larger than shorts area */
    gap: 30px;
    align-items: stretch;
}

/* Gallery Slider */
.highlight-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    /* Fixed height for gallery */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    visibility: hidden;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.gallery-dots-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.g-dot {
    width: 10px;
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.g-dot.active {
    background-color: #0d9488;
    /* Teal */
    transform: scale(1.2);
}

/* Shorts Feed - Slider Conversion */
.highlight-shorts {
    overflow: hidden;
    position: relative;
    /* Remove grid to allow slider */
    display: block;
    width: 100%;
}

.shorts-track {
    display: flex;
    gap: 20px;
    width: 100%;
    /* Fit to container so percentages work */
    transition: transform 0.5s ease-in-out;
}

.short-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    height: 450px;
    /* Flex basis for 2 items visible approx */
    flex: 0 0 calc(50% - 10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.short-video-wrapper {
    width: 100%;
    height: 100%;
}

.short-video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlays mimicking YouTube Shorts UI for aesthetics */
.short-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none;
    /* Let clicks pass to iframe if needed, but iframe consumes events */
}

.short-logo-overlay {
    position: absolute;
    top: 50px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
}

.short-logo-overlay img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
}

.short-channel-info {
    display: flex;
    flex-direction: column;
}

.channel-name {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 2px black;
}

.btn-sub-xs {
    background: white;
    color: black;
    border: none;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2px;
    width: fit-content;
}

/* Responsive */
@media (max-width: 1024px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .highlight-shorts {
        height: auto;
    }

    .short-card {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .highlight-shorts {
        grid-template-columns: 1fr;
    }
}

/* ===== Instagram Reels Section ===== */
.instagram-reels-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.reels-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.reels-container .section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.reels-container .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E1306C;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.reels-container .section-subtitle i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reels-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reels-track {
    display: flex;
    gap: 25px;
    width: fit-content;
    animation: none !important;
    transition: transform 0.5s ease-out;
}

/* 
.reels-track:hover {
    animation-play-state: paused;
} 
*/

@keyframes reelsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Reel Card - Cropped to hide likes/comments */
.reel-card {
    flex-shrink: 0;
    width: 326px;
    min-width: 326px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Wrapper to crop the Instagram embed - hides header, likes, and "View more" */
.reel-embed-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    /* Reduced height to crop bottom likes/comments */
    overflow: hidden;
    margin-top: -56px;
    /* Hide the top profile header */
    pointer-events: auto;
}

/* Style the Instagram iframe */
.reel-card .instagram-media,
.reel-card iframe {
    width: 326px !important;
    min-width: 326px !important;
    max-width: 326px !important;
    height: 800px !important;
    /* Much taller to ensure bottom is cut off */
    margin: 0 !important;
    border: none !important;
    background: #000;
}

.reel-card blockquote {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}


/* Responsive for Reels Section */
@media (max-width: 768px) {
    .instagram-reels-section {
        padding: 50px 0;
    }

    .reels-container .section-header-center {
        margin-bottom: 30px;
    }

    .reel-card {
        width: 280px;
        min-width: 280px;
    }

    .reel-embed-wrapper {
        height: 420px;
        margin-top: -52px;
    }

    .reel-card .instagram-media,
    .reel-card iframe {
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        height: 700px !important;
    }

    .reels-track {
        gap: 15px;
        animation-duration: 35s;
    }
}

@media (max-width: 480px) {
    .reel-card {
        width: 260px;
        min-width: 260px;
    }

    .reel-embed-wrapper {
        height: 380px;
        margin-top: -48px;
    }

    .reel-card .instagram-media,
    .reel-card iframe {
        width: 260px !important;
        min-width: 260px !important;
        max-width: 260px !important;
        height: 650px !important;
    }

    .reels-track {
        animation-duration: 28s;
    }
}

/* ====================================
   FORM POPUP MODAL STYLES
   ==================================== */

.form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-popup.show {
    opacity: 1;
    visibility: visible;
}

.form-popup .popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.form-popup .popup-content {
    position: relative;
    background: #fff;
    padding: 40px 50px;
    border-radius: 20px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-popup.show .popup-content {
    transform: scale(1) translateY(0);
}

.form-popup .popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
}

.form-popup .popup-icon.success-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    display: none;
    animation: popIn 0.5s ease-out;
}

.form-popup.success .popup-icon.success-icon {
    display: flex;
}

.form-popup .popup-icon.error-icon {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #fff;
    display: none;
    animation: popIn 0.5s ease-out;
}

.form-popup.error .popup-icon.error-icon {
    display: flex;
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.form-popup .popup-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.form-popup.error .popup-title {
    color: #DC2626;
}

.form-popup .popup-message {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

.form-popup .popup-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    color: #fff;
    border: none;
    padding: 14px 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.form-popup .popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.form-popup.success .popup-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.form-popup.success .popup-btn:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.form-popup.error .popup-btn {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.form-popup.error .popup-btn:hover {
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Submit Button Loading State */
.btn-submit {
    position: relative;
    min-height: 48px;
    transition: all 0.3s ease;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit .btn-text,
.btn-submit .btn-loader {
    transition: opacity 0.2s ease;
}

.btn-submit .btn-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit .btn-loader i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Popup Responsive */
@media (max-width: 768px) {
    .form-popup .popup-content {
        padding: 30px 25px;
        margin: 20px;
    }

    .form-popup .popup-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .form-popup .popup-title {
        font-size: 1.5rem;
    }

    .form-popup .popup-message {
        font-size: 0.95rem;
    }

    .form-popup .popup-btn {
        padding: 12px 40px;
        font-size: 0.9rem;
    }
}

/* --- EMERGENCY RESPONSIVE FIXES --- */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

.marquee-section,
/* .marquee-container,  Removed marquee-container from here to avoid conflict with overflow hidden masking arrows */
.top-bar-inner {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

.marquee-container,
.reels-slider-wrapper,
.safety-marquee {
    position: relative;
    /* Ensure arrows are clickable and visible */
}

/* Ensure tracks transition smoothly for manual nav */
.marquee-track,
.safety-track,
.reels-track {
    transition: transform 0.5s ease-out;
}

/* --- Manual Track Arrow Styles --- */
.track-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    cursor: pointer;
    cursor: pointer;
    z-index: 9999;
    /* Increased Z-Index */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.track-arrow:active {
    transform: translateY(-50%) scale(0.9);
}

.track-arrow:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.track-arrow.prev {
    left: 20px;
}

.track-arrow.next {
    right: 20px;
}

.why-slider-wrapper {
    position: relative;
    /* Ensure arrows are positioned relative to this */
}

@media (max-width: 768px) {
    .track-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .track-arrow.prev {
        left: 5px;
    }

    .track-arrow.next {
        right: 5px;
    }
}

/* Adjusted for new footer layout */
.footer-brand-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-campus-grid {
    width: 100%;
    margin-top: 20px;
}

/* Video Facade Styling */
.video-facade {
    position: relative;
    cursor: pointer;
    background: #000;
}

.facade-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-facade:hover .facade-thumb {
    opacity: 0.7;
}

.facade-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-facade:hover .facade-play-btn {
    background: #FF0000;
    border-color: #FF0000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Specific Arrow Sizing for Testimonials and Reels */
.testimonials-slider .track-arrow,
.reels-slider-wrapper .track-arrow {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.testimonials-slider .track-arrow.prev,
.reels-slider-wrapper .track-arrow.prev {
    left: 10px;
}

.testimonials-slider .track-arrow.next,
.reels-slider-wrapper .track-arrow.next {
    right: 10px;
}

@media (max-width: 768px) {

    .testimonials-slider .track-arrow,
    .reels-slider-wrapper .track-arrow {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
}

/* Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.custom-modal.active {
    display: flex;
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* --- Brochure Download CRM Section --- */
.brochure-download-section {
    padding: 60px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.brochure-card-premium {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 30px;
    padding: 50px;
    display: grid;
    grid-template-columns: 0.5fr 1fr 0.5fr;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.2);
}

.brochure-visual {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.brochure-main-icon {
    font-size: 3.5rem;
    color: var(--accent-yellow);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.floating-blobs {
    position: absolute;
    inset: -20px;
}

.blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(15px);
    animation: blobFloat 6s ease-in-out infinite alternate;
}

.blob:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
}

.blob:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: 0;
    right: 0;
    animation-delay: -3s;
}

@keyframes blobFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(15px, 15px) scale(1.1);
    }
}

.brochure-info {
    text-align: left;
}

.brochure-badge {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.brochure-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.brochure-title .highlight {
    color: var(--accent-yellow);
}

.brochure-desc {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
}

.brochure-action {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center for mobile fallback */
}

.btn-download-brochure {
    background: #ffffff;
    color: var(--primary-blue);
    padding: 18px 35px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-download-brochure:hover {
    background: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.direct-link-note {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 12px;
}

/* Responsive */
@media (min-width: 1025px) {
    .brochure-action {
        align-items: flex-end;
    }
}

@media (max-width: 1024px) {
    .brochure-card-premium {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .brochure-info {
        text-align: center;
    }

    .brochure-title {
        font-size: 1.8rem;
    }

    .brochure-action {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .brochure-card-premium {
        padding: 30px 20px;
    }

    .brochure-title {
        font-size: 1.5rem;
    }
}