* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    /* Options: auto, thin, none */
    scrollbar-color: var(--primary-color) #f1f1f1;
    /* thumb-color track-color */
}

:root {
    --clr-primary: #ec1f8f;
    --clr-primary-dark: #7c3aed;
    --clr-secondary: #f59e0b;
    --clr-secondary-lt: #fbbf24;
    --clr-on-bg: #1e1b4b;
    --orange: #f26038;
    --clr-surface: #ffffff;
    --clr-surface-var: #f3f4f6;
    --clr-bg: #fafafb;
    --clr-outline: #e2e8f0;
    --font-headline: 'Nunito', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --radius-pill: 9999px;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3rem;
    --light-color: #fff;
    --shadow-primary: 0 20px 40px -10px rgba(139, 92, 246, .30);
    --shadow-secondary: 0 10px 20px -5px rgba(245, 158, 11, .40);
    --teal: #69c8c6;
}

/* ─── Base ──────────────────────────────────────────────── */
html {

    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    scroll-padding-top: 150px;
}

html {
    scroll-behavior: auto !important;
}

main {
    overflow-x: clip;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    /* color: var(--clr-on-bg); */
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headline);
}

::selection {
    background: rgba(139, 92, 246, .2);
}

/* ─── Utility helpers ───────────────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, #3aa8a6 0%, #5261ac 50%, #ec1f8f 100%);

    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientFlow 3s linear infinite;
}

@keyframes textGradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bg-primary-brand {
    background-color: var(--clr-primary) !important;
}

.bg-secondary-brand {
    background-color: var(--clr-secondary) !important;
}

.text-primary-brand {
    color: var(--clr-primary) !important;
}

.text-secondary-brand {
    color: var(--clr-secondary) !important;
}

.border-primary-brand {
    border-color: var(--clr-primary) !important;
}

[data-aos="zoom-in"].aos-animate {
    animation: zoom-in 1.2s forwards;
}

@keyframes zoom-in {
    0% {
        transform: scale(0.6);
    }

    100% {
        transform: scale(1);
    }
}


[data-aos="jello"].aos-animate {
    animation: jello-horizontal 2s linear infinite both;
}

@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    40% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

[data-aos="scale-in-hor-left"].aos-animate {
    animation: puff-in-center 1.2s cubic-bezier(0.470, 0.000, 0.745, 0.715) both
}

@-webkit-keyframes scale-in-hor-left {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }
}

@keyframes scale-in-hor-left {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }
}

[data-aos=""],
[data-aos="fade-up"] {
    opacity: 0.1;
    transform: translateY(var(--aos-distance, 35px));
    transition:
        opacity var(--aos-duration, .7s) var(--aos-easing, cubic-bezier(.16, 1, .3, 1)),
        transform var(--aos-duration, .7s) var(--aos-easing, cubic-bezier(.16, 1, .3, 1));
    transition-delay: var(--aos-delay, 0s);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

/* Animate-in state */
[data-aos=""].aos-animate,
[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay helpers */
[data-aos-delay="100"] {
    --aos-delay: .1s
}

[data-aos-delay="200"] {
    --aos-delay: .2s
}

[data-aos-delay="300"] {
    --aos-delay: .3s
}

[data-aos-delay="400"] {
    --aos-delay: .4s
}

[data-aos-delay="500"] {
    --aos-delay: .5s
}

[data-aos-delay="550"] {
    --aos-delay: .55s
}

[data-aos-delay="600"] {
    --aos-delay: .6s
}


[data-aos-duration="400"] {
    --aos-duration: .4s
}

[data-aos-duration="800"] {
    --aos-duration: .8s
}

[data-aos-duration="1200"] {
    --aos-duration: 1.2s
}

/* Distance helpers */
[data-aos-distance="sm"] {
    --aos-distance: 14px
}

[data-aos-distance="lg"] {
    --aos-distance: 80px
}

[data-aos-distance="xl"] {
    --aos-distance: 140px
}

/* Easing helpers */
[data-aos-easing="expo"] {
    --aos-easing: cubic-bezier(.16, 1, .3, 1)
}

[data-aos-easing="back"] {
    --aos-easing: cubic-bezier(.34, 1.56, .64, 1)
}

[data-aos-easing="elastic"] {
    --aos-easing: cubic-bezier(.34, 1.72, .58, 1)
}

[data-aos-easing="sine"] {
    --aos-easing: cubic-bezier(.37, 0, .63, 1)
}

/* ─── Zoom-in AOS for philosophy-img-wrap ───────────────── */
.philosophy-img-wrap[data-aos] {
    opacity: 0;
    transform: scale(0.75) translateY(30px);
    transition:
        opacity 0.85s cubic-bezier(.34, 1.56, .64, 1),
        transform 0.85s cubic-bezier(.34, 1.56, .64, 1);
    transition-delay: var(--aos-delay, 0s);
}

.philosophy-img-wrap[data-aos].aos-animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}





.reveal-text {}

/* ─── Glass effects ─────────────────────────────────────── */
.glass-nav {
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.glass-card {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .06);
    transition:
        background 0.38s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.38s ease,
        box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(139, 92, 246, 0.22);
    box-shadow:
        0 28px 56px -12px rgba(139, 92, 246, 0.18),
        0 0 0 1px rgba(139, 92, 246, 0.10);
    transform: translateY(-6px);
}

/* circle fill on icon-wrap inside any glass-card on hover */
.glass-card:hover .location-icon-wrap.purple {
    background: var(--clr-primary);
    color: #fff;
    animation: icon-circle-fill 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.glass-card:hover .location-icon-wrap.amber {
    background: var(--clr-secondary);
    color: #fff;
    animation: icon-circle-fill-amber 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.glass-purple {
    background: rgba(139, 92, 246, .10);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, .20);
}

/* ─── Navbar ────────────────────────────────────────────── */
.site-navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1280px;
    z-index: 1050;
    border-radius: var(--radius-3xl);
    padding: .75rem 2rem;
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1),
        border-radius .3s ease;
}

/* Hide header on scroll-down; show on scroll-up */
.site-navbar.nav-hidden {
    transform: translateX(-50%) translateY(calc(-100% - 1.5rem));
}

@media (max-width: 991.98px) {
    .site-navbar {
        border-radius: var(--radius-xl);
    }
}

/* Burger animation */
.navbar-toggler {
    border: none;
    padding: .4rem .5rem;
    border-radius: .5rem;
    background: rgba(139, 92, 246, .08);
    transition: background .2s;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: rgba(139, 92, 246, .16);
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
    cursor: pointer;
}

.burger-icon span {
    display: block;
    height: 2.5px;
    background: var(--clr-primary);
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), opacity .25s ease, width .3s ease;
    transform-origin: center;
}

.burger-icon span:nth-child(2) {
    width: 75%;
}

/* When menu is open */
.navbar-toggler[aria-expanded="true"] .burger-icon span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .burger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .burger-icon span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile collapse panel */
.site-navbar .navbar-collapse {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

@media (min-width: 992px) {
    .site-navbar .navbar-collapse {
        overflow: visible;
    }
}

.site-navbar .navbar-nav .nav-link {
    font-weight: 700;
    font-size: .875rem;
    color: rgba(30, 27, 75, .70);
    padding: .55rem 1rem;
    border-radius: .75rem;
    transition: color .2s, background .2s;
}

.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link.active {
    color: var(--clr-primary);
    background: rgba(139, 92, 246, .08);
}

.site-navbar .navbar-nav .nav-link.active {
    font-weight: 800;
}

/* ─── Header dropdown ───────────────────────────────────── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    line-height: inherit;
    text-align: left;
    width: 100%;
}

.nav-dropdown-chevron {
    font-size: .65rem;
    opacity: .55;
    transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
    opacity: .9;
}

.nav-dropdown-panel {
    --nav-dropdown-ease: cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
        opacity .22s var(--nav-dropdown-ease),
        transform .22s var(--nav-dropdown-ease),
        visibility .22s;
}

.nav-dropdown-menu {
    margin: 0;
    padding: .45rem;
}

.nav-dropdown-link {
    display: block;
    padding: .65rem 1rem;
    border-radius: .65rem;
    font-weight: 700;
    font-size: .875rem;
    color: rgba(30, 27, 75, .75);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s, background .2s;
}

.nav-dropdown-link:hover {
    color: var(--clr-primary);
    background: rgba(139, 92, 246, .08);
}

.nav-dropdown-link.active {
    color: var(--clr-primary);
    background: rgba(139, 92, 246, .10);
    font-weight: 800;
}

@media (min-width: 992px) {
    .nav-dropdown::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: .5rem;
    }

    .nav-dropdown-toggle {
        width: auto;
    }

    .nav-dropdown-chevron {
        margin-top: 1px;
    }

    .nav-dropdown.is-open .nav-dropdown-chevron {
        transform: rotate(180deg);
    }

    .nav-dropdown-panel {
        position: absolute;
        top: calc(100% + .35rem);
        left: 50%;
        transform: translateX(-50%) translateY(-6px);
        min-width: 12.5rem;
        z-index: 1060;
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, .75);
        border-radius: var(--radius-xl);
        box-shadow:
            0 20px 40px -12px rgba(139, 92, 246, .18),
            0 8px 24px -8px rgba(30, 27, 75, .10);
    }

    .nav-dropdown.is-open .nav-dropdown-panel {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown-menu {
        padding: .5rem;
    }
}

@media (max-width: 991.98px) {
    .site-navbar .navbar-nav {
        padding: .5rem;
        background: rgba(255, 255, 255, .95);
        border-radius: var(--radius-xl);
    }

    .site-navbar .navbar-nav .nav-link {
        padding: .7rem 1.25rem;
    }

    .nav-dropdown-panel {
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition:
            max-height .28s var(--nav-dropdown-ease, cubic-bezier(0.16, 1, 0.3, 1)),
            opacity .22s ease,
            visibility .22s;
    }

    .nav-dropdown.is-open .nav-dropdown-panel {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
        max-height: 24rem;
    }

    .nav-dropdown.is-open .nav-dropdown-chevron {
        transform: rotate(180deg);
        opacity: .9;
    }

    .nav-dropdown-menu {
        padding: 0 .5rem .35rem 1rem;
    }

    .nav-dropdown-link {
        padding: .55rem 1rem .55rem 1.25rem;
        font-size: .8125rem;
    }
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary-brand {
    background: var(--clr-primary);
    color: #fff;
    border: none;
    font-family: var(--font-headline);
    font-weight: 800;
    border-radius: var(--radius-xl);
    padding: .85rem 2rem;
    box-shadow: var(--shadow-primary);
    transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-primary-brand:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -8px rgba(139, 92, 246, .40);
    color: #fff;
}

.btn-primary-brand:active {
    transform: translateY(0);
}

.btn-secondary-brand {
    background: var(--clr-secondary);
    color: var(--clr-on-bg);
    border: none;
    font-family: var(--font-headline);
    border-radius: var(--radius-xl);
    padding: .85rem 2rem;
    box-shadow: var(--shadow-secondary);
    transition: transform .2s;
}

.btn-secondary-brand:hover {
    transform: scale(1.04);
    color: var(--clr-on-bg);
}

.btn-glass {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .65);
    color: var(--clr-on-bg);
    font-family: var(--font-headline);
    border-radius: 30px;
    padding: 0.5rem 3rem;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, .08);
    transition: background .2s, transform .2s;
    line-height: 0;
    position: relative;
    font-size: 1rem !important;
    align-content: center;
    line-height: 0;
}

.btn-glass:hover {
    background: #fff;
    transform: translateY(-2px);
    color: var(--clr-on-bg);
}

.btn-pill {
    background: var(--clr-primary);
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: .813rem;
    border-radius: var(--radius-pill);
    padding: .6rem 1.5rem;
    box-shadow: 0 8px 20px -4px rgba(139, 92, 246, .30);
    transition: transform .2s, background .2s;
}

.btn-pill:hover {
    background: var(--clr-primary-dark);
    transform: scale(1.05);
    color: #fff;
}

.blog-btn {
    background: var(--clr-primary);
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    padding: .85rem 2.5rem;
    box-shadow: 0 12px 24px -6px rgba(236, 31, 143, 0.3);
    transition: transform .2s, background .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-btn:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
    color: #fff;
}

/* ─── Hero Section ──────────────────────────────────────── */
.section-hero {
    min-height: 88vh;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    background-image: url('../img/banner/gym_pattern3.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.hero-glow {
    position: absolute;
    top: 10%;
    right: 0;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, .14) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(139, 92, 246, .06);
    border: 1px solid rgba(139, 92, 246, .14);
    border-radius: var(--radius-pill);
    padding: .45rem 1.1rem;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--clr-primary);
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.8);
    }
}

