@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--canvas);
    color: var(--text-dark);
}

/* =========================================================
   DESIGN TOKENS — AUROVEXA INTERNATIONAL
   Palette drawn from the mat, not the boardroom:
   tatami green (the mat), canvas (raw gi cotton),
   ink (the belt), gold (the rank you earn).
   ========================================================= */
:root {
    --ink: #000000;
    --tatami: #e0b032;
    --tatami-dark: #e0b032;
    --canvas: #fff;
    --canvas-dark: #e0b032;
    --gold: #e0b032;
    --crimson: #e0b032;
    --white: #ffffff;
    --text-dark: #1B1F1D;
    --text-muted: #6E7169;

    /* legacy aliases kept so every existing reference stays on-theme */
    --primary-color: var(--tatami);
    --secondary-color: var(--ink);
    --white-color: var(--white);
    --third-color: var(--ink);
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 0.3px;
}

/* ---------------------------------------------------------
   Eyebrow / spec-tag label — used above every section title.
   Borrowed from the vernacular of a gi's woven size tag.
--------------------------------------------------------- */
.eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tatami);
    margin-bottom: 8px;
}

.section-heading {
    text-align: center;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

/* ---------------------------------------------------------
   Belt-stripe divider — the signature element.
   A dashed "stitch line" flanking a rank-style label,
   echoing the stripes stitched onto a belt tip.
--------------------------------------------------------- */
.belt-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 14px auto 34px;
}

.belt-divider .stitch {
    height: 3px;
    max-width: 110px;
    flex: 1;
    background-image: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 16px);
}

.belt-divider span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.top-marquee {
    width: 100%;
    background: var(--ink);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    color: var(--canvas);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: scrollLeft 25s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
}

.marquee-content span:nth-child(2n) {
    color: var(--gold);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.top-marquee:hover .marquee-content {
    animation-play-state: paused;
}

@media(max-width:768px) {
    .top-marquee {
        padding: 10px 0;
    }

    .marquee-content {
        gap: 25px;
        font-size: 12px;
    }
}

/* ---- Scroll-to-top (bottom right) ---- */
#scrollTopBtn {
    position: fixed;
    bottom: 30px !important;
    right: 25px;
    z-index: 99;
    background-color: var(--ink);
    color: var(--white);
    border: none;
    outline: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:hover {
    background-color: var(--tatami);
    transform: translateY(-3px);
}

/* ---- Floating WhatsApp (bottom left, desktop) ---- */
.floating-whatsapp {
    position: fixed;
    left: 25px;
    bottom: 30px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
    color: var(--white);
    transform: scale(1.08);
}

.floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2.4s ease-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .floating-whatsapp {
        display: none;
    }

    /* mobile keeps its own header icon */
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--canvas-dark);
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.search-results .search-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.2s ease;
}

.search-results .search-item:last-child {
    border-bottom: none;
}

.search-results .search-item:hover {
    background-color: var(--canvas);
}

.search-results .search-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.search-results .search-item .title {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}

.cutom-btn {
    background-color: var(--ink);
    color: var(--white-color);
    border: none;
    padding: 11px 24px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cutom-btn:hover {
    background-color: var(--tatami);
    color: var(--white-color);
}

.text-info {
    color: var(--ink) !important;
    font-size: 20px;
    margin: 0;
}

.p-styling p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: #c9cdc3;
}

.vertical-line {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    height: 40px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: var(--white-color);
    margin: 0;
}

.headline {
    background: var(--ink);
    color: var(--white-color);
    padding-top: 10px;
    padding-bottom: 10px;
}

.headline p {
    font-size: 12px;
    margin: 0;
    padding: 0;
    letter-spacing: 0.4px;
}

.headline nav a {
    font-size: 14px;
    margin: 0 5px;
    padding: 0;
    transition: color 0.3s ease;
}

.headline nav a:hover {
    color: var(--gold);
}

.search-box {
    position: relative;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    pointer-events: none;
    z-index: 5;
}

.search-box input {
    padding-left: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--tatami) !important;
}

.middle-hedear {
    background-color: var(--white) !important;
}

.middle-hedear .contact-info i,
.middle-hedear .mail-info i {
    font-size: 22px;
    color: var(--tatami);
}

.middle-hedear .contact-info p,
.middle-hedear .mail-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    padding: 0;
}

.mobile-whatsapp i {
    font-size: 28px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    padding: 12px 14px;
}

/* ---- SIDE PANEL ---- */
.sidepanel {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 90px;
}

.sidepanel a {
    padding: 8px 25px;
    text-decoration: none;
    font-size: 15px;
    color: var(--secondary-color);
    display: block;
    transition: 0.3s;
}

