@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ===== Fresh & Modern CSS for Sree Academy ===== */

:root {
    --teal: #0ea5a5;
    --teal-dark: #0891b2;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --purple: #a855f7;
    --pink: #ec4899;
    --text-dark: #333;
    --text-light: #666;
    --light-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

section,
.container,
.container-fluid,
.row {
    max-width: 100%;
}

img,
svg,
video,
iframe,
canvas {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar .nav-link,
.btn {
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

::selection {
    background: rgba(14, 165, 165, 0.18);
    color: #0f172a;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('images/logo.png');
    background-repeat: no-repeat;
    background-position: center 50%;
    background-size: min(48vw, 500px);
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
    /* filter: grayscale(100%) contrast(1.15); */
}

/* ===== Navigation ===== */
.topbar {
    background: #f8f8f8;
    color: #1f2937;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.topbar-phone {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
}

.topbar-contact-group {
    gap: 16px;
}

.topbar-email {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    gap: 6px;
    border-left: 1px solid #d1d5db;
    padding-left: 14px;
}

.topbar-phone:hover {
    color: var(--teal-dark);
}

.topbar-email:hover {
    color: var(--teal-dark);
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.topbar-social a[aria-label="Facebook"] {
    color: #1877F2;
}

.topbar-social a[aria-label="Instagram"] {
    color: #E4405F;
}

.topbar-social a[aria-label="YouTube"] {
    color: #FF0000;
}

.topbar-social a[aria-label="WhatsApp"] {
    color: #25D366;
}

.topbar-social a[aria-label="Facebook"]:hover {
    background: #1877F2;
    color: #ffffff;
    border-color: #1877F2;
    transform: translateY(-2px);
}

.topbar-social a[aria-label="Instagram"]:hover {
    background: #E4405F;
    color: #ffffff;
    border-color: #E4405F;
    transform: translateY(-2px);
}

.topbar-social a[aria-label="YouTube"]:hover {
    background: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
    transform: translateY(-2px);
}

.topbar-social a[aria-label="WhatsApp"]:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    transform: translateY(-2px);
}

.topbar-social svg {
    width: 20px;
    height: 20px;
}

.topbar-social i {
    font-size: 15px;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0 !important;
    z-index: 1200;
    background-color: #ffffff;
}

.site-logo {
    height: 130px;
    width: auto;
}

@media (min-width: 768px) {
    .navbar .navbar-brand {
        margin-left: 20px;
    }
}

@media (min-width: 992px) {
    .navbar .navbar-brand {
        margin-left: 40px;
    }
}

@media (min-width: 1200px) {
    .navbar .navbar-brand {
        margin-left: 60px;
    }
}

.navbar .navbar-collapse {
    justify-content: flex-end;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    margin: 0 6px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a !important;
    padding: 0.8rem 0.7rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc107;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-call-item {
    margin-left: 10px;
    align-items: center;
}

.nav-call-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5a5 0%, #0891b2 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 18px rgba(8, 145, 178, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: navCallPulse 2s ease-in-out infinite;
}

.nav-call-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.32);
}

.back-to-top-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6a2b 0%, #ea580c 100%);
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 14px 26px rgba(234, 88, 12, 0.35);
    cursor: pointer;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(0.9);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease, box-shadow 0.25s ease;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 30px rgba(234, 88, 12, 0.4);
}

.back-to-top-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.95);
    outline-offset: 2px;
}

.whatsapp-float-btn {
    position: fixed;
    left: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 14px 26px rgba(18, 140, 126, 0.35);
    z-index: 1100;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    animation: whatsappPulse 2.2s ease-in-out infinite;
}

.whatsapp-float-btn i {
    font-size: 1.8rem;
    line-height: 1;
}

.whatsapp-float-btn:hover {
    color: #ffffff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 32px rgba(18, 140, 126, 0.42);
    filter: brightness(1.02);
}

.whatsapp-float-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.95);
    outline-offset: 2px;
}

@keyframes navCallPulse {
    0%,
    100% {
        box-shadow: 0 8px 18px rgba(8, 145, 178, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 10px 24px rgba(8, 145, 178, 0.4);
        transform: scale(1.07);
    }
}

@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow: 0 14px 26px rgba(18, 140, 126, 0.35);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 18px 34px rgba(18, 140, 126, 0.48);
        transform: scale(1.06);
    }
}