.hero-heading {
    font-size: clamp(2.6rem, 7vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.02em;
}

.hero-img-wrap {
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .18);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.promo-badge {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border: 4px solid #fff;
    box-shadow: 0 16px 32px -8px rgba(245, 158, 11, .45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: rotate(12deg);
    z-index: 10;
}

.promo-badge .pct {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.promo-badge small {
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .88;
}

.avatar-stack {
    display: flex;
}

.avatar-stack .av {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #cbd5e1;
}

.avatar-stack .av:not(:first-child) {
    margin-left: -.75rem;
}

/* ─── Stats ─────────────────────────────────────────────── */
.section-stats {
    padding: 3.5rem 0;
}

.stat-card {
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform .25s;
    height: 100px;
    align-content: center;
}

.stat-card:hover {
    transform: translateY(-6px);
}

.stat-card .stat-val {
    font-family: var(--font-headline);
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: .2rem;
}

.stat-card .stat-lbl {
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(30, 27, 75, .45);
}

/* ─── Programs Section ──────────────────────────────────── */
.section-programs {
    padding: 6rem 0;
    background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
    border-radius: var(--radius-3xl);
    margin: 0 1.25rem;
}

@media (min-width:768px) {
    .section-programs {
        margin: 0 2rem;
    }
}

.section-label {
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--teal);
}

/* Bootstrap Tabs custom style */
.programs-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius-xl) !important;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1rem;
    color: var(--clr-on-bg);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .65) !important;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .06);
    transition: background .25s, color .25s, box-shadow .25s, transform .2s;
    margin-bottom: 1.75rem;
}

.programs-tabs .nav-link .tab-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background .25s;
    background: #fff;
}

.programs-tabs .nav-link .tab-meta {
    font-size: .65rem;
    font-weight: 700;
    opacity: .5;
    margin-top: .1rem;
}

.programs-tabs .nav-link:hover:not(.active) {
    background: #fff;
    transform: translateX(4px);
}

.programs-tabs .nav-link.active {
    background: var(--clr-primary) !important;
    color: #fff !important;
    border-color: var(--clr-primary) !important;
    box-shadow: 0 16px 32px -8px rgba(139, 92, 246, .38);
}

.programs-tabs .nav-link.active .tab-icon {
    background: #fff;
    padding: 0.4rem;
    border-radius: 10px;
}

.programs-tabs .nav-link.active .tab-meta {
    opacity: .75;
}



.program-display {
    border-radius: 2.5rem;
    padding: 2rem !important;
}

@media (min-width:768px) {
    .program-display {
        padding: 3rem;
    }
}

.program-display-img {
    border-radius: 2.25rem;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.program-display-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.program-display-img:hover img {
    transform: scale(1.04);
}

.tag-pill {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--clr-outline);
    border-radius: .75rem;
    padding: .35rem .85rem;
    font-size: .68rem;
    font-weight: 800;
    color: rgba(30, 27, 75, .65);
}

.age-badge {
    display: inline-block;
    background: rgba(245, 158, 11, .12);
    color: var(--clr-secondary);
    border-radius: var(--radius-pill);
    padding: .35rem 1rem;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
}

/* ─── Getting Started Section ───────────────────────────── */
.section-getting-started {
    padding: 3rem 0 5rem;
    background-image: linear-gradient(180deg, #f5f7fa7d 0%, #c3cfe2de 100%);
    position: relative;
}

.section-getting-started::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #cbd5e6;
    border-radius: 0 0 100% 100% / 0 0 100% 100%;
    transform: translateY(50%);
    z-index: 2;
    pointer-events: none;
}


.step-card {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    height: 360px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
    cursor: pointer;
    z-index: 1;
    padding: 0;
    border: none;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.12);
}

.step-card-bg {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-card-bg {
    transform: scale(1.08);
}

.step-card-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    border-radius: 2rem 2rem 0 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 20px 10px rgba(255, 255, 255, 1);

}


.step-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-card-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease 0.1s,
        margin 0.5s ease;
    margin-top: 0;
}

.step-card:hover .step-card-body {
    max-height: 250px;
    opacity: 1;
    margin-top: 1rem;
}

.step-number-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
}

.bg-step-1 {
    background-color: #ec1f8f !important;
    box-shadow: 0 10px 25px -5px rgba(236, 31, 143, 0.5);
}

.bg-step-2 {
    background-color: #49b3a3 !important;
    box-shadow: 0 10px 25px -5px rgba(73, 179, 163, 0.5);
}

.bg-step-3 {
    background-color: #3f51b5 !important;
    box-shadow: 0 10px 25px -5px rgba(63, 81, 181, 0.5);
}

.btn-step {
    padding: 0.7rem 1.8rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: #fff;
    border: none;
    display: inline-block;
    align-self: flex-start;
}

.btn-step-green {
    background-color: #49b3a3;
}

.btn-step-green:hover {
    background-color: #3b9386;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(73, 179, 163, 0.4);
}

.steps-row {
    position: relative;
}

/* ─── Philosophy Section ────────────────────────────────── */
.section-philosophy {
    padding: 6rem 0;
}

.pillar-card {
    display: flex;
    gap: 1.4rem;
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    transition: background .25s, transform .2s;
}

.pillar-card:hover {
    background: #fff;
    transform: translateX(6px);
}

.pillar-icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.pillar-icon.purple {
    background: rgba(139, 92, 246, .07);
    color: var(--clr-primary);
}

.pillar-icon.amber {
    background: rgba(245, 158, 11, .07);
    color: var(--clr-secondary);
}

.pillar-card:hover .pillar-icon.purple {
    background: var(--clr-primary);
    color: #fff;
}

.pillar-card:hover .pillar-icon.amber {
    background: var(--clr-secondary);
    color: #fff;
}

.philosophy-img-wrap {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.philosophy-circle {
    position: relative;
    border-radius: 50%;
    padding: 1rem;
    aspect-ratio: 1/1;
    overflow: visible;
}

.philosophy-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px dashed rgba(139, 92, 246, .22);
    animation: rotate-border 35s linear infinite;
    pointer-events: none;
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}

.philosophy-circle img,
.philosophy-circle video {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .14);
    transition: transform 0.3s ease;
}

.philosophy-circle.video-ripple:hover video {
    transform: scale(0.98);
}

.circle-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 2.2rem;
    padding-left: 0.3rem;
    /* visually center the play icon */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.philosophy-circle.video-ripple:hover .circle-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
    color: #c91176;
    /* darker shade of primary */
}

/* Smooth ripple effect behind the play icon */
.circle-play-overlay::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
    animation: icon-ripple-pulse 2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

@keyframes icon-ripple-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.confidence-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    border-radius: var(--radius-2xl);
    padding: 1.25rem;
    text-align: center;
    animation: float 6s ease-in-out infinite .3s;
    min-width: 8rem;
}

/* ─── Franchise Section ─────────────────────────────────── */
.section-franchise {
    margin: 0 1.25rem;
    border-radius: 2.5rem;
    background: linear-gradient(135deg, #172c5f 0%, #251ba3 50%, #4c1d95 100%);
    d;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

@media (min-width:768px) {
    .section-franchise {
        margin: 0 2rem;
        border-radius: 5rem;
        padding: 6rem 3rem;
    }
}

.franchise-glow-tl {
    position: absolute;
    top: -4rem;
    left: -4rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(139, 92, 246, .15);
    filter: blur(60px);
    pointer-events: none;
}

.franchise-glow-br {
    position: absolute;
    bottom: -4rem;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(245, 158, 11, .10);
    filter: blur(60px);
    pointer-events: none;
}

.franchise-kids-anim {
    position: absolute;
    bottom: -5%;
    left: 5%;
    width: 70%;
    max-width: 600px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.franchise-stat {
    border-radius: 2rem;
    padding: 2rem 1.5rem;
}

.franchise-stat .fval {
    font-family: var(--font-headline);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--clr-secondary);
    line-height: 1;
    margin-bottom: .3rem;
}

.franchise-stat .flbl {
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
}

/* ─── Testimonials ──────────────────────────────────────── */
.section-testimonials {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f5f7fa7d 0%, #c3cfe2de 100%);
    margin: 2rem 0;
}

.video-thumb {
    border-radius: 2.5rem;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 24px 56px -12px rgba(0, 0, 0, .14);
    aspect-ratio: 16/9;
    position: relative;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.video-thumb:hover img {
    transform: scale(1.06);
}

.video-thumb .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 92, 246, .18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, .18);
    font-size: 2.2rem;
    color: var(--clr-primary);
    transition: transform .25s;
}

.video-thumb:hover .play-btn {
    transform: scale(1.1);
}

.testimonial-card {
    border-radius: 2.75rem;
    padding: 2.5rem;
}

.testimonial-stars {
    color: var(--clr-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reviewer-av {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(139, 92, 246, .1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .9rem;
    flex-shrink: 0;
}

/* ─── Locations ─────────────────────────────────────────── */
.section-locations {
    padding: 6rem 0;
    background: rgba(243, 244, 246, .22);
    border-radius: var(--radius-3xl);
    margin: 0 1.25rem;
}

.find-locations {
    padding: 0 0 6rem;
    background: rgba(243, 244, 246, .22);
    border-radius: var(--radius-3xl);
    margin: 0 1.25rem;
}

@media (min-width:768px) {
    .section-locations {
        margin: 0 2rem;
    }

    .find-locations {
        margin: 0 2rem;
    }
}

.location-select {
    background: #fff;
    border: 1px solid var(--clr-outline);
    border-radius: var(--radius-xl);
    padding: .85rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--clr-on-bg);
    font-size: .9rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238b5cf6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, .06);
    transition: border-color .2s, box-shadow .2s;
}

.location-select:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .15);
}

.location-card {
    border-radius: 2.75rem;
    padding: 2.25rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s;
}

.location-card:hover {
    background: #fff;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 184, 197, 0.2);
}

@keyframes icon-circle-fill {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.35);
    }

    50% {
        transform: scale(1.18);
        box-shadow: 0 0 0 8px rgba(139, 92, 246, 0);
    }

    100% {
        transform: scale(1.12);
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

@keyframes icon-circle-fill-amber {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35);
    }

    50% {
        transform: scale(1.18);
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }

    100% {
        transform: scale(1.12);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.location-icon-wrap {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    /* circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        color 0.35s ease,
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
}

.location-card:hover .location-icon-wrap.purple {
    background: var(--clr-primary);
    color: #fff;
    animation: icon-circle-fill 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.location-card:hover .location-icon-wrap.amber {
    background: var(--clr-secondary);
    color: #fff;
    animation: icon-circle-fill-amber 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.open-badge {
    font-size: .58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    background: rgba(139, 92, 246, .1);
    color: #767676;
    padding: .35rem .8rem;
    border-radius: var(--radius-pill);
}

.btn-location-purple {
    width: 100%;
    padding: .9rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: .85rem;
    background: rgba(139, 92, 246, .07);
    color: var(--clr-primary);
    border: none;
    transition: background .2s, color .2s;
}

.btn-location-purple:hover {
    background: var(--clr-primary);
    color: #fff;
}

.btn-location-amber {
    width: 100%;
    padding: .9rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: .85rem;
    background: rgba(245, 158, 11, .07);
    color: var(--clr-secondary);
    border: none;
    transition: background .2s, color .2s;
}

.btn-location-amber:hover {
    background: var(--clr-secondary);
    color: #fff;
}

/* ─── Final CTA ─────────────────────────────────────────── */
.section-cta {}

.cta-box {
    background: url('../img/banner/gym_pattern.png'), linear-gradient(135deg, #3aa8a6 0%, #5261ac 50%, #ec1f8f 100%);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-3xl);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;

}

@media (min-width:768px) {
    .cta-box {
        padding: 6rem 3rem;
    }
}

.cta-glow-tr {
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    filter: blur(40px);
}

.cta-glow-bl {
    position: absolute;
    bottom: -4rem;
    left: -4rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: rgba(245, 158, 11, .12);
    filter: blur(40px);
}

.cta-heading {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
    background: var(--clr-on-bg);
    color: #fff;
    padding: 5rem 0 3rem;
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
    margin-top: 6rem;
}

.footer-brand-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--clr-primary);
    border-radius: .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #fff;
}

.footer-heading {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--teal);
    margin-bottom: 1.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: .875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .75rem;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 1.1rem;
    transition: background .2s, color .2s;
}

.footer-social:hover {
    background: var(--clr-primary);
    color: #fff;
}

.newsletter-input {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-xl);
    padding: .85rem 1.25rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: .875rem;
    transition: border-color .2s;
    margin-bottom: .75rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--clr-primary);
}

.footer-divider {
    border-color: rgba(255, 255, 255, .07);
    margin: 2.5rem 0;
}

.footer-copy {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .28);
}

