﻿/* ==============================
   GLOBAL BASE
================================ */
html {
    font-size: 14px;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    background: #f8fafc;
    color: #0f172a;
    font-family: 'Segoe UI',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
    line-height: 1.6;
}

/* ==============================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

small {
    font-size: .875rem;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

/* ==============================
   BRAND COLORS
================================ */
:root {
    --brand-red: #e11d2e;
    --brand-red-dark: #b91c1c;
    --brand-yellow: #facc15;
    --brand-yellow-soft: #fff3c4;
}

/* ==============================
   BUTTONS & FORMS
================================ */
.btn {
    transition: all .2s ease-in-out;
}

    .btn:focus,
    .form-control:focus,
    .form-select:focus {
        box-shadow: 0 0 0 .15rem rgba(37,140,251,.35);
        border-color: #258cfb;
    }

.form-control,
.form-select {
    border-radius: 10px;
}

/* ==============================
   NAVBAR
================================ */
.navbar {
    background: #fff;
    border-bottom: 3px solid var(--brand-red);
}

.brand-logo {
    height: 58px;
    border-radius: 12px;
}

.brand-title {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-size: 20px;
    font-weight: 900;
    color: var(--brand-red);
}

.brand-sub {
    font-size: 13px;
    font-weight: 700;
    color: #555;
}

.nav-item-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 10px 16px !important;
    border-radius: 10px;
    transition: .25s;
}

.nav-icon {
    font-size: 17px;
    color: var(--brand-red);
}

.nav-item-custom:hover {
    background: var(--brand-yellow-soft);
    color: var(--brand-red) !important;
}

/* ==============================
   DROPDOWN
================================ */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    padding: 8px;
}

.dropdown-item {
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
}

    .dropdown-item:hover {
        background: var(--brand-yellow-soft);
        color: var(--brand-red);
    }

/* ==============================
   ENROLL BUTTON
================================ */
.btn-enroll {
    background: linear-gradient(135deg,var(--brand-red),var(--brand-red-dark));
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    padding: 10px 22px;
    border: none;
}

    .btn-enroll:hover {
        background: linear-gradient(135deg,#ff2a2a,#b91c1c);
        color: #fff;
    }

/* ==============================
   HERO SLIDER
================================ */
.hero-slider {
    width: 100%;
    position: relative;
}

.hero-slide {
    height: 540px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 750px;
    padding: 20px;
}

.hero-badge {
    background: var(--brand-yellow);
    color: #b91c1c;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: .9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-join {
    background: var(--brand-red);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
}

    .btn-join:hover {
        background: #b91c1c;
        color: #fff;
    }

/* ==============================
   CARDS
================================ */
.card {
    border-radius: 18px;
}

.stat-box {
    transition: .2s;
}

    .stat-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(15,23,42,.12);
    }

/* ==============================
   FOOTER
================================ */
.footer-section {
    background: #0b1220;
    color: #cbd5e1;
    padding: 40px 0 20px;
}

.footer-logo {
    height: 42px;
    border-radius: 10px;
}

.footer-title {
    color: #fff;
    font-weight: 700;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
}

.footer-section a {
    color: var(--brand-yellow);
}

.footer-divider {
    border-color: #334155;
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==============================
   MOBILE
================================ */
@media(max-width:768px) {

    .hero-slide {
        height: 420px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .brand-logo {
        height: 46px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
/* ================= COURSES SECTION ================= */

.courses-section {
    padding: 80px 0;
    background: #f8fafc;
    width: 100%;
}


/* HEADER */

.courses-header {
    margin-bottom: 50px;
}

.courses-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}

.courses-subtitle {
    color: #64748b;
    margin-top: 8px;
}


/* COURSE CARD */

/* COURSE CARD */

.course-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    /* RED THEME BORDER */
    border-left: 6px solid;
    border-image: linear-gradient(#e11d2e,#b91c1c) 1;
}


    /* HOVER EFFECT */

    .course-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.12);
        /* subtle highlight */

        border-left: 6px solid #b91c1c;
    }


/* ICON */

.course-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 16px;
    background: linear-gradient(135deg,#fff3c4,#facc15);
    color: #e11d2e;
    margin-bottom: 18px;
}


/* TEXT */

.course-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.course-desc {
    color: #475569;
    font-size: 15px;
    margin-bottom: 15px;
}


/* FEATURES */

.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: #475569;
}

    .course-features li {
        margin-bottom: 6px;
    }