/* ===== Scroll Reveal Animation ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    will-change: opacity, transform;
}

.reveal-on-scroll.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.reveal-from-left {
    transform: translateX(-36px);
}

.reveal-on-scroll.reveal-from-right {
    transform: translateX(36px);
}

.reveal-on-scroll.reveal-from-left.reveal-visible,
.reveal-on-scroll.reveal-from-right.reveal-visible {
    transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.reveal-scale {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
}

.reveal-scale.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(1.06);
    filter: saturate(0.95);
}

.reveal-zoom.reveal-visible {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
}

.reveal-fade {
    opacity: 0;
    transform: none;
}

.reveal-fade.reveal-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 768px) {
    .reveal-on-scroll,
    .reveal-on-scroll.reveal-from-left,
    .reveal-on-scroll.reveal-from-right {
        transform: translateY(20px);
    }

    .reveal-on-scroll.reveal-visible,
    .reveal-on-scroll.reveal-from-left.reveal-visible,
    .reveal-on-scroll.reveal-from-right.reveal-visible {
        transform: translateY(0);
    }

    .reveal-scale,
    .reveal-scale.reveal-visible {
        transform: translateY(0) scale(1);
    }

    .reveal-zoom,
    .reveal-zoom.reveal-visible {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-on-scroll,
    .reveal-on-scroll.reveal-visible,
    .reveal-on-scroll.reveal-from-left,
    .reveal-on-scroll.reveal-from-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .reveal-scale,
    .reveal-scale.reveal-visible,
    .reveal-zoom,
    .reveal-zoom.reveal-visible,
    .reveal-fade,
    .reveal-fade.reveal-visible {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* ===== Hero Slider ===== */
.hero-slider {
    min-height: 600px;
    position: relative;
    overflow: hidden;
}



.carousel-item {
    min-height: 600px;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    will-change: background-position;
}

@media (min-width: 992px) {
    .hero-slider {
        min-height: 480px;
    }

    .carousel-item {
        min-height: 480px;
    }

    .carousel-item .display-4 {
        font-size: 3rem;
    }

    .carousel-item .lead {
        font-size: 1.15rem;
    }

    .carousel-item .fa-8x {
        font-size: 6rem;
    }
}

.slide-1 {
    background: #0ea5a5 url('images/home_slider.png') center center / cover no-repeat;
}

.slide-2 {
    background: #f97316 url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
}

.slide-3 {
    background: #a855f7 url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.25s ease;
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    width: 12px;
    height: 12px;
}

.carousel-indicators .active {
    background-color: white;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

/* ===== Page Banner ===== */
.page-banner {
    padding: 80px 0 !important;
    color: white;
    text-align: center;
}

.page-banner h1 {
    animation: slideInDown 0.6s ease-out;
}

.page-banner p {
    animation: slideInUp 0.6s ease-out;
}

/* ===== Cards ===== */
.why-card {
    padding: 30px 20px;
    border-radius: 15px;
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.admission-highlight-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.admission-split-card {
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.admission-split-image {
    min-height: 420px;
}

.admission-split-image img {
    object-fit: cover;
    width: 100%;
    height: 500px;
    display: block;
}

.admission-split-content {
    padding: 30px;
}

.admission-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.admission-split-content h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    color: #0f172a;
}

.admission-split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.admission-btn {
    background: linear-gradient(135deg, #2aa6d9 0%, #0f9ed3 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 14px 34px;
    box-shadow: 0 12px 24px rgba(42, 166, 217, 0.28);
}

.admission-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(42, 166, 217, 0.35);
}

.about-split-section {
    background: #ffffff;
}

.about-split-card {
    background: #ffffff;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.about-split-content {
    padding: 24px 18px 24px 0;
    max-width: 620px;
}

.about-eyebrow {
    display: inline-block;
    color: #ff5a1f;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 1rem;
}

.about-split-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
    color: #0f172a;
    font-weight: 700;
    max-width: 520px;
}

.about-copy {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #334155;
    margin-bottom: 12px;
    text-align: justify;
}

.about-split-image {
    min-height: 350px;
}

.about-split-image img {
    object-fit: cover;
    border-radius: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .about-split-content {
        padding: 0 0 28px;
        max-width: 100%;
    }

    .about-split-image {
        min-height: 320px;
    }
}

@media (max-width: 575.98px) {
    .about-copy {
        font-size: 1rem;
        line-height: 1.75;
    }
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* ===== Course Cards ===== */
.course-card {
    padding: 25px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--teal);
}

.course-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.course-card h5 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.course-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 15px 0;
}

.check-list li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.check-list i {
    color: var(--teal);
    margin-right: 8px;
}

.btn-custom {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: white !important;
    border: none;
    border-radius: 20px;
    padding: 6px 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(14, 165, 165, 0.3);
}