/* ─── Responsive tweaks ─────────────────────────────────── */
@media (max-width:575.98px) {
  .form-card{
    padding: 1rem;
  }
    .ballone, .ballthre{
        margin-bottom: 3rem;
    }
    .bounce-ball .col-md-2{
        width: 50%;
    }
    .birthday-age-tabs .nav-link{
         width: 100%;
        margin-bottom: 0.5rem;
    }
    .birthday-age-tabs .nav-item{
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .hide-scrollbar {
    scrollbar-width: thin !important;
    scrollbar-color: auto !important;
}
    .location-action-btns .btn-glass {
        padding: 1.5rem 2rem;
    }

    .btn-glass {
        padding: 2rem 3rem;
    }

    .birth-badge svg {
        width: 20px !important;
        height: 20px !important;
    }

    .privacy-hero .heading p{
        width: 300px;
        margin: 0 auto;
    }
    .custom-career-accordion .job-title{
        font-size: 1rem!important;
    }
.privacy-tab{
    margin: 0 0.5rem;
}
    .section-hero {
        padding-top: 6rem;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .promo-badge {
        width: 7rem;
        height: 7rem;
        top: -1.5rem;
        right: -1rem;
    }

    .promo-badge .pct {
        font-size: 2rem;
    }
}

@media (max-width:767.98px) {
    .w-19 {
        width: 100% !important;
    }

    .w-23 {
        width: 100% !important;
    }

    .w-27 {
        width: 100% !important;
    }

    .w-33 {
        width: 100% !important;
    }

    .gym-class-child .class-head {
        margin-bottom: 1rem;

        font-size: 1rem !important;
    }

    .gym-class-child .heading .col-md-3::after {
        display: none;
    }

    .program-display {
        padding: 1.75rem;
    }
}

/* ─── Button Animations ─────────────────────────────────────────── */
.contact-btn {
    position: relative;
    display: inline-flex;
    height: 3.5rem;
    align-items: center;
    border-radius: 9999px;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem !important;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    cursor: pointer;
    text-decoration: none !important;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
    padding: 0.4rem 3rem !important;
    font-weight: 500;
}

.contact-btn.btn-primary-brand,
.contact-btn.btn-pill,
.contact-btn.blog-btn {
    background-color: transparent !important;
    color: #fff !important;
}

.contact-btn.btn-pill {
    height: 2.8rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.contact-btn .button-bg {
    overflow: hidden;
    border-radius: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: var(--teal);
    display: block;
    z-index: 1;
}

.contact-btn.btn-pill .button-bg {
    border-radius: 9999px;
}

.contact-btn .button-bg-layers {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -60%;
    aspect-ratio: 1 / 1;
    width: max(200%, 10rem);
}

.contact-btn .button-bg-layer {
    display: block;
    border-radius: 9999px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
}

.contact-btn .button-bg-layer.-purple {
    background-color: rgba(163, 116, 255);
}

.contact-btn .button-bg-layer.-turquoise {
    background-color: #69c8c6;
}

.contact-btn .button-bg-layer.-yellow {
    background-color: #fdac32;
}

.contact-btn .button-inner,
.contact-btn .button-inner-hover,
.contact-btn .button-inner-static {
    pointer-events: none;
    display: block;
    z-index: 2;
    position: relative;
    width: 100%;
    text-align: center;
}

.contact-btn .button-inner-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(70%);
}

.contact-btn:hover .button-inner-static {
    opacity: 0;
    transform: translateY(-70%);
    transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s linear;
}

.contact-btn:hover .button-inner-hover {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-btn:hover .button-bg-layer {
    transition: transform 1.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s linear;
}

.contact-btn:hover .button-bg-layer-1 {
    transform: scale(1);
}

.contact-btn:hover .button-bg-layer-2 {
    transition-delay: 0.1s;
    transform: scale(1);
}

.contact-btn:hover .button-bg-layer-3 {
    transition-delay: 0.2s;
    transform: scale(1);
}

/* ─── Custom Cursor ─────────────────────────────────────────────── */
body {
    cursor: none;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
}

.cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid white;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover .cursor-outline {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ─── Avatar Stack ──────────────────────────────────────────────── */
.avatar-stack .av {
    overflow: hidden;
    background: #cbd5e1;
}

.avatar-stack .av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Location Select ───────────────────────────────────────────── */
.location-select option {
    background-color: #fff;
    color: var(--clr-on-bg);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

/* ─── Testimonial Swiper Pagination ─────────────────────────────── */
.swiper-pagination-modern .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 4px;
    background: rgba(139, 92, 246, 0.3);
    transition: width 0.3s, background 0.3s;
    opacity: 1;
}

.swiper-pagination-modern .swiper-pagination-bullet-active {
    width: 36px;
    background: var(--clr-primary);
}

/* ─── Hero Swiper Pagination ────────────────────────────────────── */
.hero-pagination {
    bottom: 1.5rem !important;
    z-index: 10;
}

.hero-pagination.swiper-pagination-modern .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-pagination.swiper-pagination-modern .swiper-pagination-bullet-active {
    background: #fff;
}

/* ─── Extracted Inline Styles ─────────────────────────── */
.custom-util-1 {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .75rem;
}

.custom-util-2 {
    color: var(--clr-on-bg);
    font-family: var(--font-headline);
}

.custom-util-3 {
    font-size: .875rem;
}

.custom-util-4 {
    color: rgba(30, 27, 75, .58);
    max-width: 480px;
    line-height: 1.65;
}

.custom-util-5 {
    font-size: .85rem;
    color: rgba(30, 27, 75, .5);
}

.custom-util-6 {
    color: var(--clr-on-bg);
}

.custom-util-8 {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    opacity: .6;
    margin-bottom: .3rem;
}

.custom-util-9 {
    font-size: clamp(1.8rem, 4vw, 2rem);
}

.custom-util-10 {
    max-width: 580px;
    color: rgba(30, 27, 75, .55);
    line-height: 1.65;
}

.custom-util-11 {
    font-size: 1.8rem;
}

.custom-util-12 {
    color: rgba(30, 27, 75, .6);
    line-height: 1.7;
}

.custom-util-13 {
    font-size: 1.1rem;
}

.custom-util-14 {
    color: rgba(30, 27, 75, .58);
    line-height: 1.65;
}

.custom-util-15 {
    font-size: 2rem;
    line-height: 1;
}

.custom-util-16 {
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(30, 27, 75, .5);
}

.custom-util-17 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.1;
}

.custom-util-18 {
    color: rgba(255, 255, 255, .68);
    line-height: 1.65;
    max-width: 460px;
}

.custom-util-19 {
    font-size: clamp(1.8rem, 4vw, 2rem);
}

.custom-util-20 {
    font-size: 1.4rem;
}

.custom-util-21 {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(30, 27, 75, .4);
}

.custom-util-22 {
    background: rgba(245, 158, 11, .1);
    color: var(--clr-secondary);
}

.custom-util-23 {
    background: rgba(139, 92, 246, .07);
    color: var(--clr-primary);
}

.custom-util-24 {
    color: rgba(30, 27, 75, .5);
    line-height: 1.6;
}

.custom-util-25 {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(30, 27, 75, .6);
}

.custom-util-26 {
    background: rgba(245, 158, 11, .07);
    color: var(--clr-secondary);
}

.custom-util-27 {
    color: rgba(255, 255, 255, .78);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

.custom-util-28 {
    background: #fff;
    color: var(--clr-primary);
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 1.1rem;
    padding: .9rem 2.5rem;
    border-radius: var(--radius-xl);
    transition: transform .2s;
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, .2);
}

.custom-util-29 {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 1.1rem;
    padding: .9rem 2.5rem;
    border-radius: var(--radius-xl);
    transition: background .2s;
}

.custom-util-30 {
    font-family: var(--font-headline);
}

.custom-util-31 {
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
}

.custom-util-32 {
    color: rgba(255, 255, 255, .45);
}

.custom-util-33 {
    border-radius: var(--radius-xl);
    padding: .85rem;
}

.custom-util-34 {
    transition: color .2s;
}

.modal-header .btn-close {
    background-color: #fff;
    border-radius: 50%;
    padding: 0.5rem;
    margin-bottom: 1rem;
}



.instagram-feed {
    padding: 60px 20px 70px;
    background-image: url('../img/banner/gym_pattern3.png');
    background-repeat: repeat;
    background-size: contain;
    text-align: center;
}

.instagram-feed .eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4cc9c0;
    margin-bottom: 10px;
}

.instagram-feed .heading {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1f36;
    margin-bottom: 10px;
}

.instagram-feed .subheading {
    font-size: 0.98rem;
    color: #7a8099;
    margin-bottom: 36px;
}

/* Feed grid */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 0.8fr);
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 36px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feed-card {

    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    flex-shrink: 0;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
}

.feed-card img {
    border-radius: 20px;
}

.feed-card:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}



/* CTA Button */
.btn-instagram {
    background-color: #3dbdb5;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
}

.btn-instagram:hover {
    background-color: #2fa49c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 189, 181, 0.35);
}

.btn-instagram .arrow {
    margin-left: 6px;
}

@media (max-width: 768px) {
    .gym-career {
        padding-top: 0 !important;
    }

    .custom-career-accordion {
        margin-top: 0rem !important;
    }

    .form-secure-text {
        display: block !important;
    }

    .contect-lottrie-box {
        margin-bottom: 2rem;
    }

    .btn-lime-pill {
        font-size: 12px;
    }

    .gallery-filters .filter-btn {
        width: 48% !important;
    }

    .location-gallery h2 {
        font-size: 1.8rem !important;
    }

    .lorna-badge {
        right: 0 !important;
    }

    .location-form .col-lg-6 {
        padding: 0 !important;
    }

    .form-card-title {
        font-size: 1.2rem !important;
    }

    .schedule-title {
        font-size: 1.4rem !important;
    }

    .feed-grid {
        grid-template-columns: repeat(2, 0.8fr);
    }

    .section-philosophy {
        padding: 3rem 0;
    }

    .section-programs {
        padding: 3rem 0;
    }

    .section-franchise {
        padding: 3rem 1rem;
    }

    .site-footer {
        margin-top: 1rem;
    }

    .hero-img-wrap {
        animation: unset;
    }

    .text-gradient {
        animation: unset;
    }

    .section-programs {
        margin: 0 0.5rem;
    }

    .franchise-stat .fval {
        font-size: 1.2rem;
    }

    .franchise-stat {
        height: 100%;
    }

    .section-locations {
        padding: 3rem 0;
    }

    .instagram-feed .heading {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .feed-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

}

/* ─── Feed Card cursor ──────────────────────────────────── */
.feed-card a {
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feed-card a::after {
    content: '\f00e';
    font-family: 'bootstrap-icons';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: rgba(236, 31, 143, 0.55);
    opacity: 0;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}

.feed-card a:hover::after {
    opacity: 1;
    border-radius: 30px;
}

/* ─── Back to Top Button ────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -6px rgba(236, 31, 143, 0.5);
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    pointer-events: none;
    transition:
        opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s ease;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    box-shadow: 0 16px 36px -8px rgba(236, 31, 143, 0.65);
    transform: translateY(-3px) scale(1.08);
}

.back-to-top:active {
    transform: scale(0.95);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* Pulse ring animation around the button */
.back-to-top::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(236, 31, 143, 0.45);
    animation: btt-ring 2s ease-out infinite;
    opacity: 0;
}

@keyframes btt-ring {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

/* ─── Blogs / Parenting Hub ─────────────────────────────── */
.section-blogs {
    padding: 6rem 0;
    background-color: var(--clr-bg);
}

.blog-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1) !important;
}

.blog-card .blog-img-container {
    border-radius: 1.5rem 1.5rem 0 0;
}

.blog-card .blog-content {
    border-radius: 0 0 1.5rem 1.5rem;
}

/* ─── Location Form Section ───────────────────────────── */
.location-form {

    position: relative;
    z-index: 1;
}

.location-form .container {
    background-image: linear-gradient(to top, rgb(172, 203, 238) 0%, rgb(231, 240, 253) 100%);
    padding: 3rem 1rem;
    border-radius: 40px;
}

.location-form .form-eyebrow {
    color: var(--clr-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.location-form .form-title {
    font-size: 2.4rem;
    line-height: 1.1;
    color: var(--clr-on-bg);
    font-weight: 600;
}

.location-form .text-pink {
    color: var(--clr-primary);
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
}

.location-form .form-description {
    font-size: 1.1rem;
    max-width: 90%;
    line-height: 1.6;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-icon.pink {
    background-color: rgba(236, 31, 143, 0.1);
    color: var(--clr-primary);
}

.feature-icon.teal {
    background-color: rgba(105, 200, 198, 0.1);
    color: #3aa8a6;
}

.feature-icon.peach {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--clr-secondary);
}

.form-card {
    border: none;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08) !important;
    border-radius: 40px !important;
}

.form-card-title {
    font-size: 2rem;
    color: var(--clr-on-bg);
    margin-bottom: 2rem;
}

.location-form .form-label {
    margin-bottom: 0.6rem;
    display: block;
    letter-spacing: 0.5px;
}

.location-form .form-control,
.location-form .form-select {
    padding: 1rem 1.25rem;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    background-color: #fafafb;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-form .form-control:focus,
.location-form .form-select:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(236, 31, 143, 0.08);
    background-color: #fff;
    outline: none;
}

.btn-confirm {
    background-color: var(--clr-primary);
    color: #fff;
    border-radius: 15px;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    box-shadow: 0 10px 30px rgba(236, 31, 143, 0.25);
}

.btn-confirm:hover {
    background-color: rgb(164, 0, 98);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 31, 143, 0.35);
    color: #fff;
}

/* Free Badge */
.free-badge {
    position: absolute;
    top: -40px;
    right: -30px;
    width: 110px;
    height: 110px;
    background-color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    transform: rotate(12deg);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    border: 2px solid #fff;
    animation: smoothBounce 3s ease-in-out infinite;
}

@keyframes smoothBounce {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-12px) rotate(15deg);
    }
}


.badge-content {
    text-align: center;
    line-height: 1.1;
}

.badge-content .pct {
    display: block;
    font-weight: 950;
    font-size: 1.6rem;
}

.badge-content small {
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .location-form .form-title {
        font-size: 2.75rem;
    }

    .free-badge {
        width: 90px;
        height: 90px;
        top: -30px;
        right: -10px;
    }

    .badge-content .pct {
        font-size: 1.3rem;
    }
}

.location-form .row {
    max-width: 1200px;
    margin: 0 auto;
}


