/* Import from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────── */

:root {
    --bit-red: #C80F2E;
    --bit-dark: #a80000;
    --bit-gold: #f5c518;
    --bit-light: #fff5f5;
    --bit-text: #1a1a1a;
    --font-sans: 'Lexend', sans-serif;
    --font-serif: 'Lora', serif;
    --radius-lg: 16px;
    --radius-pill: 40px;
    --shadow-sm: 0 2px 12px rgba(204, 0, 0, .10);
    --shadow-md: 0 8px 32px rgba(204, 0, 0, .18);
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
    --color-red-dark: #C80F2E;
    --color-red-light: #FF3759;
    --color-yellow: #FEC844;
    --color-yellow-alt: #FFE59E;
    /* lighter accent if needed */
    --color-bg: #FEC844;

    --btn-radius: 50px;
    /* pill shape */
    --btn-padding-l: 16px;
    --btn-padding-r: 5px;
    /* tight right — circle nearly flush with edge */
    --btn-height: 38px;
    --btn-font-size: 16px;
    --shadow-default: 3px 3px 3px rgba(0, 0, 0, 0.25);
    --red: #c0111f;
    --red-dark: #9b0d18;
    --gold: #f5c518;
    --white: #ffffff;
    --card-radius: 18px;
    --flip-speed: 0.65s;

    --yellow: #F9C228;
    --red-dot: #E03A2F;
    --dark-overlay: rgba(15, 15, 30, 0.62);
    --hover-overlay: rgba(15, 15, 30, 0.72);
}


h1,
h2,
h3 {
    font-family: var(--font-serif);
    /* Lora for headings */
}


/* ─── BASE ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--bit-text);
    overflow-x: hidden;
    background: #fff;
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

@keyframes heroPulse {

    0%,
    100% {
        opacity: .55
    }

    50% {
        opacity: .75
    }
}

@keyframes spin360 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-down {
    animation: fadeDown .65s ease both;
}

.animate-fade-up {
    animation: fadeUp .75s ease both;
}

.animate-delay-1 {
    animation-delay: .15s;
}

.animate-delay-2 {
    animation-delay: .30s;
}

.animate-delay-3 {
    animation-delay: .45s;
}

.animate-delay-4 {
    animation-delay: .60s;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.bit-navbar {
    background: var(--bit-red);
    height: 77px;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .18);
}

.bit-navbar .container-fluid {
    height: 100%;
    padding: 0 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .5s ease;
}

.navbar-brand:hover .brand-circle {
    animation: spin360 .6s ease;
}

.brand-circle span {
    color: #fff;
    font-size: 6.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    text-align: center;
    line-height: 1.25;
}

.brand-name {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
}

.brand-sub {
    color: rgba(255, 255, 255, .8);
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -1px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link-top {
    color: #fff !important;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 2px;
    position: relative;
}

.nav-link-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bit-gold);
    transition: width var(--transition);
}

.nav-link-top:hover::after {
    width: 0;
}


.scroll-down-arrow {
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.75rem;
    color: #fff;
    text-decoration: none;
    animation: bounce 1.6s infinite;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.scroll-down-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}



/* Hamburger */
.ham-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: transform .2s;
}

.ham-btn:hover {
    transform: scale(1.1);
}

.ham-btn span {
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    transform-origin: center;
}

.ham-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ham-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ham-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MEGA MENU ─────────────────────────────────────────── */
.mega-menu {
    position: fixed;
    top: -11px;
    left: 0;
    width: 100%;
    background: var(--bit-red);
    z-index: 9999;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .45s cubic-bezier(.4, 0, .2, 1), opacity .35s ease;
    opacity: 0;
    pointer-events: none;
}

.mega-menu.open {
    clip-path: inset(0 0 0% 0);
    opacity: 1;
    pointer-events: all;
}

.mega-inner {
    padding: 1rem 0.5rem 0.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

/* Mega menu top row 1: logo + nav actions + close */
.mega-top-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.1rem;
    margin-bottom: 0;
}

.mega-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.mega-brand-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .5s ease;
}

.mega-brand:hover .mega-brand-circle {
    animation: spin360 .6s ease;
}

.mega-brand-circle span {
    color: #fff;
    font-size: 6.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    text-align: center;
    line-height: 1.25;
}

.mega-brand-name {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
}

.mega-brand-sub {
    color: rgba(255, 255, 255, .7);
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -1px;
}

.mega-top-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mega-top-right a {
    color: #fff;
    text-decoration: none;
    /* font-size: 13px; */
    /* font-weight: 700; */
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
}

.mega-top-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bit-gold);
    transition: width .3s;
}

.mega-top-right a:hover::after {
    width: 100%;
}

.mega-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), color .2s;
    margin-left: .5rem;
    padding: 0 4px;
}

.mega-close-btn:hover {
    transform: rotate(90deg);
    color: var(--bit-gold);
}

/* Mega menu top row 2: secondary italic links */
.mega-top-row2 {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1rem 0 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    margin-bottom: 1.5rem;
    justify-content: center;
}

.mega-top-row2 a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 20px;
    font-style: italic;
    opacity: 0.78;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-block;
    position: relative;
    font-family: 'Lora';
}

.mega-top-row2 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bit-gold);
    transition: width .3s;
}

.mega-top-row2 a:hover {
    opacity: 1;
    transform: translateX(3px);
}

.mega-top-row2 a:hover::after {
    width: 100%;
}

.mega-col-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.mega-col-title .dot {
    color: var(--bit-gold);
}

.mega-col-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .2);
    margin-bottom: 1rem;
}

.mega-col a {
    display: block;
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s, transform .2s, padding-left .2s;
}

.mega-col a:hover {
    color: var(--bit-gold);
    transform: translateX(6px);
    padding-left: 4px;
}

.mega-col {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .4s ease, transform .4s ease;
}

.liner-menu-in {
    border-right: 1px solid #fff;
    margin-right: 20px;
    width: 23%;
}




.mega-menu.open .mega-col:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .08s;
}

.mega-menu.open .mega-col:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .16s;
}

.mega-menu.open .mega-col:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .24s;
}

.mega-menu.open .mega-col:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .32s;
}

.mega-seal {
    text-align: center;
    margin-top: 2rem;
    opacity: .1;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 6px;
}