.sidepanel a:hover {
    color: var(--tatami);
}

.sidepanel .close {
    width: 100%;
    position: absolute;
    top: 5px !important;
    right: 5px !important;
    border-bottom: 1px solid var(--canvas-dark);
    padding-bottom: 10px;
}

.sidepanel .closebtn {
    font-size: 36px;
    padding: 0 !important;
}

.openbtn {
    font-size: 16px;
    background-color: var(--ink);
    color: var(--white);
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.openbtn:hover {
    background-color: var(--tatami);
}

.dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-btn i {
    transition: transform 0.3s ease;
}

.dropdown-container {
    display: none;
    background-color: var(--white);
    margin-left: 25px;
    border-left: 2px solid var(--gold);
}

.dropdown-container a {
    font-size: 14px;
    position: relative;
}

.dropdown-btn.active i {
    transform: rotate(180deg);
}

/* ---- TOP NAV MENU ---- */
.navigation-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.navigation-menu .nav-item {
    position: relative;
}

.navigation-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 5px;
    display: inline-block;
    transition: color 0.3s;
    position: relative;
}

.navigation-menu a:hover {
    color: var(--tatami);
}

.navigation-menu .nav-item>a::after {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 4px;
    height: 2px;
    /* background: var(--gold); */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navigation-menu .nav-item:hover>a::after {
    transform: scaleX(1);
}

.navigation-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(24, 38, 32, 0.15);
    border-top: 2px solid var(--gold);
    overflow: hidden;
    z-index: 100;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 400;
}

.dropdown-menu a:hover {
    background-color: var(--canvas);
    color: var(--tatami);
}

.dropdown i {
    font-size: 14px !important;
    margin-left: 3px;
    transition: transform 0.3s;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 15, 12, 0.75);
    z-index: 900;
    display: none;
}

/* ---- Hero slider ---- */
.slider .slide-img {
    height: 720px;
}

.slider .slide-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: top center;
}

@media (min-width: 1440px) {
    .slider .slide-img {
        height: 100%;
    }

    .slider .slide-img img {
        object-fit: cover;
    }
}

@media (max-width: 992px) {
    .slider .slide-img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .slider .slide-img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .slider .slide-img {
        height: 200px;
    }
}

/* ---------------------------------------------------------
   OUR CATEGORIES — redesigned card (was "Choose your Sport")
   Clipped corner + gold rank-stripe underline that grows on
   hover, echoing a belt stripe being earned.
--------------------------------------------------------- */
.categorise-section {
    background-color: var(--white);
    padding: 60px 0;
}

.categorise-section .container>.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cat-link {
    flex: 0 0 190px;
    text-align: center;
    text-decoration: none;
    margin: 10px;
}

.cat-main {
    width: 280px;
    height: 280px;
    border-radius: 4px 18px 4px 18px;
    box-shadow: -19px 20px 20px rgba(24, 38, 32, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--canvas);
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    border-top: 3px solid transparent;
}

.cat-main::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 4px;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
}

.cat-main:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(24, 38, 32, 0.18);
    background-color: var(--white);
}

.cat-main:hover::after {
    width: 100%;
    left: 1%;
}

.cat-img-container {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cat-img-container-fs {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em;
    max-height: 2.4em;
}

@media (max-width: 768px) {
    .cat-link {
        flex: 0 0 calc(33.333% - 20px);
        margin: 10px;
    }

    .cat-main {
        height: 150px;
        padding: 10px;
    }

    .cat-img-container {
        width: 110px;
        height: 110px;
    }

    .cat-img-container-fs {
        font-size: 12px;
    }
}


/* ---- Feature cards ---- */
.features {
    background-color: var(--canvas);
}

.feature-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 18px;
    box-shadow: 10px 10px 10px rgba(24, 38, 32, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease;
    border: 1px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--tatami);
    /* Leverlast red */
    transition: height 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.feature-card:hover::before {
    height: 100%;
    /* bottom → top fill */
}

.feature-card:hover {
    color: #fff;
    /* border-color: #c8102e; */
}

.feature-card:hover h5,
.feature-card:hover p {
    color: #fff;
}

.icon-box {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    background-color: var(--tatami);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.35s ease;
}

.feature-card:hover .icon-box {
    background-color: #fff;
    color: #c8102e;
}

.feature-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    transition: color 0.35s ease;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    transition: color 0.35s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .feature-card {
        padding: 22px 12px;
    }

    .icon-box {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-card h5 {
        font-size: 15px;
    }

    .feature-card p {
        font-size: 13px;
    }
}



/* ---- Product cards (Customer favorites + Best sellers) ---- */
.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    height: 420px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.product-card:hover {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-color:  #e0b032;
    /* Leverlast red accent */
}

.product-card .product-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card .product-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 12px;
    transition: transform 0.45s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.07);
}