/* ─── Location Hero ────────────────────────────────────── */
.location-hero {
    background-color: var(--clr-bg);
    background-image: url('../img/banner/gym_pattern3.png');
    background-repeat: repeat;
    background-size: contain;
    padding: 10rem 0 8rem;
    color: var(--clr-on-bg);
    position: relative;
    overflow: hidden;
}

.location-city-badge {
    background: #fff;
    border: 1px solid var(--clr-outline);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--clr-primary);
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.city-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(236, 31, 143, 0.2);
}

.location-hero-title {
    font-size: clamp(2.5rem, 6vw, 2.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--clr-on-bg);
    margin-bottom: 2.5rem !important;
}

.location-hero-title .text-yellow {
    color: var(--clr-primary);
    /* Changed to primary for better readability on light bg */
}

.location-contact-info .contact-icon {
    width: 56px;
    height: 56px;
    background: #ec1f8f;
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.location-contact-info .contact-icon::before,
.location-contact-info .contact-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ec1f8f;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: iconRipple 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.location-contact-info .contact-icon::after {
    animation-delay: 1.5s;
}

@keyframes iconRipple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.location-contact-info .phone-number {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--clr-on-bg);
}

.location-contact-info .phone-subtext {
    font-size: 0.95rem;
    color: #64748b;
}



.location-action-btns {
    margin-bottom: 3rem !important;
}

.btn-book-trial {
    background: var(--clr-primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-primary);
}

.btn-book-trial:hover {
    background: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(236, 31, 143, 0.3);
    color: #fff;
}

.btn-whatsapp {
    background: #22c55e;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
    color: #fff;
}

/* Stats Bar */
.location-stats-bar {
    background: #fff;
    border: 1px solid var(--clr-outline);
    border-radius: 1.5rem;
    padding: 1rem 2rem;
    margin-top: 2rem;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.417);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px 10px rgba(255, 255, 255, 1);
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--clr-primary);
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1.2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--clr-outline);
    margin: 0 2rem;
}

/* Map Card */
.location-map-card {
    background: #fff;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.map-view-container {
    height: 300px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.map-marker-icon {
    width: 64px;
    height: 64px;
    background: var(--clr-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 20px rgba(236, 31, 143, 0.3);
}

.map-label {
    font-weight: 800;
    font-size: 0.75rem;
    color: #94a3b8;
    letter-spacing: 2px;
}

.find-us-title {
    font-weight: 900;
    color: var(--clr-on-bg);
}

.location-address {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.open-status {
    font-weight: 700;
    font-size: 0.85rem;
    color: #0ea5e9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
}

.get-directions-link {
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
}

.get-directions-link:hover {
    text-decoration: underline;
    color: var(--clr-primary);
}

@media (max-width: 991px) {
    .location-hero {
        padding: 6rem 0 4rem;
    }

    .location-stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 45%;
    }
}

/* ─── Schedule Section ────────────────────────────────── */
.schedule-eyebrow {
    color: #69c8c6;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.schedule-title {
    color: var(--clr-on-bg);
    font-weight: 900;
    font-size: 2.75rem;
    font-family: var(--font-headline);
}

.schedule-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.class-card {
    background: #fff;
    border-radius: 2rem;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ededed;
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.08);
}

.class-card-top {
    border-radius: 1.5rem;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.class-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    color: #fff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 99px;
}

.class-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-title {
    font-weight: 800;
    color: var(--clr-on-bg);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-headline);
}

.class-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.class-select {
    background: #f8fafc;
    border: none;
    border-radius: 1rem;
    padding: 0.9rem 1.25rem;
    font-weight: 700;
    color: var(--clr-on-bg);
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px 12px;
    margin-top: auto;
    border: 1.3px solid #ededed;
}

.class-select:focus {
    box-shadow: none;
    outline: none;
    background-color: #f1f5f9;
}

/* Card Colors */
.card-pink .class-card-top {
    background: #fae4f1;
}

.card-pink .class-badge {
    background: #e81f8f;
}

.card-pink .class-icon {
    color: #e81f8f;
    fill: #e81f8f;
}

.card-mint .class-card-top {
    background: #e2f5f4;
}

.card-mint .class-badge {
    background: #69c8c6;
}

.card-mint .class-icon {
    color: #69c8c6;
    fill: #69c8c6;
}

.card-peach .class-card-top {
    background: #f4e8e1;
}

.card-peach .class-badge {
    background: #b44f10;
}

.card-peach .class-icon {
    color: #b44f10;
    fill: #b44f10;
}

/* ─── Meet Lorna Section ────────────────────────────────── */
.meet-lorna {
    background-image: linear-gradient(to top, #0c3483 0%, #a2b6df 100%, #6b8cce 100%, #a2b6df 100%);
    position: relative;
    overflow: hidden;
}

.lorna-card-container {
    max-width: 400px;
    margin: 0 auto;
}

.lorna-card-container img {
    border-radius: 30px;
    box-shadow: rgba(255, 255, 255, 0.357) 0px 2px 8px 0px;
}

.lorna-card-container::before {
    content: '';
    position: absolute;
    top: -15%;
    left: 65%;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(175, 207, 238, 0.364) 0%, rgba(255, 255, 255, 0) 65%);
    z-index: -1;
    pointer-events: none;
}

.lorna-image-card {
    background-color: #f4f6f9;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1) !important;
}

.lorna-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 2;
    padding: 1.25rem 1rem;
    background: var(--clr-primary);
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(236, 31, 143, 0.4);
    min-width: 110px;
    -webkit-animation: bounce-in-bottom 2.1s 3s infinite both;
    animation: bounce-in-bottom 2.1s 3s infinite both;
}