/* ─── VIDEO HERO BANNER (container-fluid) ───────────────── */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
}

/* Background video – covers full banner */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    z-index: 0;
}

/* Gradient overlay on top of video */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(160, 0, 0, .5) 0%, rgba(0, 0, 0, .6) 100%);
}

/* Animated shimmer line at bottom of banner */
.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, var(--bit-gold), var(--bit-red), var(--bit-gold), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1rem;
}

.hero-sub {
    color: rgba(255, 255, 255, .92);
    font-size: 20px;
    font-family: var(--font-sans);
    font-weight: 500;
    margin-bottom: 6px;
}

.hero-title {
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 64px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
}

.hero-title .dot {
    color: var(--bit-gold);
}

/* Play button + Watch label */
.btn-watch {
    background: var(--bit-gold);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(245, 197, 24, .45);
    text-decoration: none;
}

.btn-watch:hover {
    background: #e0ad00;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 30px rgba(245, 197, 24, .6);
    color: #fff;
}

.btn-watch .icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: transform .3s, background .25s;
}

.btn-watch:hover .icon-circle {
    transform: scale(1.15);
    background: rgba(255, 255, 255, .42);
}

/* Mute / unmute button */
.video-mute-btn {
    position: absolute;
    bottom: 22px;
    right: 22px;
    z-index: 3;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background .25s, transform .2s;
}

.video-mute-btn:hover {
    background: rgba(204, 0, 0, .7);
    transform: scale(1.1);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll i {
    font-size: 18px;
    color: var(--bit-gold);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(7px)
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 440px;
    }

    .btn-watch {
        padding: 12px 26px;
        font-size: 14px;
    }
}

/* ─── HERO BANNER (container-fluid) ─────────────────────── */
/* .hero-banner {
    position: relative;
    width: 100%;
    min-height: 560px;
    background: url('https://images.unsplash.com/photo-1562774053-701939374585?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
} */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(180, 0, 0, .55) 0%, rgba(0, 0, 0, .55) 100%);
    animation: heroPulse 7s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 1rem;
}

.hero-sub {
    color: rgba(255, 255, 255, .9);
    font-size: 26px;
    font-family: var(--font-sans);
    font-weight: 500;
    margin-bottom: 6px;
}

.hero-title {
    color: #fff;
    font-family: "lora", sans-serif;
    font-size: clamp(36px, 4vw, 64px);
    font-style: italic;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 30px;
}

.hero-title .dot {
    color: var(--bit-gold);
}

.btn-watch {
    background: var(--bit-gold);
    color: #fff;
    border: none;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-style: italic;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(245, 197, 24, .4);
    text-decoration: none;
}

.btn-watch:hover {
    background: #e0ad00;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 30px rgba(245, 197, 24, .55);
    color: #fff;
}

.btn-watch .icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform .3s;
}

.btn-watch:hover .icon-circle {
    transform: translateX(5px);
}

/* ─── TAGLINE BAND (container-fluid bg / container content) */
.tagline-band {
    background: var(--bit-red);
    border-radius: 150px;
    z-index: 99;
    /* display: block; */
    position: relative;
}

.tagline-curve {
    border-radius: 32px 32px 0 0;
    margin-top: -120px;
    position: relative;
    z-index: 2;
    padding: 2.8rem 0 2.5rem;
}

.tagline-main {
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.tagline-bar {
    width: 0;
    height: 3px;
    background: var(--bit-gold);
    margin: 0 auto 1.5rem;
    animation: expandLine .8s 1.2s ease forwards;
}

.tagline-quote {
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    font-style: italic;
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto 10px;
}

.tagline-author {
    color: rgba(255, 255, 255, .55);
    font-size: 10.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.shap-yollow {
    border-radius: 63px;
    border: 3px solid #FFC107;
    padding: 4%;
    margin-bottom: 32px;
}


/* ─── STATS STRIP (container) ───────────────────────────── */
.stats-strip {
    background: #fff;
    padding: 3.5rem 0;
    border-bottom: 1px solid #f0e0e0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid #f0e0e0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--bit-red);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─── WHY BIT FEATURES (container) ──────────────────────── */
.features-section {
    background: var(--bit-light);
    padding: 4.5rem 0;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--bit-red);
    margin-bottom: .4rem;
}

.section-sub {
    color: #888;
    font-size: 15px;
    margin-bottom: 2.5rem;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 4px solid var(--bit-red);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 38px;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--bit-text);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

/* ─── PROGRAMMES (container) ─────────────────────────────── */
.programmes-section {
    background: #fff;
    padding: 4.5rem 0;
}

.prog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.prog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.prog-head {
    background: var(--bit-red);
    padding: 1.5rem;
}

.prog-head h4 {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 4px;
}

.prog-head span {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.prog-body {
    padding: 1.5rem;
    flex: 1;
}

.prog-body ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.prog-body ul li {
    font-size: 14px;
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid #f5f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prog-body ul li:last-child {
    border-bottom: none;
}

.prog-body ul li::before {
    content: '✓';
    color: var(--bit-red);
    font-weight: 700;
    font-size: 13px;
}

/* ─── LIFE AT BIT (container-fluid bg + container content) ── */
.life-section {
    background: var(--bit-red);
    padding: 4.5rem 0;
}

.life-section .section-heading {
    color: #fff;
}

.life-section .section-sub {
    color: rgba(255, 255, 255, .65);
}

.life-card {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: background var(--transition), transform var(--transition);
}

.life-card:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-5px);
}

.life-card i {
    font-size: 32px;
    color: var(--bit-gold);
    margin-bottom: .8rem;
    display: block;
}

.life-card h5 {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 17px;
    margin-bottom: 6px;
}

.life-card p {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ─── TESTIMONIAL (container) ───────────────────────────── */
.testimonial-section {
    background: var(--bit-light);
    padding: 4.5rem 0;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--bit-red);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bit-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-serif);
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--bit-text);
}

.author-role {
    font-size: 12px;
    color: #999;
}

/* ─── CTA BAND (container-fluid) ────────────────────────── */
.cta-band {
    background: var(--bit-red);
    padding: 5rem 0;
    text-align: center;
}

.cta-band h2 {
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-band p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    margin-bottom: 2rem;
}