/* ===== Statistics ===== */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stat-box {
    padding: 30px 20px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.2s; }
.stat-box:nth-child(3) { animation-delay: 0.3s; }
.stat-box:nth-child(4) { animation-delay: 0.4s; }

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: countUp 2s ease-out;
}

.stat-box p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* ===== Result Section ===== */
.result-stat {
    padding: 25px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    opacity: 0;
}

.result-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.result-header {
    padding: 20px;
    color: white;
}

.result-body {
    padding: 20px;
    background: white;
}

.result-body p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.result-hero {
    position: relative;
    padding: 92px 0 78px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(9, 46, 70, 0.9) 0%, rgba(15, 118, 110, 0.78) 45%, rgba(249, 115, 22, 0.78) 100%),
        url('images/baneer_image.png') center center / cover no-repeat;
    overflow: hidden;
}

.result-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 30%),
                radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12), transparent 26%);
    pointer-events: none;
}

.result-hero .container {
    position: relative;
    z-index: 1;
}

.result-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

.result-hero h1 {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
}

.result-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.92);
}

.result-hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.result-chip {
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    min-width: 150px;
}

.result-chip .value {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.1;
}

.result-chip .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.88;
}

.result-photo-card {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    background: #fff;
    height: 100%;
    max-width: 320px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.result-photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.result-poster-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.result-poster-frame {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    background: #ffffff;
}

.result-poster-image {
    width: 100%;
    display: block;
}

@media (min-width: 1200px) {
    .result-poster-frame {
        max-width: 860px;
    }
}

.results-slider-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.results-carousel {
    position: relative;
    padding-bottom: 48px;
    max-width: 1120px;
    margin: 0 auto;
}

.results-carousel .carousel-inner {
    overflow: hidden;
}

.results-carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
    padding: 0;
}

.results-carousel .row {
    margin-left: 0;
    margin-right: 0;
    align-items: stretch;
}

.results-carousel .col-md-6,
.results-carousel .col-lg-4 {
    display: flex;
    justify-content: center;
}

.results-carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}

.results-carousel-indicators [data-bs-target] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #cbd5e1;
}

.results-carousel-indicators .active {
    background-color: #f97316;
}

.results-carousel-control {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5a5 0%, #0891b2 100%);
    opacity: 1;
    box-shadow: 0 14px 30px rgba(8, 145, 178, 0.22);
}

.results-carousel-control:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
}

.results-carousel-control.carousel-control-prev {
    left: 6px;
}

.results-carousel-control.carousel-control-next {
    right: 6px;
}

.results-carousel-control .carousel-control-prev-icon,
.results-carousel-control .carousel-control-next-icon {
    width: 1.3rem;
    height: 1.3rem;
}

.result-photo-wrap {
    position: relative;
}

.result-photo-wrap img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    display: block;
}

.result-rank {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.28);
}

.result-photo-card .card-body {
    padding: 16px 16px 18px;
}

.result-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.result-exam {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #ecfeff;
    color: #0f766e;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-score {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ea580c;
    margin-bottom: 8px;
}

.result-note {
    color: #475569;
    margin-bottom: 0;
    line-height: 1.65;
}

.result-summary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.result-summary h3 {
    font-weight: 800;
    color: #0f172a;
}

.result-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-highlight-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed #e5e7eb;
    color: #334155;
}

.result-highlight-list li:last-child {
    border-bottom: 0;
}

.result-highlight-list strong {
    color: #0f172a;
}

@media (max-width: 768px) {
    .result-hero {
        padding: 72px 0 60px;
    }

    .result-photo-wrap img {
        height: 230px;
    }

    .results-carousel-control {
        width: 44px;
        height: 44px;
    }

    .results-carousel-control.carousel-control-prev {
        left: -10px;
    }

    .results-carousel-control.carousel-control-next {
        right: -10px;
    }

    .result-summary {
        padding: 18px;
    }

    .result-poster-frame {
        border-radius: 18px;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .results-carousel {
        max-width: 1040px;
    }

    .results-carousel .carousel-item {
        padding: 0;
    }

    .result-photo-card {
        max-width: 280px;
    }

    .result-photo-wrap img {
        height: 190px;
    }
}

/* ===== Testimonials ===== */
.testimonial-card {
    padding: 20px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars i {
    margin-right: 3px;
    font-size: 0.9rem;
}

.testimonial-featured {
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.testimonial-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.testimonial-strip {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    border-left: 5px solid var(--orange);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* ===== Contact ===== */
.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 165, 0.25);
}

.contact-form label {
    color: var(--text-dark);
}

.contact-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--teal);
    background: #f8f9fa;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-box:hover {
    background: #f0f9ff;
    border-left-color: var(--orange);
}