.product-card .product-info {
    padding: 16px 14px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: calc(100% - 260px);
}

.product-card .product-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.product-card .product-sku {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    background: #f4f4f4;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
}

.product-info .btn-view {
    display: inline-block;
    background: #1a1a1a;
    color: #fff !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 0;
    width: 100%;
    border-radius: 4px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease;
}

.product-info .btn-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--tatami);
    /* Leverlast red */
    transition: width 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.product-card:hover .btn-view::before {
    width: 100%;
    /* left → right fill */
}


/* Mobile */
@media (max-width: 768px) {
    .product-card {
        height: 360px;
    }

    .product-card .product-img {
        height: 200px;
    }

    .product-card .product-info {
        height: calc(100% - 200px);
        padding: 12px 10px 14px;
    }

    .product-card .product-name {
        font-size: 14px;
        min-height: 38px;
    }
}


/*==================================================
 BEST SELLER CARD
==================================================*/

.bestsellers-section {
    background: #111;
    padding: 70px 0;
}

.bestsellers-section .eyebrow {
    color: var(--gold);
}

.bestsellers-section .section-heading h2 {
    color: #fff;
}

.bestsellers-section .belt-divider span {
    color: #fff;
}

.bestsellers-section .belt-divider .stitch {
    background-image: repeating-linear-gradient(90deg,
            #ff0000 0 10px,
            transparent 10px 16px);
}

.bestseller-card .ribbon {
    position: absolute;
    top: 30px;
    left: -35px;

    background: var(--crimson);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 50px;
    transform: rotate(-45deg);
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Same Product Card */
.bestsellers-section .product-card {
    position: relative;
}

/* Best Seller Badge */

.best-badge {

    position: absolute;
    top: 15px;
    left: 15px;

    background: #c8102e;
    color: #fff;

    padding: 6px 14px;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    z-index: 10;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .18);

}

/* Hover */

.bestsellers-section .product-card:hover .best-badge {

    background: #000;

}




/* ===================================================
   HERO PARALLAX (FULL BACKGROUND)
=================================================== */

/* .hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;

    background-image: url('../images/auravexa.png');

    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;

    background-attachment: fixed;
}


@media (max-width:768px) {

    .hero-banner {
        height: 70vh;
        min-height: 420px;

        background-attachment: scroll;
    }

} */



.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;

    background-image: url('../images/auravexa.png');

    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;

    background-attachment: fixed;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-banner {
        height: 70vh;
        min-height: 450px;
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-banner {
        height: 35vh;
        min-height: 100px;
        background-size: contain;
        background-position: center center;
        background-attachment: fixed;
    }
}








/* ===================== Slider Main ===================== */
.slider {
    position: relative;

    /* apni height set kar sakte ho */
    overflow: hidden;
    background: #000;
}

.slider .slide-img {

    overflow: hidden;
    position: relative;
}

.slider .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* display: block;
    transform: scale(1);
    transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
}

/* Active slide pe slow zoom effect
.owl-item.active .slide-img img {
    transform: scale(1.1);
} */

/* ===================== Navigation Arrows ===================== */
.slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    color: #fff !important;
    font-size: 22px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.35s ease;
    backdrop-filter: blur(4px);
}

.slider .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    transform: scale(1.1);
}

.slider .owl-nav .owl-prev {
    left: 25px;
}

.slider .owl-nav .owl-next {
    right: 25px;
}

/* Arrow icons better banane ke liye */
.slider .owl-nav button span {
    font-size: 28px;
    line-height: 1;
}

/* ===================== Dots ===================== */
.slider .owl-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slider .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.slider .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.35s ease;
}

.slider .owl-dots .owl-dot.active span,
.slider .owl-dots .owl-dot:hover span {
    background: #ffffff;
    width: 28px;
    border-radius: 10px;
}