.btn-cta-gold {
    background: var(--bit-gold);
    color: #7a4e00;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 44px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(245, 197, 24, .35);
    text-decoration: none;
    display: inline-block;
}

.btn-cta-gold:hover {
    background: #e0ad00;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 30px rgba(245, 197, 24, .5);
    color: #5a3800;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255, 255, 255, .6);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transform: translateY(-2px);
}



/* ── Base button ──────────────────────────────── */
.btn-style-2 {
    /* Layout */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: var(--btn-height);
    padding: 0 var(--btn-padding-r) 0 var(--btn-padding-l);
    border-radius: var(--btn-radius);

    /* Colour – rest state: solid dark red fill, no border */
    background-color: var(--color-red-dark);
    border: 3px solid transparent;
    box-shadow: var(--shadow-default);

    /* Typography */
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 600;
    font-size: var(--btn-font-size);
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;

    /* Transition – mirrors Figma "Smart Animate" */
    transition:
        background-color 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.18s ease;

    /* Slide-in animation on load */
    animation: slideInLeft 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* ── Arrow icon — 24px circle container ────────── */
.btn-style-2 .arrow-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* Rest: circle is FF3759 (light red) */
    background-color: var(--color-red-light);
    transition: background-color 0.28s ease;
}

/* Horizontal line — rest: C80F2E (dark red) */
.btn-style-2 .arrow-icon::before {
    content: '';
    position: absolute;
    /* nudge left so line+head read as one shape; head is 8px wide so line ends at right:8px */
    left: 4px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: var(--color-red-dark);
    border-radius: 1px 0 0 1px;
    /* flat on right so it butts flush against the triangle */
    transition: background 0.28s ease;
}

/* Triangle arrowhead — rest: C80F2E, butted flush against line */
.btn-style-2 .arrow-icon::after {
    content: '';
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--color-red-dark);
    transition: border-left-color 0.28s ease;
}

/* ── Hover: circle → C80F2E, arrow → white ──── */
.btn-style-2:hover .arrow-icon {
    background-color: var(--color-red-dark);
}

.btn-style-2:hover .arrow-icon::before {
    background: #fff;
}

.btn-style-2:hover .arrow-icon::after {
    border-left-color: #fff;
}

/* ── Hover state ──────────────────────────────── */
.btn-style-2:hover {
    background-color: var(--color-red-light);
    border-color: var(--color-red-dark);
    color: #fff;
    box-shadow: var(--shadow-default);
    transform: translateY(-1px);
}

.btn-style-2:active {
    transform: translateY(1px);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.jast-cent {
    justify-content: center;
}

/*  */
/* ── SECTION ── */
.glance-bit-section {
    background-color: var(--red);
    padding: 60px 40px;
    display: flex;
    align-items: center;
}

.glance-bit-section::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
    width: 100%;
    height: 100%;
    background-image: url('../images/bit_emblem.svg');
    background-size: auto;
    background-position: left;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

/* ── LEFT PANEL ── */
.glance-bit-left-panel {
    position: relative;
    z-index: 2;
}

.glance-bit-estd-badge {
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.glance-bit-heading {
    font-family: 'Lexend', serif;
    font-weight: 600;
    font-size: clamp(38px, 5vw, 49px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 6px;
}

.glance-bit-heading .glance-bit-dot {
    color: var(--gold);
}

.glance-bit-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.glance-bit-btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    text-decoration: none;
}

.glance-bit-btn-learn:hover {
    background: var(--gold);
    color: var(--red-dark);
    transform: translateX(4px);
}

.glance-bit-btn-learn .glance-bit-arrow {
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.glance-bit-btn-learn:hover .glance-bit-arrow {
    background: var(--red-dark);
}

.glance-bit-btn-learn .glance-bit-arrow svg {
    width: 12px;
    height: 12px;
    fill: var(--red);
    transition: fill 0.3s;
}

.glance-bit-btn-learn:hover .glance-bit-arrow svg {
    fill: var(--gold);
}

/* ── CARD GRID ── */
.glance-bit-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 235px);
    gap: 14px;
}

/* ── FLIP CARD ── */
.glance-bit-flip-card {
    perspective: 1000px;
    cursor: pointer;
}

.glance-bit-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform var(--flip-speed) cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.glance-bit-flip-card:hover .glance-bit-flip-card-inner {
    transform: rotateY(180deg);
}

.glance-bit-flip-card-front,
.glance-bit-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--card-radius);
    overflow: hidden;
}

/* ── FRONT FACE ── */
.glance-bit-flip-card-front {
    background: rgba(0, 0, 0, 0.35);
}

.glance-bit-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) saturate(0.8);
    transition: transform 0.6s ease;
}

.glance-bit-flip-card:hover .glance-bit-card-bg {
    transform: scale(1.05);
}

.glance-bit-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(160, 10, 20, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.glance-bit-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 22px;
    gap: 14px;
}

.glance-bit-card-icon {
    font-size: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.glance-bit-card-icon svg {
    width: 36px;
    height: 36px;
}

.glance-bit-card-text-wrap .glance-bit-card-number {
    font-family: 'Lora', serif;
    font-weight: 900;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--gold);
    line-height: 1;
    display: block;
}

.glance-bit-card-text-wrap .glance-bit-card-label {
    font-size: 16px;
    font-family: 'Lora', serif;
    /* font-weight: 700; */
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-top: 2px;
    display: block;
}

.glance-bit-card-text-wrap .glance-bit-card-title {
    font-size: 14px;
    font-family: 'Lora', serif;
    color: var(--white);
    line-height: 1.35;
    display: block;
}

/* ── BACK FACE ── */
.glance-bit-flip-card-back {
    background: linear-gradient(135deg, #8b0d16 0%, #c0111f 50%, #9b0d18 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 2px solid rgba(245, 197, 24, 0.3);
}

.glance-bit-flip-card-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(245, 197, 24, 0.08) 0%, transparent 60%);
    border-radius: var(--card-radius);
}

.glance-bit-back-icon {
    font-size: 32px;
    margin-bottom: 14px;
    opacity: 0.9;
}

.glance-bit-back-text {
    font-family: 'Lexend', sans-serif;
    /* font-weight: 700; */
    font-size: 14px;
    color: var(--white);
    text-align: center;
    line-height: 18px;
    position: relative;
    z-index: 1;
}