.contact-box i {
    font-size: 1.5rem;
    color: var(--teal);
    min-width: 30px;
}

.contact-box h5 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* ===== Mission Card ===== */
.mission-card {
    padding: 30px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.mission-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* ===== Director Card ===== */
.director-card {
    border-radius: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Benefit Item ===== */
.benefit-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f0f9ff;
    border-color: var(--teal);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--teal);
    min-width: 30px;
}

/* ===== Accordion ===== */
.accordion-button {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 8px;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: white;
    border-color: var(--teal);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 165, 0.25);
}

.accordion-body {
    background-color: rgba(14, 165, 165, 0.05);
    border-radius: 0 0 8px 8px;
}

/* ===== Contact FAQ Modern ===== */

.faq-heading h2 {
    color: #0f766e;
}

.faq-pill {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #0f766e;
    background: #ccfbf1;
    border: 1px solid #99f6e4;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.faq-modern {
    border-radius: 16px;
}

.faq-modern .accordion-item {
    border: none;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(15, 118, 110, 0.12);
}

.faq-modern .accordion-button {
    margin-bottom: 0;
    border: none;
    border-radius: 14px !important;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    padding: 18px 20px;
    font-size: 1.03rem;
}

.faq-modern .accordion-button span {
    padding-right: 8px;
}

.faq-modern .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.faq-modern .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0ea5a5 0%, #0891b2 100%);
    color: #ffffff;
    box-shadow: none;
}

.faq-modern .accordion-body {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 16px 20px 18px;
    color: #475569;
    line-height: 1.7;
}

/* ===== Footer ===== */
.site-footer {
    background: #f8f8f8;
    color: #1f2937;
    border-top: 1px solid #e5e7eb;
}

.site-footer .footer-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    /* border-radius: 10px; */
    /* background: rgba(15, 23, 42, 0.08); */
    padding: 6px;
    margin-right: 0 !important;
    margin-bottom: 8px;
}