/* BUTTON */

.btn-course {
    margin-top: auto;
    display: inline-block;
    padding: 9px 18px;
    border-radius: 25px;
    background: #e11d2e;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: .25s;
}

    .btn-course:hover {
        background: #b91c1c;
        color: white;
    }


/* MOBILE */

@media(max-width:768px) {

    .courses-title {
        font-size: 28px;
    }

    .course-card {
        padding: 24px;
    }
}
/* ================= CTA SECTION ================= */

.cta-section {
    width: 100%;
    padding: 100px 0;
    background: #f8fafc;
}


/* TITLE */

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: #e11d2e;
    margin-bottom: 15px;
}

.cta-brand {
    color: #b91c1c;
}


/* SUBTITLE */

/*.cta-subtitle {
    font-size: 17px;
    color: #475569;
    margin-bottom: 30px;
}*/


/* BUTTONS */

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* CALL BUTTON */

.btn-cta-call {
    background: #e11d2e;
    color: white;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-cta-call:hover {
        background: #b91c1c;
        color: white;
    }


/* WHATSAPP BUTTON */

.btn-cta-whatsapp {
    border: 2px solid #e11d2e;
    color: #e11d2e;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-cta-whatsapp:hover {
        background: #e11d2e;
        color: white;
    }


/* FEATURES GRID */

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/* FEATURE BOX */

.cta-feature {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(15,23,42,0.08);
    border-left: 5px solid #e11d2e;
}


/* ICON */

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff3c4;
    color: #e11d2e;
    font-size: 22px;
}


/* MOBILE */

@media(max-width:768px) {

    .cta-title {
        font-size: 28px;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }
}
/* ================= FOOTER ================= */

.footer-section {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 30px;
    border-top: 5px solid #e11d2e;
}


/* LOGO */

.footer-logo {
    height: 48px;
    border-radius: 10px;
}

.footer-title {
    font-weight: 700;
    color: white;
    margin: 0;
}


/* TEXT */

.footer-text {
    font-size: 14px;
    color: #94a3b8;
}


/* HEADINGS */

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}


/* LINKS */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #cbd5e1;
        transition: .2s;
    }

        .footer-links a:hover {
            color: #facc15;
        }


/* CONTACT */

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}


/* SOCIAL */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #1e293b;
        color: white;
        transition: .25s;
    }

        .footer-social a:hover {
            background: #e11d2e;
        }


/* MAP */

.footer-map {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #334155;
}

    .footer-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }


/* DIVIDER */

.footer-divider {
    border-color: #334155;
    margin: 40px 0 20px;
}


/* BOTTOM */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: #94a3b8;
}


/* MOBILE */

@media(max-width:768px) {

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-map {
        height: 180px;
    }
}
.brand-red {
    color: #e11d2e;
}

.about-hero {
    background: #f8fafc;
    padding: 70px 0;
}

.about-title {
    font-size: 40px;
    font-weight: 800;
}

.about-subtitle {
    color: #64748b;
}

.founder-img {
    width: 220px;
}

.faculty-card {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.faculty-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

.topper-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.brand-red {
    color: #e11d2e;
}

/* HERO */

.about-hero {
    padding: 80px 0;
    background: #f8fafc;
}

.about-title {
    font-size: 40px;
    font-weight: 800;
}

.about-subtitle {
    color: #64748b;
}


/* COUNTERS */

.success-counter-section {
    background: #e11d2e;
    color: white;
    padding: 80px 0;
}

.counter {
    font-size: 42px;
    font-weight: 800;
}

.counter-box p {
    margin-top: 5px;
}


/* FOUNDER */

.founder-section {
    padding: 80px 0;
    background: #fff;
}

.founder-img {
    width: 200px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* FACULTY */

.faculty-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faculty-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.faculty-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}


/* TOPPERS */

.toppers-section {
    padding: 80px 0;
}

.topper-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}


/* TESTIMONIALS */