.glance-bit-back-text em {
    color: var(--gold);
    font-style: normal;
    /* font-weight: 800; */
}

.glance-bit-back-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto;
    border-radius: 2px;
}

/* ── BACKGROUND IMAGES ── */
.glance-bit-bg-campus {
    background-image: url('../images/Stat_1.webp');
}

.glance-bit-bg-basketball {
    background-image: url('../images/Stat_2.webp');
}

.glance-bit-bg-students {
    background-image: url('../images/Stat_3.webp');
}

.glance-bit-bg-classroom {
    background-image: url('../images/Stat_4.webp');
}

.glance-bit-bg-library {
    background-image: url('../images/Stat_5.webp');
}

.glance-bit-bg-building {
    background-image: url('../images/Stat_6.webp');
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .glance-bit-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 160px);
    }

    .glance-bit-heading {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .glance-bit-section {
        padding: 40px 20px;
    }

    .glance-bit-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 160px);
    }
}

@media (max-width: 480px) {
    .glance-bit-cards-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 140px);
        gap: 10px;
    }
}






















/* ─── FOOTER (container-fluid) ──────────────────────────── */
/* ── FOOTER ── */
.bit-footer {
    background-color: #b8112b;
    color: #fff;
    font-family: 'Lexend', sans-serif;
}

/* divider line under headings */
.footer-heading {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 6px;
    margin-bottom: 12px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
}

.bit-footer p,
.bit-footer address {
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    font-style: normal;
    margin-bottom: 0;
    font-weight: 500;
}

.bit-footer a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.bit-footer a:hover {
    color: #302e24;
}

/* Logo area */
.bit-logo img {
    height: 56px;
    width: auto;
}

.bit-logo-text {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    color: #fff;
}

.bit-logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* sub-label inside columns */
.sub-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 2px;
}

/* Contact icons */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.78rem;
    color: #fff;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#a90329+0,8f0222+44,6d0019+100;Brown+Red+3D */
    background: radial-gradient(ellipse at center, rgba(169, 3, 41, 1) 0%, rgba(143, 2, 34, 1) 44%, rgba(109, 0, 25, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

/* Social icons */
.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.social-icon:hover {
    opacity: 0.8;
    transform: scale(1.1);
    color: #fff;
}

.si-fb {
    background: #1877f2;
}

.si-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.si-li {
    background: #0a66c2;
}

.si-wa {
    background: #25d366;
}

/* Quick links */
.quick-links li {
    margin-bottom: 6px;
}

.quick-links li a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Apply Now button */
.btn-apply {
    background: #e8b84b;
    color: #7a2100;
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 50px;
    padding: 9px 24px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
}

.btn-apply:hover {
    background: #f5c842;
    color: #7a2100;
    transform: scale(1.03);
}

.btn-apply .arrow-circle {
    width: 22px;
    height: 22px;
    background: #b8112b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8b84b;
    font-size: 0.65rem;
}

/* Find Us button */
.btn-findus {
    background: #e8b84b;
    color: #7a2100;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 50px;
    padding: 8px 18px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

.btn-findus:hover {
    background: #f5c842;
    color: #7a2100;
}

/* Campus photo */
.campus-photo {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 4px;
}

.photo-wrapper {
    position: relative;
    height: 100%;
}

.find-us-overlay {
    position: absolute;
    bottom: 14px;
    right: 14px;
}

/* Vertical divider between main cols */
.v-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

/* Bottom copyright bar */
.footer-bottom {
    background-color: #9a0e22;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
}

/* ─── SCROLL TO TOP ─────────────────────────────────────── */
#scrollTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bit-red);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(204, 0, 0, .35);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s;
}

#scrollTop.show {
    opacity: 1;
    transform: translateY(0);
}

#scrollTop:hover {
    background: var(--bit-dark);
}

/* ─── MOBILE MEGA MENU ───────────────────────────────────── */
@media (max-width: 991px) {

    /* Make menu scrollable full height */
    .mega-menu {
        overflow-y: auto;
        max-height: calc(100vh - 68px);
    }

    .mega-inner {
        padding: 1.25rem 1.2rem 2rem;
    }

    /* Row 1: hide desktop nav links, keep logo + close only */
    .mega-top-row1 {
        flex-wrap: wrap;
        gap: .75rem;
        padding-bottom: .9rem;
    }

    .mega-top-right {
        gap: 1rem;
    }

    .mega-top-right a {
        display: block;
    }

    /* hide TOUR INQUIRE etc on mobile */
    .mega-close-btn {
        margin-left: 0;
        font-size: 26px;
    }

    /* Row 2: wrap secondary links */
    .mega-top-row2 {
        flex-wrap: wrap;
        gap: .6rem 1.4rem;
        padding: .9rem 0 1rem;
    }

    .mega-top-row2 a {
        font-size: 14px;
    }

    /* Accordion: each mega-col becomes a collapsible block */
    .mega-col {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        padding: 0 0 0 0;
        margin-right: 0;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    /* Clickable heading row */
    .mega-col-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 17px;
        padding: 1rem 0;
        margin-bottom: 0;
        cursor: pointer;
        user-select: none;
    }

    .mega-col-title::after {
        content: '+';
        color: var(--bit-gold);
        font-size: 22px;
        font-weight: 300;
        line-height: 1;
        transition: transform .3s ease;
    }

    .mega-col-title.expanded::after {
        transform: rotate(45deg);
    }

    /* Hide divider on mobile */
    .mega-col-divider {
        display: none;
    }

    /* Links panel: hidden by default, slides open */
    .mega-col-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
    }

    .mega-col-links.open {
        max-height: 500px;
    }

    .mega-col-links a {
        padding: .5rem 0 .5rem .5rem;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .mega-col-links a:last-child {
        border-bottom: none;
        margin-bottom: .75rem;
    }

    /* Hide seal on mobile */
    .mega-seal {
        display: none;
    }

    /* Mobile nav: show Apply/Login in hamburger area */
    .nav-actions .nav-link-top {
        display: none !important;
    }
}

/* ─── RESPONSIVE TWEAKS ─────────────────────────────────── */
@media (max-width: 768px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #f0e0e0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .hero-banner {
        min-height: 420px;
    }

    .mega-brand-name {
        font-size: 22px;
    }

    .mega-brand-sub {
        font-size: 7px;
    }

    .find-us-frame {
        width: clamp(67px, 68.5vw, 55vw);
    }
}