.site-footer .footer-brand {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.site-footer .footer-brand h5,
.site-footer .footer-title {
    color: #ea580c;
}

.site-footer p,
.site-footer li {
    color: #334155;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer ul li a {
    color: #1f2937 !important;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.site-footer p a,
.site-footer a.text-light {
    color: #1f2937 !important;
}

.site-footer ul li a:hover {
    color: #fb923c !important;
    transform: translateX(4px);
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #d1d5db;
    transition: all 0.25s ease;
}

.site-footer .social-links a:hover {
    transform: translateY(-2px);
    background: #fb923c;
    border-color: #fb923c;
    color: #ffffff;
}

.site-footer hr {
    border-color: rgba(15, 23, 42, 0.14);
}

.footer-copy {
    margin-bottom: 0;
    font-size: 0.96rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.6;
    opacity: 1;
    transform: none;
}

.footer-copy a {
    color: #ea580c !important;
    font-weight: 700;
    text-decoration: none;
}

.footer-copy a:hover {
    color: #c2410c !important;
    text-decoration: underline;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    .carousel-item {
        will-change: auto;
    }
    .slide-overlay {
        transition: none;
    }
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    body::before {
        background-position: center 44%;
        background-size: min(64vw, 280px);
        opacity: 0.6;
    }

    .site-logo {
        height: 110px;
    }

    .topbar {
        font-size: 0.85rem;
    }

    .topbar .container {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .nav-link {
        font-size: 1.02rem;
        padding: 0.55rem 0.35rem !important;
    }

    .hero-slider {
        min-height: 400px;
    }

    .carousel-item {
        min-height: 400px;
    }

    .page-banner {
        padding: 56px 0 !important;
        min-height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover !important;
        background-position: 82% center !important;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .course-card,
    .why-card {
        padding: 20px;
    }

    .contact-box {
        flex-direction: column;
    }

    .site-footer {
        text-align: center;
    }

    .site-footer .footer-brand {
        justify-content: center;
        align-items: center !important;
    }

    .site-footer .social-links {
        justify-content: center;
    }

    .contact-box i {
        min-width: auto;
    }

    .nav-link::after {
        display: none;
    }

    .admission-split-card {
        border-radius: 16px;
    }

    .admission-split-image {
        min-height: auto;
    }

    .admission-split-image img {
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .admission-split-content {
        padding: 24px 20px;
    }

    .whatsapp-float-btn {
        left: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float-btn i {
        font-size: 1.55rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        min-height: 300px;
    }

    .carousel-item {
        min-height: 300px;
    }

    .page-banner {
        min-height: 210px;
        padding: 48px 0 !important;
        background-size: cover !important;
        background-position: 88% center !important;
    }

    .page-banner h1 {
        font-size: 1.5rem;
    }

    .page-banner p {
        font-size: 0.95rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.5rem !important;
    }

    .display-6 {
        font-size: 1.2rem !important;
    }
}

/* ===== Utilities ===== */
.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.text-muted {
    color: var(--text-light) !important;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

/* ===== Course Detail Pages ===== */
.course-detail-hero {
    padding: 72px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.course-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.2), transparent 35%);
}

.course-detail-hero .container {
    position: relative;
    z-index: 1;
}

.theme-teal {
    background: linear-gradient(135deg, #0ea5a5 0%, #0891b2 100%);
}

.theme-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.theme-purple {
    background: #264921;
}

.theme-pink {
    background: #6b3491;
}

.theme-gold {
    background: #08708d;
}

.course-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}

.course-detail-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.course-detail-hero p {
    font-size: 1.05rem;
    margin: 0;
    opacity: 0.95;
}

.eligibility-bar {
    background: #0f172a;
    color: #fff;
    border-left: 6px solid #f97316;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
}

.detail-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 5px solid #0891b2;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.08);
    height: 100%;
}

.detail-panel.accent-orange {
    border-top-color: #f97316;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.12);
}

.detail-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    font-weight: 800;
    color: #0f172a;
}

.detail-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.detail-panel ul li {
    padding: 9px 0;
    border-bottom: 1px dashed #e5e7eb;
    color: #334155;
}

.detail-panel ul li:last-child {
    border-bottom: 0;
}

.tick-list li {
    position: relative;
    padding-left: 28px !important;
}

.tick-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    color: #f97316;
}

.detail-support {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 18px 20px;
}

.detail-support h4 {
    margin-bottom: 8px;
    color: #9a3412;
    font-weight: 800;
}

.detail-support p {
    margin: 0;
    color: #7c2d12;
}

.admission-box {
    background: linear-gradient(135deg, #0ea5a5 0%, #0891b2 100%);
    color: #fff;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}

.admission-box h4 {
    margin-bottom: 8px;
    font-weight: 800;
}

.admission-box p {
    margin-bottom: 14px;
}

.admission-box a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .course-detail-hero {
        padding: 56px 0;
    }

    .course-detail-hero h1 {
        font-size: 1.8rem;
    }
}

.course-banner img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.map-section {
    padding: 0 !important;
}

.map-embed-wrap {
    width: 100%;
    height: 500px; /* height adjust करू शकतो */
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.director-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px; /* square with slight rounded corners */
    border: 4px solid #0ea5a5;
}

.video-bg-section {
    position: relative;
    height: 500px; /* adjust */
    overflow: hidden;
}

/* Video */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* Dark overlay */
.video-bg-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Content */
.video-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.video-overlay h2 {
    font-size: 40px;
    font-weight: bold;
}

.video-overlay p {
    font-size: 18px;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .video-bg-section {
        height: 300px;
    }

    .video-overlay h2 {
        font-size: 24px;
    }
}






.mute-btn {
    margin-top: 20px;
    padding: 10px 18px;
    border: none;
    background: #f97316;
    color: #fff;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.mute-btn:hover {
    background: #ea580c;
}

/* Achiever Cards Grid */
.achievers-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.achiever-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.achiever-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(8, 145, 178, 0.2);
}

.achiever-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, #f8fbff 0%, #e0f7ff 100%);
}

.achiever-image {
    width: 500px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.achiever-card:hover .achiever-image {
    transform: scale(1.05);
}

.achiever-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.achiever-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.achiever-title {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.achiever-text {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.achiever-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-item {
    background: linear-gradient(135deg, #e0f7ff 0%, #cffafe 100%);
    color: #0891b2;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-item i {
    color: #f97316;
}

/* Responsive Design for Cards */
@media (max-width: 1024px) {
    .achievers-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .achiever-image-container {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .achievers-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .achiever-image-container {
        height: 280px;
    }

    .achiever-content {
        padding: 20px;
    }

    .achiever-title {
        font-size: 16px;
    }

    .achiever-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .achievers-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .achiever-image-container {
        height: 240px;
    }

    .achiever-content {
        padding: 16px;
    }

    .achiever-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .achiever-badge {
        font-size: 11px;
        padding: 6px 12px;
        top: 10px;
        right: 10px;
    }
}