.testimonial-section {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


/* ADMISSION */

.admission-banner {
    background: #e11d2e;
    color: white;
    padding: 80px 0;
}

.btn-admission {
    background: white;
    color: #e11d2e;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}


/* GALLERY */

.gallery-section {
    padding: 80px 0;
}

.gallery-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}


/* MAP */

.map-section {
    padding: 80px 0;
    background: #f8fafc;
}
/* ================= COUNTER SECTION ================= */

.success-counter-section {
    padding: 80px 0;
    background: #f8fafc;
}


/* CARD */

.counter-card {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    border-left: 5px solid #e11d2e;
}

    .counter-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }


/* ICON */

.counter-icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
    background: #fff3f3;
    color: #e11d2e;
}


/* NUMBER */

.counter {
    font-size: 40px;
    font-weight: 800;
    color: #e11d2e;
    margin-bottom: 6px;
}


/* TEXT */

.counter-card p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}


/* MOBILE */

@media(max-width:768px) {

    .counter {
        font-size: 32px;
    }

    .counter-card {
        padding: 25px;
    }
}
/* ================= COUNTER SECTION ================= */

.success-counter-section {
    padding: 80px 0;
    background: #f8fafc;
}


/* CARD */

.counter-card {
    background: var(--brand-yellow-soft);
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    border-left: 6px solid #e11d2e;
}


    /* HOVER */

    .counter-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }


/* ICON */

.counter-icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
    background: white;
    color: #e11d2e;
}


/* NUMBER */

.counter {
    font-size: 40px;
    font-weight: 800;
    color: #e11d2e;
    margin-bottom: 6px;
}


/* TEXT */

.counter-card p {
    font-size: 15px;
    color: #374151;
    margin: 0;
}


/* MOBILE */

@media(max-width:768px) {

    .counter {
        font-size: 32px;
    }

    .counter-card {
        padding: 25px;
    }
}
.timeline-section {
    padding: 90px 0;
    background: #f8fafc;
}

.timeline {
    position: relative;
    margin: auto;
    max-width: 900px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        width: 3px;
        height: 100%;
        background: #e11d2e;
    }

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    background: #e11d2e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 40%;
}
.awards-section {
    padding: 90px 0;
    background: #f8fafc;
}

.award-card {
    height: 100%;
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #e11d2e;
}

.award-icon {
    font-size: 40px;
    color: #e11d2e;
    margin-bottom: 15px;
}
.result-wall-section {
    padding: 90px 0;
    background: #fff;
}

.result-card {
    background: var(--brand-yellow-soft);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
}

    .result-card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

.result-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e11d2e;
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.timeline-section {
    padding: 90px 0;
    background: #f8fafc;
}

.timeline {
    position: relative;
    margin: auto;
    max-width: 900px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        width: 3px;
        height: 100%;
        background: #e11d2e;
    }

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    background: #e11d2e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 100%;
}
/* =================================
   HERO SLIDER
================================= */

.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}


/* SLIDE */

.hero-slide {
    height: 620px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}


/* OVERLAY */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}


/* CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}


/* BADGE */

.hero-badge {
    background: var(--brand-yellow-soft);
    color: var(--brand-red);
    font-weight: 600;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 20px;
}


/* TITLE */

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}


/* BRAND TEXT */

.brand-text {
    color: var(--brand-yellow);
}


/* SUBTITLE */

/*.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 25px;
    max-width: 520px;
}*/


/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


    /* PRIMARY BUTTON */

    .hero-buttons .btn-primary {
        background: var(--brand-red);
        border: none;
        font-weight: 600;
        padding: 12px 26px;
        border-radius: 30px;
    }

        .hero-buttons .btn-primary:hover {
            background: #b91c1c;
        }


    /* OUTLINE BUTTON */

    .hero-buttons .btn-outline-light {
        border: 2px solid white;
        font-weight: 600;
        padding: 12px 26px;
        border-radius: 30px;
    }

        .hero-buttons .btn-outline-light:hover {
            background: white;
            color: var(--brand-red);
        }


/* CAROUSEL CONTROLS */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 60%;
    filter: brightness(100);
}


/* INDICATORS */

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: 0.6;
}