.glance-bit-card-icon svg {
    width: 68px;
    height: 68px;
    fill: #e5e4e3;
}

.glance-bit-flip-card-back svg {
    width: 151.67px;
    height: 151.67px;
    fill: #ffffff;
    opacity: 0.10;
    position: absolute;
}

/* ── Section wrapper ── */
.schools-section {

    padding: 52px 24px 60px;
}

.bbgg-ylo {
    background: var(--yellow);
    /* width: 74%; */
    /* position: unset; */
    /* display: flex; */
    /* justify-content: center; */
    text-align: center;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid #c80f2e;
}

/* ── Header ── */
.schools-section .eyebrow {
    font-family: 'lora', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: .02em;
}

.schools-section h2 {
    font-family: 'Lexend', serif;
    font-size: clamp(2rem, 4vw, 4vw);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
}

.schools-section h2 .dot {
    color: var(--red-dot);
}

.schools-section .sub {
    display: inline-block;
    border: 1px solid #fff;
    color: #555;
    font-size: .85rem;
    font-weight: 600;
    padding: 4px 18px;
    border-radius: 20px;
    margin-top: 8px;
    border-radius: 1px solid #fff;
}

/* ── Card grid ── */
.school-cards {
    margin-top: 36px;
    gap: 20px;
}

/* ── Individual card ── */
.school-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    flex: 1 1 0;
    min-width: 240px;
    aspect-ratio: 3 / 3.6;
}

/* Real photo */
.school-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.25, .46, .45, .94);
}

.school-card:hover img {
    transform: scale(1.06);
}

/* Default label at bottom */
.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, transparent 100%);
    transition: opacity .35s ease;
}

.card-label span {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.card-label span .dot {
    color: var(--red-dot);
}

/* Hover overlay (full dark + rich text like image 2) */
.card-hover {
    position: absolute;
    inset: 0;
    background: var(--hover-overlay);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 22px 28px;
    opacity: 0;
    transition: opacity .38s ease;
}

.school-card:hover .card-hover {
    opacity: 1;
}

.school-card:hover .card-label {
    opacity: 0;
}

.card-hover .hover-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 4px;
    line-height: 1.2;
}

.card-hover .hover-title .dot {
    color: var(--red-dot);
}

.card-hover .hover-ages {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.card-hover .hover-desc {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .school-cards {
        flex-direction: column;
        align-items: center;
    }

    .school-card {
        width: 100%;
        max-width: 420px;
        aspect-ratio: 4 / 4;
    }

    .card-frame .club-card {
        width: 291px;
        height: 331px;
    }

    .bit-glass-card {
        min-width: 488px !important;
    }

    .tagline-band {
        border-radius: 38px;
    }

    .leadership-left {
        text-align: center;
    }

    .btn-meet-team {
        margin: 12px auto;
    }

    .shap-yollow {
        border-radius: 20px;
    }
}

/* Tablet and below */
@media (max-width: 768px) {
    .d-flex.gap-3 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        padding: 1.5rem 1rem;
    }

    .btn-youlow-2,
    .btn-style-33 {
        flex: 1 1 auto;
        justify-content: center;
        padding: 10px 18px;
        font-size: 14px;
    }


    .inner__titel {
        font-size: 30px !important;

    }

    .inner__titel__sub {
        font-weight: 300 !important;
        font-size: 23px !important;

    }

    .leadership-section .leader-card {
        height: auto !important;
    }


}

/* Mobile - stack vertically */
@media (max-width: 480px) {
    .d-flex.gap-3 {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 1rem;
        gap: 0.5rem;
    }

    .btn-youlow-2,
    .btn-style-33 {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
        font-size: 14px;
    }

    .all-carf-bb {
        display: inline-block !important;
    }
}


/* ── Card ── */
.school-card {
    width: 412px;
    height: 412px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: box-shadow 0.4s ease;
}

/* Background image */
.school-card .card-img {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    transition: filter 0.4s ease;
}

/* Dark overlay on hover */
.school-card .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.school-card:hover .card-overlay {
    opacity: 1;
}

/* Hover shadow */
.school-card:hover {
    box-shadow: 0px 0px 16px 4px rgba(200, 15, 46, 0.50);
}

/* ── Red top bar ── */
.school-card .card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 11px;
    background: #C80F2E;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 3;
}

.school-card:hover .card-top-bar {
    transform: translateY(0);
}

/* ══════════════
     REST: glass badge
  ══════════════ */
.card-badge {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 288px;
    height: 112px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(-45deg,
            rgba(255, 255, 255, 0.28) 0%,
            rgba(255, 255, 255, 0.10) 100%);
    backdrop-filter: blur(14px) saturate(1.5) brightness(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.5) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.school-card:hover .card-badge {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
    pointer-events: none;
}

.school-card .badge-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.025em;
    color: #FFFFFF;
}

.badge-text .period {
    color: #FFC844;
}

/* ══════════════
     HOVER: content
  ══════════════ */
.school-card .card-hover-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 151px;
    /* 11px bar + 140px gap */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    gap: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
    pointer-events: none;
}

.school-card:hover .card-hover-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Title */
.school-card .hover-title {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 60px;
    letter-spacing: -0.025em;
    color: #FFC844;
    white-space: nowrap;
}

.school-card .hover-title .period {
    color: #C80F2E;
}

/* Ages */
.school-card .hover-ages {
    width: 100%;
    text-align: center;
    font-family: 'Lora', serif;
    /* font-weight: 600; */
    font-style: italic;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.040em;
    color: #FFFFFF;
    margin-top: 4px;
}

/* Gap */
.school-card .hover-gap {
    height: 40px;
    flex-shrink: 0;
}

/* Body */
.school-card .hover-body {
    width: 288px;
    text-align: center;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.025em;
    color: #FFFFFF;
}




/* laned */



/* ── Section ── */
.leadership-section {
    background: #fff;
    padding: 80px 0 90px;
    overflow: hidden;
}

/* ── Left Column ── */
.leadership-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 4px;
    top: -76px;
    position: relative;
    border: 0;
}