/* ===================== Mobile Responsive Slider ===================== */
@media (max-width: 768px) {

    /* Navigation */
    .slider .owl-nav {
        top: 40%;
        transform: translateY(-50%);
    }

    .slider .owl-nav button {
        width: 38px;
        height: 38px;
        font-size: 16px !important;
    }

    .slider .owl-nav button span {
        font-size: 22px;
        line-height: 38px;
    }

    .slider .owl-nav .owl-prev {
        left: 10px;
    }

    .slider .owl-nav .owl-next {
        right: 10px;
    }

    /* Dots */
    .slider .owl-dots {
        bottom: 10px;
    }

    .slider .owl-dots .owl-dot {
        margin: 0 4px;
    }

    .slider .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
    }

    .slider .owl-dots .owl-dot.active span,
    .slider .owl-dots .owl-dot:hover span {
        width: 18px;
        height: 8px;
        border-radius: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {

    .slider .owl-nav button {
        width: 34px;
        height: 34px;
    }

    .slider .owl-nav button span {
        font-size: 18px;
        line-height: 34px;
    }

    .slider .owl-nav .owl-prev {
        left: 8px;
    }

    .slider .owl-nav .owl-next {
        right: 8px;
    }

    .slider .owl-dots {
        bottom: 8px;
    }

    .slider .owl-dots .owl-dot span {
        width: 7px;
        height: 7px;
    }

    .slider .owl-dots .owl-dot.active span {
        width: 16px;
        height: 7px;
    }
}







/* ---------------------------------------------------------
   DISCIPLINES WE EQUIP — new trust/chip section
--------------------------------------------------------- */
.disciplines-section {
    background-color: var(--canvas-dark);
    padding: 50px 0;
}

.discipline-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--canvas-dark);
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
    transition: all 0.25s ease;
}

.discipline-chip i {
    color: var(--tatami);
    font-size: 15px;
}

.discipline-chip:hover {
    background: var(--tatami);
    color: var(--white);
    border-color: var(--tatami);
}

.discipline-chip:hover i {
    color: var(--gold);
}

/* ---------------------------------------------------------
   CRAFTED FOR THE MAT — process section (numbering justified:
   this is an actual sequential production process)
--------------------------------------------------------- */
.process-section {
    background-color: var(--white);
    padding: 65px 0;
}

.process-step {
    position: relative;
    padding-left: 62px;
    margin-bottom: 34px;
}

.process-step .step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: 0.4px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 14px;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 46px;
    width: 2px;
    height: calc(100% - 20px);
    background-image: repeating-linear-gradient(180deg, var(--gold) 0 6px, transparent 6px 12px);
}

@media (max-width: 991.98px) {
    .process-section .col-lg-5 {
        margin-bottom: 40px;
    }
}

/* ---------------------------------------------------------
   TESTIMONIALS — academies/gyms trust section
--------------------------------------------------------- */
.testimonial-section {
    background-color: var(--ink);
    padding: 65px 0;
}

.testimonial-section .eyebrow {
    color: var(--gold);
}

.testimonial-section .section-heading h2 {
    color: var(--white);
}

.testimonial-section .belt-divider .stitch {
    background-image: repeating-linear-gradient(90deg, var(--tatami) 0 10px, transparent 10px 16px);
}

.testimonial-section .belt-divider span {
    color: var(--canvas);
}

.testimonial-card {
    background: var(--canvas);
    border-radius: 6px;
    padding: 26px;
    height: 100%;
    border-left: 4px solid var(--gold);
}

.testimonial-card i.fa-quote-left {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-card p.quote {
    font-size: 14.5px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card .author {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.testimonial-card .role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---- About / FAQ section ---- */
.about-content h6.text-info-heading,
.about-content h6 {
    font-weight: 700;
    color: var(--ink);
}

.about-content {
    background-color: var(--white);
}

.extra-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out, padding 0.5s ease-in-out;
}

.extra-section.open {
    max-height: 1200px;
    padding-top: 10px;
}

.gallery-section-page .gallery-img {
    height: 400px;
    border-radius: 8px;
    border: 1px solid var(--canvas-dark);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.gallery-section-page .gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-section-page .gallery-img:hover img {
    transform: scale(1.05);
}

.about-img img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    object-position: center center;
}

.title-banner .title-bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.title-banner .title-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

.title-categories {
    background-color: var(--ink);
    color: var(--white);
    padding: 8px 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.title-categories .cat-container {
    width: 150px;
    height: 120px;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
}

.title-categories .cat-container:last-child {
    border-right: none;
}

.title-categories .cat-container .cat-img {
    width: 100%;
    height: 90px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.title-categories .cat-container .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.title-categories .cat-container a {
    font-size: 13px;
    height: 20px;
    text-align: center;
}

.title-section .pages-link {
    background-color: var(--ink);
    display: flex;
    justify-content: start;
    align-items: center;
}

.title-section .pages-link h3 {
    font-size: 20px;
    margin: 0;
}

.title-section .pages-link .active {
    color: var(--gold);
}

/* ---- Footer ---- */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #c9cdc3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: var(--tatami);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--ink);
}

.small-thumb:hover {
    border: 2px solid var(--ink);
}