.carousel-indicators .active {
    background: var(--brand-red);
    opacity: 1;
}


/* =================================
   MOBILE
================================= */

@media(max-width:992px) {

    .hero-slide {
        height: 520px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}


@media(max-width:576px) {

    .hero-slide {
        height: 480px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 28px;
    }
}
/* HERO */

.class-hero-section {
    padding: 90px 0;
    background: #f8fafc;
    text-align: center;
}

.class-badge {
    background: var(--brand-yellow-soft);
    color: var(--brand-red);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
}

.class-title {
    font-size: 42px;
    font-weight: 800;
    margin-top: 10px;
}

.class-subtitle {
    color: #64748b;
    font-size: 18px;
    margin-top: 10px;
}


/* DETAILS */

.class-details-section {
    padding: 90px 0;
}

.class-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .class-features li {
        margin-bottom: 10px;
        color: #475569;
    }

    .class-features i {
        color: var(--brand-red);
        margin-right: 8px;
    }

.btn-class-enroll {
    background: var(--brand-red);
    color: white;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.class-image {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}


/* SUBJECTS */

.class-subject-section {
    padding: 90px 0;
    background: #ffffff;
}

.subject-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 5px solid var(--brand-red);
}

.subject-icon {
    font-size: 36px;
    color: var(--brand-red);
    margin-bottom: 10px;
}


/* FEATURES */

.class-feature-section {
    padding: 80px 0;
    background: #f8fafc;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .feature-box i {
        font-size: 30px;
        color: var(--brand-red);
    }

    .feature-box h6 {
        margin-top: 10px;
        font-weight: 600;
    }


/* CTA */

.class-cta-section {
    padding: 100px 0;
    background: var(--brand-red);
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
}

.cta-subtitle {
    margin: 10px 0 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call {
    background: white;
    color: var(--brand-red);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-whatsapp {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

    .btn-whatsapp:hover {
        background: white;
        color: var(--brand-red);
    }
/* ================= PRIVACY POLICY ================= */

.privacy-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* HEADER */

.privacy-header {
    margin-bottom: 40px;
}

.privacy-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--brand-red);
}

.privacy-subtitle {
    color: #64748b;
    font-size: 16px;
}

/* CARD */

.privacy-card {
    background: white;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-left: 6px solid var(--brand-red);
}

/* ITEM */

.privacy-item {
    margin-bottom: 30px;
}

    .privacy-item h5 {
        font-weight: 700;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

/* ICON */

.privacy-icon {
    color: var(--brand-red);
    font-size: 20px;
}

/* LIST */

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .privacy-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        color: #475569;
    }

    .privacy-list i {
        color: var(--brand-red);
    }

/* MOBILE */

@media(max-width:768px) {

    .privacy-card {
        padding: 30px;
    }

    .privacy-title {
        font-size: 30px;
    }
}
/* ================= CONTACT PAGE ================= */

.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
}

.contact-subtitle {
    color: #64748b;
}

/* CARDS */

.contact-info-card,
.contact-form-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-left: 6px solid var(--brand-red);
    height: 100%;
}

.contact-heading {
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .contact-heading i {
        color: var(--brand-red);
    }

/* TEXT */

.contact-text {
    color: #475569;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

    .contact-item i {
        color: var(--brand-red);
    }

    .contact-item a {
        color: #0f172a;
        text-decoration: none;
        font-weight: 600;
    }

/* HOURS */

.contact-hours {
    margin-top: 20px;
}

    .contact-hours h6 {
        font-weight: 700;
    }

/* ACTION BUTTONS */

.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-call {
    background: var(--brand-red);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

    .btn-call:hover {
        background: #b91c1c;
        color: white;
    }

.btn-whatsapp {
    border: 2px solid var(--brand-red);
    /*    color: var(--brand-red);*/
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    background: var(--brand-red);
}

    .btn-whatsapp:hover {
        background: #b91c1c;
       
        color: white;
    }

/* FORM */

.btn-submit {
    width: 100%;
    background: var(--brand-red);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
}

    .btn-submit:hover {
        background: #b91c1c;
    }

/* MAP */

.map-section {
    padding-bottom: 80px;
}

.map-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--brand-yellow-soft);
}

    .map-card iframe {
        width: 100%;
        height: 380px;
        border: 0;
    }

/* MOBILE */

@media(max-width:768px) {

    .contact-title {
        font-size: 30px;
    }

    .contact-actions {
        flex-direction: column;
    }
}
/* ================= WHATSAPP FLOAT ================= */
/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: white;
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border: 3px solid var(--brand-yellow-soft);
    z-index: 9999;
    transition: all .25s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
        color: white;
    }