.leadership-heading {
    font-family: 'Lexend', serif;
    font-size: clamp(2rem, 4vw, 3.5em);
    font-weight: 600;
    color: #C80F2E;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.leadership-heading .dot {
    color: #FFC844;
}

.leadership-desc {
    font-weight: 300;
    color: #666;
    line-height: 1.75;
    margin-bottom: 28px;
}

.leadership-left .carousel-arrows {
    display: flex;
    gap: 10px;
    right: -253px;
    position: relative;
}


/* Meet Our Team button */
.btn-meet-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 8px 20px;
    border: 2px solid #C80F2E;
    border-radius: 50px;
    background: transparent;
    color: #C80F2E;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    margin-bottom: 48px;
    transition: background 0.25s, color 0.25s;
}

.btn-meet-team:hover {
    background: #C80F2E;
    color: #fff;
}

.btn-meet-team .icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #C80F2E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.btn-meet-team:hover .icon-wrap {
    background: #fff;
}

.btn-meet-team .icon-wrap svg {
    fill: #fff;
    width: 11px;
    height: 11px;
}

.btn-meet-team:hover .icon-wrap svg {
    fill: #C80F2E;
}

/* Arrow buttons */
.carousel-arrows {
    display: flex;
    gap: 10px;
}

.btn-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FF3759;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(200, 15, 46, .35);
    transition: background .22s ease, transform .15s ease;
    padding: 0;
}

.btn-arrow:hover {
    background: #C80F2E;
    transform: scale(1.08);
}

.btn-arrow:active {
    transform: scale(.95);
}

.btn-arrow svg {
    width: 13px;
    height: 13px;
    fill: #fff;
    display: block;
}

/* ── Right Column / Carousel ── */
.carousel-col {
    overflow: visible;
}

.carousel-viewport {
    overflow: hidden;
    padding: 8px 0 16px;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Leader Card ── */
.leader-card {
    flex: 0 0 312px;
    height: 505px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 2px solid #C8A84B;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .13);
    transition: transform .3s ease, box-shadow .3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.leader-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.leader-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .10) 100%);
    pointer-events: none;
}

/* Badge */
.leader-badge {
    position: absolute;
    bottom: 14px;
    left: 10px;
    right: 10px;
    border-radius: 14px;
    padding: 15px 14px 13px;
    text-align: center;
    z-index: 2;
}

.badge-gold {
    background: #ffc844d4;
}

.badge-red {
    background: #c80f2ead;
}

.badge-name {
    font-family: 'Lexend', sans-serif;
    /* font-weight: 700; */
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.badge-gold .badge-name {
    color: #ffffff;
}

.badge-red .badge-name {
    color: #fff;
}

.badge-line {
    width: 40px;
    height: 1.5px;
    margin: 0 auto 8px;
}

.badge-gold .badge-line {
    background: rgba(0, 0, 0, .22);
}

.badge-red .badge-line {
    background: rgba(255, 255, 255, .55);
}

.badge-title {
    font-family: 'Lora', sans-serif;
    font-weight: 300;
    font-size: 21.5px;
    font-style: italic;
    line-height: 1.45;
}

.badge-gold .badge-title {
    color: #ffffff;
}

.badge-red .badge-title {
    color: rgba(255, 255, 255, .9);
}

/* ==================== */


/* heading wraps naturally inside the fixed card width */
.bit-heading {
    font-size: 45px;
    line-height: 62px;
    letter-spacing: -0.025em;
    margin: 0;
    display: block;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s forwards;
}

.bit-heading .life-at {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-style: italic;
    color: var(--yellow);
}

.bit-heading .bit-word {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    color: var(--yellow);
}

.bit-heading .bit-period {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
}

/* paragraph fills card width automatically */
.bit-paragraph {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
    width: 100%;
    opacity: 0;
    animation: blurFadeIn 0.8s ease 0.75s forwards;
}

/* divider fills card width automatically */
hr.bit-divider {
    width: 100%;
    height: 1px;
    background-color: var(--white) !important;
    border: none !important;
    border-top: none !important;
    opacity: 1 !important;
    margin: 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: expandLine 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s forwards;
}

@keyframes cardReveal {
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blurFadeIn {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(10px);
    }

    60% {
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* =================== */
:root {
    --yellow: #FFC844;
    --yellow-hover: #FED87C;
    --red: #C80F2E;
    --red-hover: #EE183C;
    --white: #ffffff;
}

.all-carf-bb {
    background: #C80F2E;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: right;
    font-family: 'Lexend', sans-serif;
}

/* ── Outer frame: 320×550, padding 10 all sides ── */
.card-frame {

    padding: 10px;
    display: flex;
    flex-direction: column;
    /* rest: content (card) at bottom */
    justify-content: flex-end;
    align-items: center;
}

/* ── Card: 300×504 ── */
.club-card {
    width: clamp(265px, 20vw, 306px);
    height: 443px;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    border: 1px solid #FFC884;
    box-shadow: inset 0 0 0 2px var(--yellow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 34px;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.45s ease;
}

.card-frame {
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease-in-out;
}

.card-frame:hover {
    margin-bottom: 30px;
}



/* BASE state — transition lives here for both directions */
.club-card .title-band,
.club-card .body-text {
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease-in-out;
    /* ✅ smooth IN and OUT */
}

/* HOVER state — only the value changes */
.card-frame:hover .club-card .title-band,
.card-frame:hover .club-card .body-text {
    margin-bottom: 30px;
}

/* photo background */
.club-card .bg-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: opacity 0.45s ease;
}

/* dark overlay 20% — disappears on hover */
.club-card .bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    z-index: 1;
    transition: opacity 0.45s ease;
}

.card-frame:hover .club-card .bg-overlay {
    opacity: 1;
}

/* all direct children of card above bg layers */
.club-card>*:not(.bg-photo):not(.bg-overlay) {
    position: relative;
    z-index: 2;
}


/* ── Red title banner ── */
.club-card .title-band {
    width: 300px;
    /* full bleed width */
    margin-left: -72px;
    /* cancel card padding */
    margin-right: -72px;
    height: 47px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;


}

.card-frame:hover .club-card .title-band {
    background: var(--red-hover);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.80);
}

.club-card .title-band span {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.025em;
    color: var(--white);
    line-height: 1;
}

/* ── White divider stroke ── */
.club-card .divider {
    width: 152px;
    height: 1px;
    background: var(--white);
    border: none;
    margin: 0;
    flex-shrink: 0;
}

/* ── Body text frame 244×108 hug ── */
.club-card .body-text {
    width: 244px;
    font-family: 'Lora', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.025em;
    color: var(--white);
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0;
    flex-shrink: 0;
    height: 70px;
}

/* ── Circle + triangle icon frame 45×45 ── */
.club-card .icon-frame {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: flex-end;
    /* bottom-center within frame */
    justify-content: center;
    flex-shrink: 0;
}

.club-card .icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.45s ease;
    flex-shrink: 0;
}