@-webkit-keyframes bounce-in-bottom {
    0% {
        -webkit-transform: translateY(500px);
        transform: translateY(500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(65px);
        transform: translateY(65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(28px);
        transform: translateY(28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-bottom {

    81% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


.lorna-quote-box {
    background: rgb(250, 250, 250);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 1.5rem;
    padding: 1rem 2.5rem;
    position: relative;
}

.lorna-quote-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 30px;
    border-left: 2px solid #afcdef;
    border-top: 2px solid #afcdef;
    border-bottom: 2px solid #afcdef;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    border-right: none;
    pointer-events: none;
}

.link-hover-fx {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.link-hover-fx:hover {
    transform: translateX(4px);
    opacity: 0.8;
}

/* Meet Lorna Typography Styles */
.lorna-icon {
    opacity: 0.3;
}

.lorna-name {
    opacity: 0.6;
}

.lorna-badge-subtext {
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.lorna-eyebrow {
    color: var(--clr-primary);
    letter-spacing: 2px;
}

.lorna-heading {
    color: var(--light-color);
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.02em;
}

.lorna-description {
    font-size: 1.05rem;
    line-height: 1.8;
}

.lorna-quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.lorna-quote-author {
    color: var(--clr-primary);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ─── Location Gallery ───────────────────────────────────── */
.gallery-filters .filter-btn {
    background: #ffffff;
    border: 1px solid #bdbdbd;
    color: #475569;
    border-radius: 2rem;
    padding: 0.65rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-filters .filter-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.gallery-filters .filter-btn.active {
    background: #232228;
    border-color: #232228;
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item {
        grid-row: span 1;
    }

    .gallery-item.large-item {
        grid-column: span 1;
        grid-row: span 2;
    }
}

.gallery-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-height: 250px;
    /* For mobile */
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(28, 48, 68, 0.9) 0%, rgba(28, 48, 68, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #ffffff;
    pointer-events: none;
}

.gallery-card.video-card .gallery-overlay {
    height: 100%;
    background: linear-gradient(to top, rgba(23, 30, 38, 0.95) 0%, rgba(23, 30, 38, 0.4) 50%, rgba(23, 30, 38, 0) 100%);
    pointer-events: auto;
    /* To allow clicking read more */
}

.gallery-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.gallery-type {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.play-btn-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* Ripple animation behind play-btn-icon */
.play-btn-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
    animation: icon-ripple-pulse 2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.gallery-card:hover .play-btn-icon {
    transform: scale(1.1);
}

/* ─── Upcoming Events ───────────────────────────────────── */
.section-upcoming-events {
    padding: 6rem 0;
    background-color: var(--clr-bg);
}

.event-eyebrow {
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.event-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--clr-on-bg);
    margin-bottom: 1.5rem;
}

.event-desc {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.btn-teal-pill {
    background-color: var(--teal);
    color: #ffffff;
    font-weight: 700;
    border-radius: var(--radius-pill);
    padding: 0.75rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.btn-teal-pill:hover {
    background-color: #5bb3b1;
    transform: translateY(-2px);
    color: #ffffff;
}

.event-card {
    background: linear-gradient(to bottom, #0c3483 0%, #a2b6df 100%, #6b8cce 100%, #a2b6df 100%);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.event-date-circle {
    background-color: var(--teal);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.event-date-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(217, 249, 93, 0.6);
    z-index: -1;
    animation: icon-ripple-pulse 2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.event-date-circle .date-num {
    font-size: 1.5rem;
    font-weight: 800;
}

.event-date-circle .date-month {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-badge-lime {
    background-color: #d9f95d;
    color: #1e2034;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-card-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.event-card-desc {
    color: var(--light-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.event-tag {
    background: rgba(4, 1, 1, 0.422);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--light-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
}

.btn-lime-pill {
    background-color: #d9f95d;
    color: #1e2034;
    font-weight: 700;
    border-radius: var(--radius-pill);
    padding: 0.85rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.btn-lime-pill:hover {
    background-color: #c5e64e;
    transform: translateY(-2px);
    color: #1e2034;
}

/* ─── Anthology Section ──────────────────────────────────── */
.section-anthology {
    background-color: #fafafb;
}

.anthology-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
}

.anthology-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--clr-on-bg);
}

.anthology-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.6;
}

.anthology-card {
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anthology-card.card-light {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.anthology-card.card-teal {
    background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
    ;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.164);
}

.anthology-card.featured {
    transform: scale(1.05);
    z-index: 2;
}

@media (max-width: 991px) {
    .anthology-card.featured {
        transform: scale(1);
    }
}

.anthology-card .stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1.1rem;
}

.anthology-card.card-light .stars i {
    color: #2b7a3e;
    /* Dark green for stars */
}

.anthology-card .quote-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    color: #4b5563;
}

.anthology-card.card-teal .quote-text {
    color: rgba(255, 255, 255, 0.95);
}

.anthology-card .author-name {
    font-weight: 700;
    font-size: 1rem;
}

.anthology-card .author-title {
    font-size: 0.8rem;
}

.anthology-card .quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    opacity: 0.15;
}

/* ─── Location Questions Banner ─────────────────────────── */
.location-questions-banner {
    background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
    border-radius: 3rem;

}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.location-questions-heading {
    font-size: 1.15rem;
    color: #113636;
}

.location-questions-text {
    font-size: 0.95rem;
    color: rgba(17, 54, 54, 0.8);
}

.location-questions-btn {
    color: #113636 !important;
    font-size: 0.95rem;
    transition: transform 0.2s ease;
    border: none;
    animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
}

.location-questions-btn:hover {
    transform: scale(1.05);
    color: #113636 !important;
}

.location-questions-btn i {
    font-size: 1.2rem;
}


.single-gym {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* ─── Dark Timeline Section ───────────────────────────── */
.dark-timeline-section {
    background: url('../img/bg-line.png'), linear-gradient(to top, #0c3483 0%, #a2b6df 100%, #6b8cce 100%, #a2b6df 100%);
    background-size: 15% contain;
    background-position: center 60%;
    background-repeat: no-repeat;
    position: relative;
}

.dark-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.timeline-desktop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 60px 1fr;
    gap: 0 30px;
    position: relative;
    margin: 4rem 0;
}

.timeline-grid-line {
    position: absolute;
    top: calc(50% - 2px);
    left: -5%;
    right: -5%;
    height: 4px;
    background: linear-gradient(90deg, rgba(236, 31, 143, 0) 0%, #10060b 25%, #010001 50%, #0d1414 75%, rgba(245, 158, 11, 0) 100%);
    border-radius: 2px;
    z-index: 0;
}

.tg-col-1 {
    grid-column: 1;
}

.tg-col-2 {
    grid-column: 2;
}

.tg-col-3 {
    grid-column: 3;
}

.tg-col-4 {
    grid-column: 4;
}

.tg-top {
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.tg-bottom {
    grid-row: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.tg-node {
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* The cards */
.timeline-card {
    position: relative;
    width: 100%;
    position: relative;
    overflow: hidden;

    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    z-index: 2;
    transition: transform 0.3s ease, border-color 0.3s ease;
    background: linear-gradient(135deg, #172c5f 0%, #251ba3 50%, #4c1d95 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.timeline-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));
}

.timeline-card p {
    color: var(--light-color);
}

.timeline-card:hover {
    transform: translateY(-5px);
}

.tg-bottom .timeline-card:hover {
    transform: translateY(5px);
}


.timeline-card:hover.card-pink {
    box-shadow: 0 10px 40px rgba(236, 31, 143, 0.15);
    border-color: rgba(236, 31, 143, 0.4);
}

.timeline-card:hover.card-purple {
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
}

.timeline-card:hover.card-teal {
    box-shadow: 0 10px 40px rgba(58, 168, 166, 0.15);
    border-color: rgba(58, 168, 166, 0.4);
}

.timeline-card:hover.card-orange {
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
}


/* Nodes */
.tg-node i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
    background: #111;
}

/* Glow effects */
.node-pink svg {
    background: linear-gradient(135deg, #172c5f 0%, #251ba3 50%, #4c1d95 100%);
    box-shadow: rgb(15, 127, 226) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.2) -3px -3px 6px 1px inset;
    padding: 0.4rem;
    border-radius: 50%;
}

.node-purple i,
.mobile-node.node-purple {
    background: linear-gradient(135deg, #172c5f 0%, #251ba3 50%, #4c1d95 100%);
    box-shadow: rgb(15, 127, 226) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.2) -3px -3px 6px 1px inset;
    set;
}

.node-teal i,
.mobile-node.node-teal {
    background: linear-gradient(135deg, #172c5f 0%, #251ba3 50%, #4c1d95 100%);
    box-shadow: rgb(15, 127, 226) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.2) -3px -3px 6px 1px inset;
}

.node-orange i,
.mobile-node.node-orange {
    background: linear-gradient(135deg, #172c5f 0%, #251ba3 50%, #4c1d95 100%);
    box-shadow: rgb(15, 127, 226) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.2) -3px -3px 6px 1px inset;
}

/* Connectors */
.timeline-connector {
    width: 2px;
    height: 30px;
    opacity: 0.7;
}

.connector-pink {
    background: linear-gradient(to bottom, transparent, #000);
}

.connector-purple {
    background: linear-gradient(to top, transparent, #000);
}

.connector-teal {
    background: linear-gradient(to bottom, transparent, #000);
}

.connector-orange {
    background: linear-gradient(to top, transparent, #000);
}

.connector-down {
    margin-top: 10px;
}

.connector-up {
    margin-bottom: 10px;
}

/* Large background numbers */
.card-bg-num {
    position: absolute;
    bottom: 0;
    right: 8px;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(238, 238, 238, 0.525);
    z-index: 0;
    pointer-events: none;
}

/* Specific text colors */
.text-pink {
    color: #fff;
}

.text-purple {
    color: #fff;
}

/* Lighter purple for text readability */
.text-teal {
    color: #fff;
}

.text-orange {
    color: #fff;
}

.tracking-wider {
    letter-spacing: 0.15em;
}

.mobile-timeline-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}

.mobile-timeline-swiper .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.movement-life {
    padding: 6rem 0;
}

.orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The dashed orbital path */
.orbit-path {
    position: absolute;
    width: 85%;
    height: 85%;
    border: 2px dashed #d1d5db;
    border-radius: 50%;
}

/* Main rotating wrapper */
.orbit-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate-orbit 40s linear infinite;
}

/* Individual items */
.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Counter-rotate the content so text/icons stay upright */
.item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: counter-rotate 40s linear infinite;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.item-content:hover {
    transform: scale(1.1);
}

/* Circle styling */
.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.label {
    margin-top: 8px;
    font-weight: 700;
    font-size: 14px;
}

/* Center Circle */
.center-circle {
    position: relative;
    z-index: 10;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6dc2c9 0%, #5b71b3 100%);
    align-content: center;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 20px 40px rgba(91, 113, 179, 0.3);
    padding: 20px;
    line-height: 20px;
}

/* Position items around the orbit */
.item-1 {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-212px);
}

.item-2 {
    transform: translate(-50%, -50%) rotate(120deg) translateY(-212px);
}

.item-3 {
    transform: translate(-50%, -50%) rotate(240deg) translateY(-212px);
}

/* Animations */
@keyframes rotate-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counter-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Colors */
.bg-pink {
    background-color: #ec1f8f;
}

.bg-orange {
    background-color: #f4511e;
}

.bg-blue {
    background: linear-gradient(135deg, #172c5f 0%, #251ba3 50%, #4c1d95 100%);
    ;
}

@media (max-width: 640px) {
    .cta-box {
        padding: 3rem 1.3rem;
    }

    .movement-life {
        padding-top: 0rem;
    }

    .orbit-container {
        transform: scale(0.6);
        -webkit-transform: scale(0.6);
        -moz-transform: scale(0.6);
        -ms-transform: scale(0.6);
        -o-transform: scale(0.6);
        float: right;
        margin-right: -5rem;
    }
}


/* ══════════════════════════════════════════════════
   THREE-LEARNING CARDS
══════════════════════════════════════════════════ */

/* ── Hero Card ─────────────────────────────────── */


.three-learning {
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    padding: 1rem;
    border-radius: 30px;
    margin-top: 3rem;
}

.tl-hero-card {
    position: relative;
    border-radius: 1.35rem;
    overflow: hidden;
    height: 100%;
    min-height: 360px;
    background-image: url('../img/card/01-insta.webp');
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tl-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg,
            rgba(12, 10, 28, 0.30) 0%,
            rgba(8, 6, 20, 0.80) 100%);
    border-radius: inherit;
    z-index: 1;
}

.tl-hero-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.tl-hero-icon-wrap {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-hero-icon-wrap img {
    width: 32px;
    filter: brightness(0) invert(1);
}

.tl-hero-content {
    position: relative;
    z-index: 2;
}

.tl-hero-heading {
    font-family: var(--font-headline);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 1.35rem;
}

.tl-hero-btn {
    display: inline-block;
    background: var(--clr-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.65rem 1.45rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tl-hero-btn:hover {
    background: #c91879;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(236, 31, 143, 0.4);
}

/* ── Feature Cards ─────────────────────────────── */
.tl-feature-card {
    background: #fff;
    border: 1.5px solid var(--clr-outline);
    border-radius: 1.35rem;
    padding: 1.85rem 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tl-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
    border-color: transparent;
}

/* ── Feature Icon Badge ─────────────────────────── */
.tl-feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.tl-feature-card:hover .tl-feature-icon {
    transform: scale(1.12) rotate(-5deg);
}

.tl-icon-pink {
    background: linear-gradient(135deg, #ec1f8f 0%, #ff6ec7 100%);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.tl-icon-purple {
    background: #f4511e;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.tl-icon-amber {
    background: linear-gradient(135deg, #172c5f 0%, #251ba3 50%, #4c1d95 100%);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

/* ── Feature Title ─────────────────────────────── */
.tl-feature-title {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-on-bg);
    margin: 0;
}

/* ── Feature Description ───────────────────────── */
.tl-feature-desc {
    font-size: 0.915rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* ── Learn More Link ───────────────────────────── */
.tl-feature-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-on-bg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    transition: color 0.25s ease, gap 0.25s ease;
}

.tl-feature-link i {
    transition: transform 0.25s ease;
}

.tl-feature-link:hover {
    color: var(--clr-primary);
    gap: 0.65rem;
}

.tl-feature-link:hover i {
    transform: translateX(4px);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 767.98px) {
    .section-anthology {
        margin-top: 3rem;
    }

    .contect-lottrie-box {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .contect-lottrie-box-two {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .why-gym-badge {
        bottom: 4.5rem !important;
        left: 0 !important;
    }

    .why-little-gym {
        padding-top: 3rem;
    }

    .own-hero-badge svg {
        width: 60px;
        height: 60px;
    }

    .own-hero-badge {
        font-size: 1rem;
    }

    .own-gym-hero {
        padding-top: 7rem;
    }

    .location-hero-title {
        font-size: 2rem;
        margin-bottom: 1.2rem !important;
    }

    .btn-book-trial {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .own-gym-counter .col-md-6 {
        width: 50%;
    }

    .tl-hero-card {
        min-height: 280px;
    }

    .three-learning .col-sm-6 {
        margin-bottom: 2rem;
    }
}

/* ─── Stage Card ────────────────────────────────────────── */
.stage-card {

    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    margin: 0 auto;
    font-family: var(--font-body);
    height: 100%;
}

.stage-card-img-wrap {
    position: relative;
    height: 260px;
}

.stage-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stage-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 5px;
    color: #fff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    background-color: var(--clr-primary);
}



.stage-card-body {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 14px 7px rgba(255, 255, 255, 0.7);
    overflow: hidden;
    height: 100%;
}

.stage-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.stage-card-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));
}

.stage-card-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.stage-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stage-card-meta i {
    font-size: 1rem;
}

.stage-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding-right: 2.5rem;
}

.stage-card-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease 0.1s, margin 0.4s ease;
    margin-bottom: 0;
}

.stage-card:hover .stage-card-desc {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 1rem;
}

.stage-card-arrow {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #000;
    font-weight: 300;
}

.stage-wise {
    padding: 0 0 5rem 0;
}

.stage-wise .heading {
    text-align: center;
    padding-bottom: 3rem;
}

/* ═══════════════════════════════════════════════════════════
   ISOMETRIC PROCESS TIMELINE  (.time-line)
═══════════════════════════════════════════════════════════ */

/* ── Keyframe animation (no data-aos dependency) ─────────── */
@keyframes tl-fade-up {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Each animated column starts hidden */
.tl-anim {
    opacity: 0;
}

/* Triggered by JS IntersectionObserver adding .tl-visible */
.tl-anim.tl-visible {
    animation: tl-fade-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--tl-delay, 0s);
}

/* Section wrapper */
.section-process-timeline {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Subtle background decoration */
.section-process-timeline::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 50%, rgba(0, 198, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 85% 50%, rgba(233, 30, 161, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Outer wrapper ─────────────────────────────────────── */
.time-line {
    position: relative;
    padding-bottom: 1rem;
}

/* ── SVG zigzag connector ──────────────────────────────── */
.tl-connector-wrap {
    position: absolute;
    /* Vertically centred in the top half where diamonds sit */
    top: 55px;
    /* below the step-number + into diamond zone */
    left: 0;
    width: 100%;
    height: 220px;
    pointer-events: none;
    z-index: 0;
}

.tl-svg-line {
    width: 100%;
    height: 100%;
    top: -25%;
    position: relative;
    right: -4%;

}

/* ── Steps row ─────────────────────────────────────────── */
.tl-steps-row {
    position: relative;
    z-index: 1;
}

/* Each column */
.tl-col {
    display: flex;
    justify-content: center;
}

/* ── Single step ───────────────────────────────────────── */
.tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 220px;
}

/* Bottom variant: content above, diamond in middle, number at bottom */
.tl-step--bottom {
    flex-direction: column;
    /* reset; we manually re-order via HTML */
}

/* ── Step numbers ──────────────────────────────────────── */
.tl-num {
    font-family: var(--font-headline);
    font-size: 2.2rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    display: block;
    margin-bottom: 0.55rem;
    /* Default: blue→purple gradient (steps 01 & 03 top) */
    background: linear-gradient(135deg, #00c6ff 0%, #7c5cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.3rem;
}

/* Step 02 number — sits below diamond in HTML (after content) */
.tl-num--bottom {
    margin-bottom: 0;
    margin-top: 0.55rem;
    background: linear-gradient(135deg, #7c5cbf 0%, #e91ea1 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Step 03 — purple2 gradient */
.tl-num--purple2 {
    background: linear-gradient(135deg, #7c5cbf 0%, #6c35b5 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Step 04 — pink gradient */
.tl-num--pink {
    background: linear-gradient(135deg, #a855f7 0%, #e91ea1 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* ── Diamond card wrapper ──────────────────────────────── */
.tl-diamond-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    /* Extra space for glow overflow & shadow */
    margin: 0.5rem 0;
}

/* The diamond shape (rotated square) */
.tl-diamond {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 22px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.09),
        0 2px 6px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.tl-diamond:hover {
    transform: rotate(45deg) scale(1.09) translateY(-4px);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.13),
        0 4px 10px rgba(0, 0, 0, 0.06);
}

/* ── Diamond border colour variants ───────────────────── */
/* .tl-diamond--blue {
    border: 2px solid transparent;
    border-top-color:  #00c6ff;
    border-left-color: #00c6ff;
}

.tl-diamond--purple {
    border: 2px solid transparent;
    border-top-color:   #7c5cbf;
    border-left-color:  #7c5cbf;
    border-right-color: #7c5cbf;
}

.tl-diamond--purple2 {
    border: 2px solid transparent;
    border-top-color:  #6c35b5;
    border-left-color: #6c35b5;
}

.tl-diamond--pink {
    border: 2px solid transparent;
    border-top-color:   #e91ea1;
    border-left-color:  #e91ea1;
    border-right-color: #e91ea1;
} */

/* ── Glow blob (positioned below & centred, then counter-rotated) */
.tl-glow {
    position: absolute;
    width: 120px;
    height: 80px;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.40;
    bottom: -24px;
    left: 50%;
    /* counter-rotate so glow appears as a horizontal oval beneath the card */
    transform: translateX(-50%) rotate(-45deg);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tl-diamond:hover .tl-glow {
    opacity: 0.65;
}

.tl-glow--blue {
    background: radial-gradient(circle, #00c6ff 0%, #0072ff 100%);
}

.tl-glow--purple {
    background: radial-gradient(circle, #b06eff 0%, #7c5cbf 100%);
}

.tl-glow--purple2 {
    background: radial-gradient(circle, #9b59b6 0%, #6c35b5 100%);
}

.tl-glow--pink {
    background: radial-gradient(circle, #ff6ec4 0%, #e91ea1 100%);
}

/* ── Icon inside diamond (counter-rotated to stay upright) */
.tl-icon {
    transform: rotate(-45deg);
    width: 70px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0bec5;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.tl-diamond:hover .tl-icon {
    color: #475569;
}

.tl-icon svg {
    width: 100%;
    height: 100%;
}

/* ── Content block ─────────────────────────────────────── */
.tl-content {
    text-align: left;
    width: 100%;
}

.tl-content--top {
    margin-top: 1.25rem;
}

.tl-content--bottom {
    margin-bottom: 1.25rem;
}

/* Title */
.tl-title {
    font-family: var(--font-headline);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
    margin-top: 2rem;
}

.tl-title--blue {
    color: #0096c7;
}

.tl-title--purple {
    color: #7c5cbf;
}

.tl-title--purple2 {
    color: #6c35b5;
}

.tl-title--pink {
    color: #e91ea1;
}

/* Coloured underline bar */
.tl-title-bar {
    width: 2.2rem;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 0.65rem;
}

.tl-bar--blue {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.tl-bar--purple {
    background: linear-gradient(90deg, #b06eff, #7c5cbf);
}

.tl-bar--purple2 {
    background: linear-gradient(90deg, #9b59b6, #6c35b5);
}

.tl-bar--pink {
    background: linear-gradient(90deg, #ff6ec4, #e91ea1);
}

/* Description */
.tl-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(30, 27, 75, 0.55);
    margin: 0;
}

/* ── Desktop layout: alternate top / bottom ───────────── */
@media (min-width: 992px) {
    .tl-connector-wrap {
        top: 60px;
        height: 240px;
    }

    .tl-col-top {
        padding-top: 0;
    }

    /* Shift bottom columns down so diamonds sit lower = zigzag */
    .tl-col-bottom {
        padding-top: 5rem;
    }

    .tl-step,
    .tl-step--bottom {
        min-height: 440px;
    }

    .tl-step--bottom {
        /* Content block is at top in HTML, diamond + num below */
        flex-direction: column;
    }
}

/* ── Tablet (2×2 grid) ─────────────────────────────────── */
@media (min-width: 576px) and (max-width: 991.98px) {
    .tl-connector-wrap {
        display: none !important;
    }

    .tl-col-bottom {
        padding-top: 0;
    }

    /* Both variants look the same on tablet */
    .tl-step--bottom {
        flex-direction: column;
    }

    .tl-content--bottom {
        margin-bottom: 0;
        margin-top: 1.25rem;
        order: 3;
    }

    .tl-num--bottom {
        margin-top: 0;
        margin-bottom: 0.55rem;
        order: 0;
    }
}

/* ── Mobile (single column) ────────────────────────────── */
@media (max-width: 575.98px) {
    .tl-connector-wrap {
        display: none !important;
    }

    .tl-step,
    .tl-step--bottom {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.1rem;
        max-width: 100%;
    }

    .tl-diamond-wrap {
        width: 84px;
        height: 84px;
        flex-shrink: 0;
        margin: 0;
    }

    .tl-diamond {
        width: 84px;
        height: 84px;
        border-radius: 14px;
    }

    .tl-icon {
        width: 50px;
        height: 50px;
    }

    .tl-num,
    .tl-num--bottom,
    .tl-num--purple2,
    .tl-num--pink {
        display: none;
    }

    .tl-content--top,
    .tl-content--bottom {
        margin: 0;
        padding-top: 0.25rem;
    }

    .tl-col {
        padding-left: 0;
        border-left: none;
    }
}


.own-count-box {
    background: #F5F5F5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 2px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    height: 100%;
    align-content: center;
}

.own-count-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.own-count-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));
}

.own-gym-counter .col-md-6 {
    margin-bottom: 1rem;
}


.own-gym-hero {
    background-color: var(--clr-bg);
    background-image: url('../img/banner/gym_pattern3.png');
    background-repeat: repeat;
    background-size: contain;
    padding: 10rem 0 3rem;
    color: var(--clr-on-bg);
    position: relative;
    overflow: hidden;
}

.own-hero-badge {
    background: #fff;
    border: 1px solid var(--clr-outline);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--clr-primary);
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* ─── Own Gym Advantage ─────────────────────────────────── */
.own-gym-advantage {
    background-color: var(--clr-bg);
}

.adv-card {
    background: #F5F5F5;
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    box-shadow: rgba(60, 64, 67, 0.10) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;

}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(60, 64, 67, 0.10) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.adv-icon-wrap {
    width: 5rem;
    height: 5rem;
    color: var(--clr-on-bg);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.adv-card:hover .adv-icon-wrap {
    transform: scale(1.05);
}

.adv-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-on-bg);
}

.adv-desc {
    font-size: 0.9rem;
    color: rgba(30, 27, 75, 0.65);
    line-height: 1.6;
}



.why-gym-container {
    margin: 0 auto;
}

.why-gym-container img {
    border-radius: 30px;
    box-shadow: rgba(255, 255, 255, 0.357) 0px 2px 8px 0px;
}

.why-gym-container::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 100%;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(175, 207, 238, 0.364) 0%, rgba(255, 255, 255, 0) 65%);
    z-index: -1;
    pointer-events: none;
}

.why-gym-image-card {
    background-color: #f4f6f9;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1) !important;
}

.why-gym-badge {
    position: absolute;
    bottom: 2.5rem;
    left: -1.5rem;
    z-index: 2;
    padding: 1.25rem 1rem;
    background: var(--clr-primary);
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(236, 31, 143, 0.4);
    min-width: 110px;
    -webkit-animation: bounce-in-bottom 2.1s 3s infinite both;
    animation: bounce-in-bottom 2.1s 3s infinite both;
}

.why-gym-right-badge {
    position: absolute;
    top: 0.5rem;
    right: 2rem;
    z-index: 2;
    padding: 1.25rem 1rem;
    background: var(--teal);
    border-radius: 1.25rem;
    min-width: 110px;


    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

@-webkit-keyframes puff-in-center {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-filter: blur(2px);
        filter: blur(2px);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes puff-in-center {
    0% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        -webkit-filter: blur(1px);
        filter: blur(1px);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.own-gym-opper-card {
    background: linear-gradient(180deg, rgba(237, 237, 237, 0.37) 0%, rgba(237, 237, 237, 0) 50%, rgb(255, 255, 255) 100%);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    margin-bottom: 1rem;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.own-gym-opper-card h3 {
    font-size: 1.2rem;

}

.own-gym-opper-card p {
    font-size: 0.8rem;
}

.why-little-gym .mar {
    margin-top: 3rem;
}

/* Swiper Carousel Styling for Own Gym section */
.own-gym-opper-swiper .swiper-pagination-bullet-active {
    background: var(--clr-primary, #ec1f8f);
}

/* Remove default Swiper arrows since we use SVG */
.own-gym-opper-swiper .swiper-button-prev::after,
.own-gym-opper-swiper .swiper-button-next::after {
    display: none;
}

.own-gym-opper-swiper .swiper-button-prev,
.own-gym-opper-swiper .swiper-button-next {
    color: var(--clr-primary, #ec1f8f);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative !important;
    /* Override Swiper's absolute positioning */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}



.why-little-gym .own-gym-opper-swiper {
    height: 100%;
}

.own-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 99;
    top: -20px;
}

/* Own Gym Number Section */
.own-gym-number {


    background-color: transparent;
    padding: 3rem 0;
    width: 100%;
    border-radius: 30px;
    border: 1.5px dashed var(--teal);
    max-width: 1200px;
    margin: 2rem auto;
}

.own-gym-number-inner {
    gap: 1.5rem;
}

.own-gym-number .number-item {
    flex: 1 1 auto;
    min-width: 150px;
}

.own-gym-number .number-val {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.own-gym-number .number-lbl {
    font-size: 0.95rem;
    color: #a3a3a3;
    line-height: 1.4;
    margin-bottom: 0;
}

.own-gym-number .number-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
}

.text-teal {
    color: #5bc5c1 !important;
}

.text-pink {
    color: #ec1f8f !important;
}

.text-green {
    color: #a4cc2d !important;
}

.text-orange {
    color: #f26522 !important;
}

@media (max-width: 1199px) {
    .own-gym-number .number-divider {
        display: none !important;
    }

    .own-gym-number-inner {
        justify-content: center;
    }

    .own-gym-number .number-item {
        margin-bottom: 1.5rem;
    }
}

/* --- Franchise Accordion --- */
.franchise-accordion {
    display: flex;
    width: 100%;
    height: 400px;
    gap: 4px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #0f172a;
}

.franchise-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.franchise-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.franchise-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: height 0.6s ease, background 0.6s ease;
}

.franchise-item:hover::after {
    height: 80%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
}

.vertical-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    z-index: 2;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.franchise-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    padding: 0 15px;
    color: white;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.franchise-content h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    transition: transform 0.6s ease;
}

.franchise-content p {
    margin: 8px 0 0 0;
    font-size: 0.85rem;
    color: #e2e8f0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.6s ease, max-height 0.6s ease;
    line-height: 1.4;
    white-space: normal;
}

/* Hover expansion */
.franchise-item:hover {
    flex: 3.5;
}

.franchise-item:hover .vertical-title {
    opacity: 0;
    visibility: hidden;
}

.franchise-item:hover .franchise-content {
    opacity: 1;
    visibility: visible;
}

.franchise-item:hover .franchise-content p {
    opacity: 1;
    max-height: 80px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .franchise-accordion {
        flex-direction: column;
        height: 75vh;
        min-height: 600px;
    }

    .franchise-item {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #0f172a;
    }

    .franchise-item:last-child {
        border-bottom: none;
    }

    .franchise-item::after {
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    }

    .franchise-item:hover::after {
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .franchise-content {
        bottom: 50%;
        transform: translateY(50%);
        padding: 0 20px;
        opacity: 1;
        visibility: visible;
    }

    .vertical-title {
        display: none;
    }

    .franchise-content h3 {
        font-size: 1.15rem;
        white-space: normal;
    }

    .franchise-item:hover .franchise-content p {
        max-height: 80px;
        margin-top: 6px;
    }
}

@media (max-width: 575px) {
    .franchise-accordion {
        height: 85vh;
        min-height: 500px;
        border-radius: 12px;
    }

    .franchise-content {
        padding: 0 10px;
    }

    .franchise-content h3 {
        font-size: 1rem;
    }

    .franchise-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* ─── Own Honest Disclaimer ─────────────────────────────── */
.own-honest {
    position: relative;
    padding: 2rem 0;
    background-image: linear-gradient(to top, rgb(172, 203, 238) 0%, rgb(250, 250, 251) 100%);
}

.honest-disclaimer-box {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 35px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.honest-label {
    color: var(--clr-primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.honest-title {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.2;
    color: #212529;
    margin-bottom: 0;
}

.honest-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #6c757d;
    font-size: 1.05rem;
    font-weight: 500;
}

.honest-list li:last-child {
    margin-bottom: 0;
}

.honest-x {
    color: #adb5bd;
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .honest-disclaimer-box {
        padding: 40px 30px;
        border-radius: 25px;
    }

    .honest-title {
        font-size: 1.8rem;
    }
}

.own-honest::after {
    content: "";
    clip-path: ellipse(70% 100% at 50% 100%);
    background-color: #b0cded;
    width: 100%;
    height: 6rem;
    position: absolute;

    left: 0;
    transform: scaleY(-1);
}


.location-stats-bar .stat-value {
    font-size: 1.6rem !important;
}

/* ─── Gym Class Sticky Header ───────────────────────────── */
.gym-class-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1040;
}

.gym-class-nav-wrapper {
    width: 100%;
}

.gym-class-nav {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gym-class-nav::-webkit-scrollbar {
    display: none;
}

.gym-class-nav .nav-link {
    font-family: var(--font-headline);
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.gym-class-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 2px;
    background-color: var(--tab-border-color, transparent);
    transition: width 0.3s ease;
}

.gym-class-nav .nav-link.active-tab::after {
    width: 30px;
}

.gym-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* ─── Class Parents Section ───────────────────────────── */
.class-parents {
    padding: 3rem 0 0;
}

.class-parents .section-label {
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.class-parents .heading {
    color: #273787;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.class-parents .description {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.6;
}

.class-parents .btn-explore {
    background-color: #046a62;
    color: #fff;
    border-radius: 2rem;
    padding: 0.85rem 1.8rem;
    font-weight: 800;
    font-family: var(--font-headline);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease, transform 0.2s;
}

.class-parents .btn-explore:hover {
    background-color: #03524c;
    transform: translateY(-2px);
    color: #fff;
}

.class-parents .progress-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.class-parents .progress-label {
    width: 140px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #273787;
}

/* ─── Custom FAQ Accordion ──────────────────────────────── */
.class-faq {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f8fc 0%, #f0f3fa 100%);
}

.faq-subtitle {
    color: #4db6ac;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.faq-main-title {
    font-size: 2.6rem;
    color: #1e1b4b;
}

.faq-desc {
    max-width: 600px;
}

.class-parents .progress-track {
    flex-grow: 1;
    height: 20px;
    background-color: #e2e8f0;
    border-radius: 20px;
    margin: 0 1rem;
    position: relative;
}

.class-parents .progress-bar {
    position: absolute;
    height: 100%;
    border-radius: 20px;
}

.class-parents .progress-age {
    width: 80px;
    text-align: right;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

/* Colors for progress bars */
.bg-prog-pink {
    background-color: #ec1f8f;
}

.bg-prog-teal {
    background-color: #4dd0e1;
}

.bg-prog-blue {
    background-color: #3f51b5;
}

.bg-prog-orange {
    background-color: #f4511e;
}

.bg-prog-purple {
    background-color: #ab47bc;
}


.class-parents .card {
    border-radius: 30px;
}

/* Child Class Card */
.class-card-item {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(236, 31, 143, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.class-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--clr-primary);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.class-card-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
}

.class-card-age {
    font-size: 0.75rem;
    font-weight: 800;
    color: #717171;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.class-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #002b5e;
}

.class-card-desc {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    font-family: var(--font-body);

}

.class-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.class-card-tag {
    font-size: 0.75rem;
    color: #555;
    background: #fff;
    border: 1px solid rgba(236, 31, 143, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: var(--font-body);
}

.class-card-btn {
    width: 100%;
    background-color: var(--clr-primary);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    transition: background 0.3s;
    font-family: var(--font-headline);
}

.class-card-btn:hover {
    background-color: var(--clr-primary-dark);
}

.class-card-link {
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-headline);
    transition: color 0.3s;
}

.class-card-link:hover {
    color: var(--clr-primary-dark);
    text-decoration: none;
}

.gym-class-child {
    padding: 1rem 0;
}

.gym-class-child .class-head {
    background: var(--clr-primary);
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 30px;

}

.gym-class-child .head-border {
    position: relative;
    /* border: 1px solid #717171; */
    border-radius: 30px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    backdrop-filter: blur(5px);
    align-items: center;
    padding: 0.5rem 1rem;
}


.gym-class-child .head-border .col-md-3 {
    width: 20% !important;
}

/* Animated dashed line connecting .col-md-3 and .col-md-7 */
.gym-class-child .heading .row {
    position: relative;
}

.gym-class-child .heading .col-md-3 {
    position: relative;
    z-index: 2;
}

.gym-class-child .heading .col-md-7 {
    position: relative;
    z-index: 2;
}

.gym-class-child .heading .col-md-3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    /* Bridges the gap */
    height: 2px;
    background-image: repeating-linear-gradient(to right, var(--clr-primary, #ec1f8f) 0, var(--clr-primary, #ec1f8f) 6px, transparent 6px, transparent 12px);
    transform: translateY(-50%);
    animation: runningDash 1s linear infinite;
    z-index: -1;
}

@keyframes runningDash {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 24px 0;
    }
}

/* ─── Gym Class Tabs Animation ───────────────────────────── */
.gym-tab-hide {
    display: none !important;
}

.gym-class-child:not(.gym-tab-hide) {
    animation: gymFadeIn 0.5s ease-in-out forwards;
}

@keyframes gymFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.w-19 {
    width: 19%;
}

.w-23 {
    width: 23%;
}

.w-27 {
    width: 27%;
}

.w-33 {
    width: 33%
}

/* ─── Custom FAQ Accordion ──────────────────────────────── */
.class-faq {
    position: relative;
    overflow: hidden;
}

.custom-accordion {
    border-top: 1px solid #e0d8f0;
}

.custom-accordion .accordion-item {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #e0d8f0 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

.custom-accordion .accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 1.5rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #3c2465 !important;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button::after {
    content: "+";
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #3c2465;
    border-radius: 50%;
    color: #3c2465;
    font-size: 1.2rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "-";
    transform: rotate(180deg);
}

.custom-accordion .accordion-body {
    padding: 0 0 1.5rem 0;
    background-color: transparent !important;
    color: #3c2465;
}

.accordion-item .collapsing {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}


.find-hero {
    background-color: var(--clr-bg);
    background-image: url('../img/banner/gym_pattern3.png');
    background-repeat: repeat;
    background-size: contain;
    padding: 3rem 0;
    margin-top: 5rem;
}

@keyframes bannerPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.011);
    }
}

.find-hero .find-banner {
    border-radius: 30px;
    margin-top: 1rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    will-change: transform;
    animation: bannerPulse 1s infinite alternate ease-in-out;
}


.find-select {
    background: #fff;
    border: 1px solid var(--clr-outline);
    border-radius: var(--radius-xl);
    padding: .85rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--clr-on-bg);
    font-size: .9rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238b5cf6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, .06);
    transition: border-color .2s, box-shadow .2s;
}

.find-select:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .15);
}

.find-card {
    border-radius: 2.75rem;
    padding: 1.75rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s;
}

.find-card:hover {
    background: #fff;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 184, 197, 0.2);
}


.find-icon-wrap {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    /* circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        color 0.35s ease,
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
}

.find-card:hover .find-icon-wrap.purple {
    background: var(--clr-primary);
    color: #fff;
    animation: icon-circle-fill 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.find-card:hover .find-icon-wrap.amber {
    background: var(--clr-secondary);
    color: #fff;
    animation: icon-circle-fill-amber 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hidden-card {
    display: none !important;
}


.contact-hero {
    background-color: var(--clr-bg);
    background-image: url('../img/banner/gym_pattern3.png');
    background-repeat: repeat;
    background-size: contain;
    padding: 3rem 0;
    margin-top: 5rem;
}

.contect-lottrie-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #F5F5F5;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    animation: bannerPulse 1s infinite alternate ease-in-out;
}

.contect-lottrie-box-two {
    text-align: center;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #F5F5F5;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    animation: bannerPulse 1s infinite alternate ease-in;
}

.contact-hero a {
    text-decoration: none;
    display: block;
    color: var(--clr-on-bg);
}

/* ─── Reach Direct Section ──────────────────────────────── */
.reach-direct {
    padding: 0 0 3rem 0;
    position: relative;
    background-image: linear-gradient(to top, rgb(172, 203, 238) 0%, rgb(250, 250, 251) 80%);
}

.reach-direct::after {
    content: "";
    clip-path: ellipse(70% 100% at 50% 100%);
    background-color: #bad4f0;
    width: 100%;
    height: 6rem;
    position: absolute;
    left: 0;
    transform: scaleY(-1);
}

.reach-direct h2 {
    color: var(--clr-on-bg);
}

.reach-icon-wrap {
    width: 70px;
}

.reach-direct h5 {
    color: var(--clr-on-bg);
    font-size: 1.1rem;
}

.reach-link {
    color: #178381;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.reach-link:hover {
    color: var(--clr-primary);
}

.reach-subtext {
    font-size: 0.9rem;
    color: #6c757d;
}

.contact-form {
    padding: 6rem 0 0;
}

.custom-contact-form {
    background: linear-gradient(180deg, #f5f7fa7d 40%, #c3cfe2de 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;

}

.custom-contact-form .form-control:focus {
    box-shadow: unset !important;
}

.custom-contact-form .form-select {
    box-shadow: unset !important;
    background-color: transparent;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.custom-contact-form .form-control {
    background: transparent;
    box-shadow: unset !important;
    border-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}


.custom-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.custom-contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));
}

/* Base styles for the icon */
.animated-edit-icon {
    display: inline-block;
    /* Setting the transform origin to the bottom-left makes the "tip" of the pen stay relatively grounded while the top wiggles */
    transform-origin: 20% 80%;

    /* Remove 'infinite' if you only want it to play once! */
    animation: scribble 1s ease-in-out infinite;
}

/* If you only want it to animate on hover, comment out the animation property above and use this: */
/*
.animated-edit-icon:hover {
  animation: scribble 0.8s ease-in-out infinite;
}
*/

/* The Keyframes */
@keyframes scribble {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    15% {
        transform: translate(-1px, 2px) rotate(-5deg);
    }

    30% {
        transform: translate(2px, -1px) rotate(3deg);
    }

    45% {
        transform: translate(-2px, 1px) rotate(-4deg);
    }

    60% {
        transform: translate(3px, -2px) rotate(4deg);
    }

    75% {
        transform: translate(-1px, 1px) rotate(-2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* ─── Contact FAQ Section ───────────────────────────────── */
.contact-faq {
    padding: 3rem 0;
}

.contact-faq .container {
    border: 1px solid #ededed;
    border-radius: 30px;
}

.btn-blog-custom {
    background-color: #83ccbf;
    color: #0f172a;
    border-radius: 30px;
    padding: 0.65rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-blog-custom:hover {
    background-color: #72baad;
    transform: translateY(-2px);
    color: #0f172a;
}

.form-secure-text {
    color: #6c757d;
    /* text-muted */
    font-size: 0.875em;
    /* small */
    margin-bottom: 0;
    /* mb-0 */
    display: flex;
    /* d-flex */
    align-items: center;
    /* align-items-center */
    justify-content: center;
    /* justify-content-center */
    gap: 0.5rem;
}

.faq-img {
    border-radius: 30px;
    animation: bannerPulse 1s infinite alternate ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;

}

/* ─── Gym Career Section ────────────────────────────────── */
.gym-career {
    background-color: #ffffff;
    font-family: var(--font-body);
    padding: 5rem 0;
}

.gym-career .career-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #666;
    font-weight: 600;
}

.gym-career .career-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    font-family: var(--font-headline);
}

.gym-career .career-desc {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.gym-career .benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--font-headline);
}

.gym-career .benefits-list li {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.gym-career .benefit-check {
    width: 22px;
    height: 22px;
    background-color: #a0a0a0;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Accordion Styles */
.custom-career-accordion {
    margin-top: 7rem;
}

.custom-career-accordion .career-acc-item {
    background-color: #f9f9f9 !important;
    border: none !important;
    margin-bottom: 1rem;
    border-radius: 0 !important;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.custom-career-accordion .career-acc-btn {
    background-color: #f9f9f9 !important;
    padding: 1.5rem 1.5rem;
    border-radius: 0 !important;
    transition: background-color 0.3s ease;
    box-shadow: none !important;
}

.custom-career-accordion .accordion-button:not(.collapsed) {
    background-color: #f1f3f5 !important;
    color: #1a1a1a;
    box-shadow: none;
}

.custom-career-accordion .accordion-button::after {
    display: none !important;
}

.custom-career-accordion .career-acc-body {
    background-color: #f1f3f5 !important;
    border-top: none !important;
}

.custom-career-accordion .job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--font-headline);
}

.custom-career-accordion .job-meta {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #6c757d;
    font-family: var(--font-body);
}

.custom-career-accordion .career-acc-arrow {
    width: 40px;
    height: 40px;
    background-color: #e5e5e5;
    border-radius: 4px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.custom-career-accordion .career-acc-arrow i {
    font-size: 1.25rem;
}

.custom-career-accordion .accordion-button:not(.collapsed) .career-acc-arrow {
    transform: rotate(90deg);
}

.custom-career-accordion .accordion-button:hover .career-acc-arrow {
    background-color: #d5d5d5;
}

/* ─── Career Enquiry ────────────────────────────────────── */
.career-enquiry {

    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(231, 246, 246, 1) 100%);
    padding: 5rem 0;
    border-radius: 50px 50px 0 0;
}

.career-enquiry-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
}

.career-enquiry-desc {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 650px;
    line-height: 1.6;
}

.btn-career-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #036b64;
    color: #ffffff;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-career-contact:hover {
    background-color: #02524d;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-career-contact i {
    font-size: 1.25rem;
}

.privacy-hero{
        min-height: 88vh;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    background-image: url('../img/banner/gym_pattern3.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.privacy-hero .heading {
    text-align: center;
    padding-top: 3rem;
}

.privacy-box {
    max-width: 600px;
    margin: 0 auto;
   background-color: #ffffffb0;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.privacy-box h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
}

 @keyframes scan {
            0% { left: 0%; transform: translateX(-100%); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: 100%; transform: translateX(0%); opacity: 0; }
        }
        .divider-track {
            height: 1px;
            background-color: #e6e6e6; /* Slate track */
            position: relative;
            overflow: hidden;
            border-radius: 999px;
        }
        .divider-dot {
            position: absolute;
            top: -1px;
            height: 3px;
            width: 100px;
            background: linear-gradient(90deg, transparent, #fab0d4, transparent); /* Pink dot */
            animation: scan 2s infinite ease-in-out;
            border-radius: 999px;
        }



        .privacy-tab{
            padding-bottom: 4rem;
        }
/* ------bithday-styles--- */

/* Stats Bar */
.birthday-stats-bar {
    background: #fff;
    border: 1px solid var(--clr-outline);
    border-radius: 1.5rem;
    padding: 1rem;
    margin-top: 2rem;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.417);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px 10px rgba(255, 255, 255, 1);
}

.birthday-stat-item {
    flex: 1;
}

.birthday-stat-value {
    font-weight: 800;
    font-size: 1rem;
    color: var(--clr-primary);
    margin-bottom: 0.35rem;
}

.birthday-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1.2px;
}

.birthday-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--clr-outline);
    margin: 0 0.5rem;
}

/* Birthday Hero Card - What's Included */
.birthday-hero-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
}

.birthday-hero-card::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 270px;
    height: 270px;
    background: radial-gradient(circle at 30% 30%,
            #f586c4 0%,
            /* Highlight (lighter pink) */
            #ec1f8f 40%,
            /* Your base color */
            #8a0d50 100%
            /* Shadow (darker pink) */
        );

    border-radius: 50%;
    opacity: 0.09;
    filter: blur(20px);
    pointer-events: none;
    animation: bounce 1.5s infinite ease-in-out;
}

/* Defining the bounce keyframes */
@keyframes bounce {

    0%,
    100% {
        /* Resting on the ground */
        transform: translateY(0);
        /* Shadow is tight and dark */
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        /* Floating in the air (moves up 150px) */
        transform: translateY(-10px);
        /* Shadow pushes down, spreads out, and fades to mimic distance */
        box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
    }
}

.included-card-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: #2e2a56;
    /* fallback color */
}

.included-title {
    color: #1e1b4b;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.included-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.included-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    height: 100%;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.included-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.included-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.included-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4b5563;
    line-height: 1.3;
}


.check-dark {
    background-color: var(--clr-primary);
    color: #ffffff;
}

/* â”€â”€â”€ Birthday Bash Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bash-img-wrapper {
    padding: 0;
}

.bash-bg-shape {
    position: absolute;
    top: -10px;
    bottom: -15px;
    left: -15px;
    right: -10px;
    background-color: #dddddd57;
    border-radius: 1.5rem;
    z-index: -1;
    animation: tilt 1s infinite alternate ease-in-out both;
    transform-origin: center;
}

@keyframes tilt {
    0% {
        transform: rotate(-3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.bash-main-img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bash-stat-box {
    transition: transform 0.2s;
}

.bash-stat-box:hover {
    transform: translateY(-3px);
}

.box-pink {
    background: linear-gradient(179deg, rgba(181, 198, 224, 0.7) 0%, rgba(213, 224, 240, 0.74) 48%, rgba(181, 198, 224, 0.68) 100%);
    ;
    border-radius: 20px;
}

.stat-num {
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.birthday-design .stat-label {
    color: var(--light-color);
}

.bash-eyebrow {
    color: #ec1f8f;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 800;
}

.bash-title {
    color: #1e1b4b;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-size: clamp(2.5rem, 6vw, 2.25rem);
    font-weight: 900;
    line-height: 1.1;
}

.bash-title .text-pink {
    color: #ec1f8f !important;
}

.bash-desc {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #6b7280;
}

.bash-info-card {
    background: #ffffff;
    border: 1px solid #f3f4f6 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 20px;
}

.bash-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.text-navy {
    color: #1e1b4b !important;
}

.text-pink {
    color: #ec1f8f !important;
}

.text-teal {
    color: #32d6c6 !important;
}

.text-orange {
    color: #f97316 !important;
}

.bash-btn {
    background-color: #ec1f8f;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: background-color 0.2s, transform 0.2s;
}

.bash-btn:hover {
    background-color: #d81b81;
    color: #ffffff;
    transform: translateY(-2px);
}

/* â”€â”€â”€ Birthday Bash Timeline â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bash-timeline-wrapper {
    position: relative;
}

.bash-tl-item {
    width: 14.28%;
}

.bash-tl-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    z-index: 2;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bash-tl-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.bash-tl-item.low {
    margin-top: 56px;
}

.bash-tl-title {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #1e1b4b;
    margin-top: 1rem;
}

.bash-tl-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4em 0.8em;
    background: #ffffff;
    border: 1px solid;
    margin-top: 0.5rem;
    display: inline-block;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Timeline Colors */
.tl-border-pink {
    border-color: #ededed !important;
}

.tl-text-pink {
    color: #656565 !important;
    background: linear-gradient(to top, rgb(172, 203, 238) 0%, rgb(231, 240, 253) 100%);
    background-color: rgba(0, 0, 0, 0);
}

.tl-badge-pink {
    color: #767676;
    border-color: #fce7f3;
}

.tl-border-teal {
    border-color: #ededed !important;
}

.tl-text-teal {
    color: #2dd4bf !important;
}

.tl-badge-teal {
    color: #2dd4bf;
    border-color: #ccfbf1;
}

.tl-border-orange {
    border-color: #ededed !important;
}

.tl-text-orange {
    color: #fb923c !important;
}

.tl-badge-orange {
    color: #fb923c;
    border-color: #ffedd5;
}

.tl-border-purple {
    border-color: #ededed !important;
}

.tl-text-purple {
    color: #a78bfa !important;
}

.tl-badge-purple {
    color: #a78bfa;
    border-color: #ede9fe;
}

.tl-border-green {
    border-color: #ededed !important;
}

.tl-text-green {
    color: #a3e635 !important;
}

.tl-badge-green {
    color: #a3e635;
    border-color: #ecfccb;
}

.tl-border-red {
    border-color: #ededed !important;
}

.tl-text-red {
    color: #fb7185 !important;
}

.tl-badge-red {
    color: #fb7185;
    border-color: #ffe4e6;
}

.tl-border-cyan {
    border-color: #ededed !important;
}

.tl-text-cyan {
    color: #22d3ee !important;
}

.tl-badge-cyan {
    color: #22d3ee;
    border-color: #cffafe;
}

/* â”€â”€â”€ Birthday Age Tabs â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.birthday-age-tabs {
    background-color: #f4f5f7;
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
    margin: 0 auto;
}

.birthday-age-tabs .nav-link {
    border-radius: 50px !important;
    color: #003a79;
    padding: 10px 24px;
    border: none;
    transition: all 0.3s ease;
    background: transparent;
    font-family: var(--font-body);
}

.birthday-age-tabs .nav-link.active {
    background: linear-gradient(179deg, rgba(181, 198, 224, 0.7) 0%, rgba(213, 224, 240, 0.74) 48%, rgba(181, 198, 224, 0.68) 100%);
    color: #003a79 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


.birthday-design {
    padding: 3rem 0 0;
}

/* â”€â”€â”€ Party Theme Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.party-theme-card {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 0.6rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: var(--font-body);
}

.party-theme-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.party-theme-header .icon-left {
    color: #8c8f96;
    font-size: 1.5rem;
}

.party-theme-header .btn-right {
    width: 40px;
    height: 40px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.party-theme-header .btn-right:hover {
    background: #b0b5c0;
}

.party-theme-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: #6a6a6a;
}

.party-theme-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.party-theme-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.party-theme-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.8rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.party-theme-desc {
    text-align: center;
    font-size: 0.85rem;
    color: #5b5b5b;
    line-height: 1.5;
    padding: 0 10px;
    margin-bottom: 0;
}

/* â”€â”€â”€ Party Theme Swiper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.party-theme-swiper .swiper-slide {
    width: 360px;
    max-width: 90vw;
}

.party-theme-swiper .swiper-pagination-bullet {
    transition: all 0.3s ease;
    background-color: var(--clr-primary);
    width: 8px;
    height: 8px;
    opacity: 0.5;
}

.party-theme-swiper .swiper-pagination-bullet-active {
    background-color: var(--clr-primary);
    width: 29px;
    height: 7px;
    border-radius: 8px;
    opacity: 1;
}

/* Animated Timeline Line */
[data-aos="draw-line"] {
    width: 0;
    transition-property: width;
}

[data-aos="draw-line"].aos-animate {
    width: 100%;
}

/* â”€â”€â”€ Party Handle Chips â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.chip-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0;
}

.chip-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(236, 31, 143, 0.06) 0%, rgba(45, 212, 191, 0.06) 50%, rgba(255, 255, 255, 0) 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.party-chip {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.6rem;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 600;
    font-family: var(--font-body);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: default;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.party-chip:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.party-chip i {
    font-size: 1.25rem;
}

.chip-icon-teal {
    color: #14b8a6;
}

.chip-icon-purple {
    color: #a855f7;
}

.chip-icon-pink {
    color: #ec4899;
}
.bounce-ball h2{
    padding: 3rem 0;
}

.ballone {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #f586c4 0%, #ec1f8f 40%, #8a0d50 100%);
    border-radius: 50%;

    pointer-events: none;
    animation: bounce 1.5s infinite ease-in-out;
    position: relative;
}

.balltwo {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #d194e2 0%, #4a2d8f 100%, #075e55 100%);
    border-radius: 50%;

    pointer-events: none;
    animation: bounce 1.4s infinite ease-in-out;
    position: relative;
}

.ballthree {
    width: 150px;
    height: 150px;
  background: radial-gradient(
  circle at 30% 30%,
  #69c8c6 0%,
  #075e55 70%,
  #c77dff 100%
);
    border-radius: 50%;

    pointer-events: none;
    animation: bounce 1.2s infinite ease-in-out;
    position: relative;
}

.ball-text {
    position: absolute;
    left: 0;
    right: 0;
    transform: translate(27px, 35px);
    color: #fff;
}

.ball-text h5 {
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 1.6rem;
    left: 26px;
    position: relative;
}

.ball-text p {
    line-height: 20px;
    padding-top: 2px;
}

.even-more-special{
    position: relative;
  padding: 2rem 0;
  background-image: linear-gradient(to top, rgb(172, 203, 238) 0%, rgb(250, 250, 251) 100%);
}

.even-more-special::after{
    content: "";
  clip-path: ellipse(70% 100% at 50% 100%);
  background-color: #b0cded;
  width: 100%;
  height: 6rem;
  position: absolute;
  left: 0;
  transform: scaleY(-1);
}

.party-handle{
    padding-bottom: 3rem;
    padding: 60px 20px 70px;
  background-image: url('../img/banner/gym_pattern3.png');
  background-repeat: repeat;
  background-size: contain;

}

.birthday-timelineone{
    padding-top: 3rem;
}



/* Container styling */
.birth-form {
    padding: 4rem 2rem;
  position: relative;
  overflow: hidden; /* Prevents circles from creating scrollbars */
background: linear-gradient(175deg,rgba(250, 250, 251, 0.4) 0%, rgba(250, 250, 251, 1) 100%);
  z-index: -1;
}

/* Base styling for both background circles */
.birth-form::before,
.birth-form::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(46px); /* Adjust blur intensity here */
  opacity: 0.25;      /* Low opacity as requested */
  z-index: -1;        /* Keeps them behind your form content */
  pointer-events: none; /* Prevents circles from interfering with clicks */
}

/* Teal Circle */
.birth-form::before {
  width: 300px;
  height: 300px;
  background-color: #69c8c6;
  top: -50px;
  left: -70px;
  animation: floatTeal 20s ease-in-out infinite alternate;
}

/* Pink Circle */
.birth-form::after {
  width: 350px;
  height: 350px;
  background-color: #ec1f8f;
  bottom: 70px;
  right: -70px;
  animation: floatPink 25s ease-in-out infinite alternate;
}

/* Smooth Floating Animations */
@keyframes floatTeal {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 50px) scale(1.1);
  }
  100% {
    transform: translate(40px, 120px) scale(0.9);
  }
}

@keyframes floatPink {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-100px, -60px) scale(0.95);
  }
  100% {
    transform: translate(-50px, -140px) scale(1.1);
  }
}

/* â”€â”€â”€ Advangers One â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.advangers-one {
    background-color: #f26038;
    padding: 3rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Background decorative elements using Font Icons */
.advangers-one .bg-icon-top {
    position: absolute;
    top: 30px;
    left: -30px;
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.05);
    transform: rotate(-30deg);
    z-index: 1;
}

.advangers-one .bg-icon-bottom {
    position: absolute;
    bottom: -40px;
    right: -40px;
    font-size: 14rem;
    color: rgba(0, 0, 0, 0.05);
    transform: rotate(-15deg);
    z-index: 1;
}

.advangers-content {
    position: relative;
    z-index: 2;
}

.advangers-top-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.advangers-top-icon i {
    font-size: 2.2rem;
    color: #ffffff;
}

.advangers-badge {
    display: inline-block;
}

.advangers-badge span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.35rem 1.2rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.advangers-title {
    font-size: clamp(2.2rem, 5vw, 2rem);
    line-height: 1.15;
    letter-spacing: 1px;
    font-family: var(--font-headline);
    font-weight: 400;
}

.advangers-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

 

.advangers-list-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.advangers-btn {
    background-color: #ffffff;
    color: #f26038;
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-headline);
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.05em;
}

.advangers-btn:hover {
    color: #f26038;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}


.advangers-two {
background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}
.advangers-one img{
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.advangers-two img{
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
/* Background decorative elements using Font Icons */
.advangers-two .bg-icon-top {
    position: absolute;
    top: 30px;
    left: -30px;
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.05);
    transform: rotate(-30deg);
    z-index: 1;
}

.advangers-two .bg-icon-bottom {
    position: absolute;
    bottom: -40px;
    right: -40px;
    font-size: 14rem;
    color: rgba(0, 0, 0, 0.05);
    transform: rotate(-15deg);
    z-index: 1;
}

.camp-theme{
    padding: 3rem 0;
}
.camp-img{
position: relative;
  width: 240px;
  height: 240px;
  border-radius: 20px;
  padding: 1rem;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.camp-img .tracker-head{
position: relative;
  bottom: 12px;
  font-size: 1rem;
  text-align: center;
}

/* Marquee / Auto-scroll for summer tracker */
.summer-tracker-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.summer-tracker-one {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    padding-right: 20px;
    animation: scrollLeft 20s linear infinite;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.summer-tracker-two {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    padding-right: 20px;
    animation: scrollRight 20s linear infinite;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.summer-tracker-wrapper:hover .summer-tracker-one,
.summer-tracker-wrapper:hover .summer-tracker-two {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.form-privacy{
    display: flex;
  align-content: end;
  align-items: safe;
  align-items: start;
  gap: 10px;
  flex-direction: row;
}

.round-box{
    border-radius: 20px;
    border: 1px solid #707070;
    display: inline-block;
    font-size: 1rem;
    width: auto;
    margin-left: 10px;
}

.camp-faq{
    padding: 4rem 0;
}