/* ================= ENQUIRY MODAL ================= */

.enquiry-modal {
    border-radius: 20px;
    border-left: 6px solid var(--brand-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


    /* HEADER */

    .enquiry-modal .modal-header {
        background: var(--brand-yellow-soft);
        border-bottom: none;
    }

    .enquiry-modal .modal-title {
        font-weight: 700;
        color: var(--brand-red);
    }


/* BUTTON */

.btn-submit-enquiry {
    width: 100%;
    background: var(--brand-red);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    transition: .25s;
}

    .btn-submit-enquiry:hover {
        background: #b91c1c;
        color: white;
    }


/* INPUT */

.enquiry-modal .form-control,
.enquiry-modal .form-select {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

    .enquiry-modal .form-control:focus,
    .enquiry-modal .form-select:focus {
        border-color: var(--brand-red);
        box-shadow: 0 0 0 .15rem rgba(225,29,46,.15);
    }
/* ================= ENQUIRY FLOAT ================= */

.enquiry-float {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-red);
    color: white;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: .25s;
}

    .enquiry-float:hover {
        background: #b91c1c;
        transform: scale(1.08);
        color: white;
    }

/* Ensure the timeline container acts as a flex row */
.timeline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    padding: 20px 0;
}

/* Give each item a fixed or proportional width */
.timeline-item {
    flex: 1;
    min-width: 200px; /* Ensures they don't get too squished */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Adjust spacing for the year */
.timeline-year {
    margin-bottom: 15px;
    font-weight: bold;
    background: #f8f9fa; /* Optional: adds a highlight to the year */
    padding: 5px 10px;
    border-radius: 5px;
}
.awards-parent {
    display: flex;
    align-items: stretch; /* This forces all children to match the height of the tallest one */
}


.timeline-section {
    background: #f8fafc;
}

/* Horizontal Timeline */
.horizontal-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 40px;
}

/* Center Line */
.timeline-track {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #dc3545, #ff6b6b);
    border-radius: 10px;
    z-index: 1;
}

/* Each Item */
.timeline-item {
    position: relative;
    flex: 1;
    min-width: 220px;
    text-align: center;
    z-index: 2;
}

/* Year */
.timeline-year {
    display: inline-block;
    background:var(--brand-red);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(13,110,253,0.25);
}

/* Dot */
.timeline-dot {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 5px solid #dc3545; /* Red */
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    top: -2px;
    z-index: 3;
    box-shadow: 0 0 0 6px rgba(220,53,69,0.15);
}

/* Content Box */
.timeline-content {
    background: #fff;
    margin-top: 30px;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    min-height: 220px;
}

    .timeline-content:hover {
        transform: translateY(-8px);
    }

    .timeline-content h5 {
        font-weight: 700;
        margin-bottom: 12px;
        color: #0d1b2a;
    }

    .timeline-content p {
        color: #6c757d;
        font-size: 15px;
        line-height: 1.7;
    }

/* Mobile Responsive */
@media(max - width:991px) {

    .horizontal-timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-track {
        display: none;
    }

    .timeline-item {
        width: 100%;
        max-width: 500px;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-content {
        margin-top: 20px;
    }
}

.result-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s;
}

    .result-card:hover {
        transform: translateY(-8px);
    }

    .result-card img {
        width: 100%;
        height: 260px; /* Reduced image height */
        object-fit: cover;
        border-radius: 15px 15px 0 0;
    }

.result-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffb400;
    color: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.result-card h6 {
    margin-top: 18px;
    font-weight: 700;
    font-size: 20px;
}

.result-card p {
    color: #666;
    margin: 0;
}

.owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav .owl-next {
    right: -20px;
}

.owl-nav span {
    font-size: 28px;
    line-height: 35px;
    color: #000;
}