.card-frame:hover .club-card .icon-circle {
    background: var(--yellow-hover);
}

/* HOVER ON WRAPPER = ALL CARDS LIFT */
.all-carf-bb:hover .card-frame {
    transform: translateY(-16px);
}




/* equilateral triangle 15×15 pointing up */
.club-card .icon-circle .triangle {
    width: 0;
    height: 0;
    border-left: 7.5px solid transparent;
    border-right: 7.5px solid transparent;
    border-bottom: 13px solid var(--white);
    /* optically center the triangle within the circle */
    margin-top: 2px;
}

/* ── Slide-in on load ── */
.card-frame {
    opacity: 0;
    transform: translateX(60px);
    animation: slideInRight 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* apply card */

.bit-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    font-family: 'Lexend', sans-serif;
    border-top: 5px solid #CC1D2F;
    border-bottom: 5px solid #CC1D2F;
}

.bit-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 329px);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.bit-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bit-center-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* ============= */


.bit-photo-grid img:hover {

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    opacity: 0.6;
}

/* ===================== */






.bit-glass-card {
    background: rgba(0, 0, 0, 0.17);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.8px);
    -webkit-backdrop-filter: blur(9.8px);
    border: 1px solid rgba(0, 0, 0, 0.31);
    border-radius: 24px;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 686px;
    max-width: 440px;
    width: 106%;
    box-shadow: 0px 3px 29px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 3px 29px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 29px 0px rgba(0, 0, 0, 0.75);
}

.bit-title {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(28px, 3.5vw, 60px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.bit-title span.dot {
    color: #E8B84B;
}


.all-button-sweets {

    gap: 12px;
    position: relative;
    display: grid;
}

.all-button-sweets a {
    text-decoration: none;
}


.bit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: 'Lora', sans-serif;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    text-align: left;
    transition: transform 0.15s, opacity 0.15s;
    letter-spacing: 0.01em;
}

.bit-btn:hover {
    transform: scale(1.03);
    opacity: 0.93;
}

.bit-btn:active {
    transform: scale(0.98);
}

.bit-btn-red {
    background: #CC1D2F;
    color: #fff;
}

.bit-btn-yellow {
    background: #E8B84B;
    color: #7a4e00;
}

.bit-btn-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.bit-btn-red .bit-btn-arrow {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.bit-btn-yellow .bit-btn-arrow {
    background: rgba(255, 255, 255, 0.35);
    color: #7a4e00;
}

/* ===============footer map============== */

.find-us-frame {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    width: clamp(67px, 100%, 585px);
    height: 362px;
    margin: 0 auto;
    float: inline-end;
}

.find-us-frame img {
    width: 606px;
    height: 369px;
    object-fit: cover;
    display: block;
    transition: width 0.4s ease, height 0.4s ease, margin 0.4s ease;
}

.find-us-frame:hover img {
    width: 643px;
    height: 429px;
    margin-left: -45px;
    margin-top: -30px;
}

.find-us-pill {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: #FFC844;
    border-radius: 24px;
    transition: transform 0.4s ease;
}

.find-us-frame:hover .find-us-pill {
    transform: translateY(-10px);
}

.find-us-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.find-us-label {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    white-space: nowrap;
}

/* ── Popup overlay ── */
.find-us-popup {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.find-us-popup.active {
    opacity: 1;
    pointer-events: all;
}

.popup-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    max-width: 300px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.find-us-popup.active .popup-card {
    transform: scale(1);
}

.popup-pin {
    width: 40px;
    height: 40px;
    background: #FFC844;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #C80F2E;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.popup-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C80F2E;
    color: #FFFFFF;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.popup-maps-btn:hover {
    background: #a00c24;
    color: #fff;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.popup-close:hover {
    opacity: 1;
}

/* button */

/* ── Base button ──────────────────────────────── */
.btn-youlow-2 {
    /* Layout */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: var(--btn-height);
    padding: 0 var(--btn-padding-r) 0 var(--btn-padding-l);
    border-radius: var(--btn-radius);

    /* Colour – rest state: solid dark red fill, no border */
    background-color: var(--color-red-dark);
    border: 3px solid transparent;
    box-shadow: var(--shadow-default);

    /* Typography */
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 600;
    font-size: var(--btn-font-size);
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;

    /* Transition – mirrors Figma "Smart Animate" */
    transition:
        background-color 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.18s ease;

    /* Slide-in animation on load */
    animation: slideInLeft 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* ── Arrow icon — 24px circle container ────────── */
.btn-youlow-2 .arrow-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* Rest: circle is FF3759 (light red) */
    background-color: var(--color-red-light);
    transition: background-color 0.28s ease;
}

/* Horizontal line — rest: C80F2E (dark red) */
.btn-youlow-2 .arrow-icon::before {
    content: '';
    position: absolute;
    /* nudge left so line+head read as one shape; head is 8px wide so line ends at right:8px */
    left: 4px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: var(--color-red-dark);
    border-radius: 1px 0 0 1px;
    /* flat on right so it butts flush against the triangle */
    transition: background 0.28s ease;
}

/* Triangle arrowhead — rest: C80F2E, butted flush against line */
.btn-youlow-2 .arrow-icon::after {
    content: '';
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--color-red-dark);
    transition: border-left-color 0.28s ease;
}

/* ── Hover: circle → C80F2E, arrow → white ──── */
.btn-youlow-2:hover .arrow-icon {
    background-color: var(--color-red-dark);
}

.btn-youlow-2:hover .arrow-icon::before {
    background: #fff;
}

.btn-style-2:hover .arrow-icon::after {
    border-left-color: #fff;
}

/* ── Hover state ──────────────────────────────── */
.btn-youlow-2:hover {
    background-color: var(--color-red-light);
    border-color: var(--color-red-dark);
    color: #fff;
    box-shadow: var(--shadow-default);
    transform: translateY(-1px);
}

/* 333 button */


/* ── Base button ──────────────────────────────── */
.btn-style-33 {
    /* Layout */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: var(--btn-height);
    padding: 0 var(--btn-padding-r) 0 var(--btn-padding-l);
    border-radius: var(--btn-radius);

    /* Colour – rest state: solid dark red fill, no border */
    background-color: var(--color-bg);
    border: 3px solid transparent;
    box-shadow: var(--shadow-default);

    /* Typography */
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 600;
    font-size: var(--btn-font-size);
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;

    /* Transition – mirrors Figma "Smart Animate" */
    transition:
        background-color 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.18s ease;

    /* Slide-in animation on load */
    animation: slideInLeft 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* ── Arrow icon — 24px circle container ────────── */
.btn-style-33 .arrow-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* Rest: circle is FF3759 (light red) */
    background-color: var(--bit-light);
    transition: background-color 0.28s ease;
}

/* Horizontal line — rest: C80F2E (dark red) */
.btn-style-33 .arrow-icon::before {
    content: '';
    position: absolute;
    /* nudge left so line+head read as one shape; head is 8px wide so line ends at right:8px */
    left: 4px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: #fec844;
    border-radius: 1px 0 0 1px;
    /* flat on right so it butts flush against the triangle */
    transition: background 0.28s ease;
}

/* Triangle arrowhead — rest: C80F2E, butted flush against line */
.btn-style-33 .arrow-icon::after {
    content: '';
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fec844;
    transition: border-left-color 0.28s ease;
}

/* ── Hover: circle → C80F2E, arrow → white ──── */
.btn-style-33:hover .arrow-icon {
    background-color: var(--color-red-dark);
}

.btn-style-33:hover .arrow-icon::before {
    background: #fff;
}

.btn-style-33:hover .arrow-icon::after {
    border-left-color: #fff;
}

/* ── Hover state ──────────────────────────────── */
.btn-style-33:hover {
    background-color: var(--color-red-light);
    border-color: var(--color-red-dark);
    color: #fff;
    box-shadow: var(--shadow-default);
    transform: translateY(-1px);
}

.btn-style-33:active {
    transform: translateY(1px);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}


/* ============================================================================== */
/* Inner All CSS */
/* ============================================================================== */


.sec_innar_defolt {
    background: #fff;
    padding: 3.5rem 0;
}

.sec_innar_defolt2 {
    background: #fff;
    padding: 3.5rem 0 0 0;
}

.inner__titel {
    font-family: 'Lexend', serif;
    font-weight: 600;
    font-size: 60px;
    color: #ffffff;

}

.inner__titel__sub {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-style: italic;
    font-size: 36px;
    color: #ffffff;
}

.glance-bit-dot {
    color: var(--gold);
}

.extra-menu {
    margin-top: 20%;
}

.short__menu {
    background-color: #c80f2e;
    border-radius: 50px;
    margin-top: 14%;
    z-index: 9;
    width: 487px;
    margin: 7% auto 0;
}

.short__menu .navbar-nav .nav-item a {
    color: #fffdfd;
    font-family: 'Lexend', serif;
    font-weight: 600;
}

.short__menu .navbar-nav .nav-item a:hover {
    color: #f5c518;
}

.short__menu2 {
    background-color: #c80f2e;
    border-radius: 50px;
    margin-top: 14%;
    z-index: 9;
    width: 628px;
    margin: 7% auto 0;
}

.short__menu2 .navbar-nav .nav-item a {
    color: #fffdfd;
    font-family: 'Lexend', serif;
    font-weight: 600;
}

.short__menu2 .navbar-nav .nav-item a:hover {
    color: #f5c518;
}



.titel_in_red {
    font-size: 60px;
    font-family: 'Lexend', serif;
    font-weight: 600;
    color: #C80F2E;
    letter-spacing: -2.5%;
}

.titel_in_white {
    font-size: 51px;
    font-family: 'Lexend', serif;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -2.5%;
    line-height: 1em;
}

.titel_in_youllo {
    font-size: 60px;
    font-family: 'Lexend', serif;
    font-weight: 600;
    color: #fac400;
    letter-spacing: -2.5%;
}

.glance-bit-coma {
    color: #fa0000;
}

.auto__haf_text {
    width: clamp(67px, 86%, 480px);
}

.right_sight_imgsize {
    width: clamp(67px, 86%, 480px);
    margin-top: -40px;
}

.pl-3par {
    padding-left: 4%;
}

.text-justify {
    text-align: justify;
}


/* images inistection */
.rounded_style {
    display: block;
    position: relative;
    width: clamp(67px, 86%, 480px);
}

.rounded_style .fast-round:nth-child(1) {
    display: block;
    box-shadow: 7px 3px 28px -2px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 7px 3px 28px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 7px 3px 28px -2px rgba(0, 0, 0, 0.75);
    right: -344px;
    top: -471px;
    position: absolute;
}

.rounded_style .secend-round:nth-child(2) {
    display: block;
    box-shadow: 7px 3px 28px -2px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 7px 3px 28px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 7px 3px 28px -2px rgba(0, 0, 0, 0.75);
    left: 123px;
    top: -349px;
    position: absolute;
}

.rounded_style .thard-round:nth-child(3) {
    display: block;
    box-shadow: 7px 3px 28px -2px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 7px 3px 28px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 7px 3px 28px -2px rgba(0, 0, 0, 0.75);
    left: 274px;
    top: -39px;
    position: absolute;
}

.fast-round {
    width: 264px;
    height: 264px;
    border-radius: 70%;
    object-fit: cover;
}

.secend-round {
    width: 320px;
    height: 320px;
    border-radius: 70%;
    object-fit: cover;
}

.thard-round {
    width: 490px;
    height: 490px;
    border-radius: 70%;
    object-fit: cover;
}

section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.clous-under-foot {
    font-size: 58px;
    text-align: center;
    font-weight: 800;
    color: #C80F2E;
    line-height: 67px;
    letter-spacing: -2px;
}