/* ================================
       GLOBAL THEME VARIABLES 
    ================================= */
:root {
    --font-heading: "helvetica-lt-pro", serif;
    --font-body: "acumin-pro", sans-serif;

    --lime: #D7FF00;
    --navy: #071148;
    --orange: #ff7b39;
    --pink: #f8d9e8;
}

body {
    font-family: var(--font-body);
    background: #fff;
    margin: 0;
    padding: 0;
}

/* ================================
       NAVBAR STYLE 
    ================================= */
.nav-custom {
    background: var(--lime);
    padding: 12px 0;
    position: absolute;
    top: 40px;
    /* Gives the gap so video is visible */
    width: 100%;
    z-index: 10;
}

.nav-custom .navbar-brand img {
    height: 52px;
    width: auto;
}

.nav-custom .nav-link {
    font-weight: 600;
    color: #000;
    margin: 0 12px;
}

.nav-custom .nav-link:hover {
    color: var(--navy);
}

.lang-btn {
    font-weight: 600;
    background: #000;
    color: var(--lime);
    border-radius: 8px;
    padding: 9px 14px;
    border: none;
    cursor: pointer;
}

/*dropdown style*/

/* Dropdown styling */
.navbar-nav .dropdown-menu {
    background: var(--lime);
    border: none;
    padding: 10px 0;
}

.navbar-nav .dropdown-item {
    font-weight: 600;
    color: #000;
}

.navbar-nav .dropdown-item:hover {
    background: transparent;
    color: var(--navy);
}


/* ================================
       HERO VIDEO + TEXT 
    ================================= */

.hero-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    /* adjust opacity here */
    z-index: 1;
}


.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.hero-text-ver1 {
    position: absolute;
    top: 30%;
    left: 7%;
    color: var(--lime);
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    z-index: 2;
}

.hero-text-ver1 h1,
.hero-text-ver1 h6 {
    margin: 0;
    padding: 0;
    line-height: 0.9;
}

.hero-text-ver2 {
    position: absolute;
    top: 80%;
    left: 7%;
    color: var(--lime);
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    z-index: 2;
}

.hero-text-ver2 h2,
.hero-text-ver2 h6 {
    margin: 0;
    padding: 0;
    line-height: 0.9;
}

.hero-text {
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1;
    color: var(--lime);
    z-index: 2;
}

.hero-text h2 {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 400;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 5px;
}

@media(max-width:900px) {
    .hero-text h1 {
        font-size: 80px;
    }

    .hero-text h2 {
        font-size: 40px;
    }

    .nav-custom {
        top: 0;
        position: fixed;
    }

    .hero-video-section {
        height: 85vh;
    }
}

/* ================================
       HERO VIDEO + TEXT 
    ================================= */

/* HERO SECTION */
.hero {
    background: #D7FF00;
    padding: 100px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    color: black;
}

/* LEFT SIDE CONTENT */
.hero-left {
    max-width: 700px;
}

.hero-left h1 {
    font-size: 80px;
    color: black;
    line-height: 1.05;
    opacity: 0;
    animation: slideLeft 1s ease-out forwards 0.2s;
}

.subheadline {

    margin-top: 25px;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards 0.6s;
}

.hero-left p {

    opacity: 0;
    font-size: 18px;
    animation: fadeIn 1.2s ease-out forwards 1s;

}

.cta-btn {
    background: #000000;
    color: #ffffff;
    padding: 30px 49px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 35px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(25px);
    animation: slideUp 1s ease-out forwards 1.3s;
    font-weight: bold;
    font-family: Tahoma;
}

/* RIGHT SIDE GRAPHICS */
.hero-right {
    position: relative;
    width: 600px;
    height: 580px;
}

/* BLUE CIRCLE – infinite rotation */
.blue-circle {
    position: absolute;
    top: -160px;
    right: -130px;
    width: 420px;
    opacity: 1;
    animation: rotateInfinite 12s linear infinite;
}

/* LIME CIRCLE – scroll bounce + rotate */
.lime-circle {
    position: absolute;
    top: -40px;
    left: -10px;
    width: 300px;
    opacity: 0;

    /* slight tilt */
    transform: rotate(-5deg);

    /* scroll bounce + rotation */
    animation:
        limeBounce 0.9s ease-out both,
        limeRotate 10s linear infinite;

    animation-timeline: view(), auto;
    animation-range: entry 0% cover 40%, none;
}

/* infinite rotation */
@keyframes limeRotate {
    from {
        transform: rotate(-5deg);
    }

    to {
        transform: rotate(355deg);
    }
}

/* MOCKUP – SLIGHT RIGHT TILT (10°) + FAST BOUNCE */
.mockup {
    position: absolute;

    width: 1000px;
    height: auto;

    top: -20px;
    left: -70px;

    /* Stronger tilt (10°) */
    transform: rotate(10deg);

    /* Faster bounce */
    animation: mockupBounce 1s ease-in-out infinite;

    z-index: 10;
}

@keyframes mockupBounce {
    0% {
        transform: translateY(0) rotate(10deg);
    }

    25% {
        transform: translateY(12px) rotate(10deg);
    }

    45% {
        transform: translateY(-8px) rotate(10deg);
    }

    65% {
        transform: translateY(4px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(10deg);
    }
}

/* ---- OTHER ANIMATIONS ---- */

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes limeBounce {
    0% {
        opacity: 0;
        transform: scale(0.7) rotate(-5deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) rotate(-5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(-5deg);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        margin-top: 50px;
    }
}


/* LIME BACKGROUND BAR */
.lime-bar-wrapper {
    width: 100%;
    /*margin-top: 40px;*/
    overflow: hidden;
    background: #D7FF00;
    /* lime background */
    padding: 18px 0;
}

/* MOVING TEXT LINE */
.lime-bar {
    display: flex;
    align-items: center;
    gap: 35px;
    white-space: nowrap;

    color: #cb3f86;
    /* Black text */
    font-size: 32px;
    font-weight: 700;

    animation: limeScroll 14s linear infinite;
}

/* ORANGE DOT BETWEEN WORDS */
/*  .lime-bar .dot {
           width: 14px;
            height: 14px;
              background: #ff7d00;
          
              border-radius: 50%;
              flex-shrink: 0;
          }*/

/* Infinite scrolling animation */
@keyframes limeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================= */
/*       BRANDS SECTION          */
/* ============================= */

.brands-section {
    background: #000000;
    /* soft pink */
    padding: 90px 6%;
    text-align: center;
}

/* TITLE */
.brands-title {
    font-size: 32px;
    color: #ffffff;
    /* orange */
    font-family: Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

/* LOGO GRID */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
    column-gap: 40px;
    align-items: center;
    justify-items: center;
}

/* LOGO STYLE */
.brands-grid img {
    max-width: 130px;
    height: auto;
    opacity: 0.9;
    transition: 0.3s;
}

.brands-grid img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .brands-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ================================
       after hero text section 
    ================================= */
/* ================================
   FOUNDER STORY SECTION
================================ */
.pink-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 8%;
    min-height: 340px;
    overflow: hidden;
}

/* background image */
.pink-bg {
    position: absolute;
    inset: 0;
    background: url("../images/bg-foud.png") center/cover no-repeat;
    z-index: 0;
}

/* slight overlay (optional) */
.pink-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.03);
}

/* content above bg */
.pink-left,
.pink-center,
.pink-right {
    position: relative;
    z-index: 2;
}

/* LEFT IMAGE */
.pink-left {
    flex: 0 0 auto;
    transform: translateY(-10px);
}

.founder-img {
    width: 350px;
    max-width: 100%;
    transform: rotate(-4deg);
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
    margin-left: 10px;
}

/* CENTER CONTENT */
.pink-center {
    flex: 1;
    margin-left: -60px;
    /* 🔥 overlap with image */
    z-index: 3;
}

.pink-center h1 {
    margin-top: 150px;
    margin-left: -200px;
}

/* TITLE */
.founder-title {
    margin: 0;
    font-size: clamp(80px, 8vw, 140px);
    font-weight: 700;
    text-transform: uppercase;
    color: #000;

    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0;
    line-height: 0.95;

    position: relative;
    z-index: 4;
}

/* FO highlight */
.highlight {
    color: #d7ea16;
    position: relative;
    z-index: 5;
    margin-right: -2px;
}

/* BADGE */
.badge-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
}

.badge-wrapper img {
    width: 200px;
    height: auto;
    transform: translateY(-3px);
}

/* TEXT BLOCK */
.founder-info {
    margin-top: 10px;
    margin-left: 130px;
    /* aligns under title */
    color: #d7ea16;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.founder-info p {
    margin: 0 0 4px;
}

/* BUTTON */


.founder-btn {
    float: right;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.25s ease;
    margin-right: 10px;
}

.founder-btn:hover {
    transform: translateY(-2px);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .pink-section {
        padding: 60px 5%;
        gap: 24px;
    }

    .pink-center {
        margin-left: -40px;
    }

    .founder-info {
        margin-left: 0;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .pink-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .pink-left {
        transform: none;
    }

    .pink-center {
        margin-left: 0;
    }

    .founder-title {
        justify-content: center;
        font-size: clamp(34px, 11vw, 58px);
    }

    .badge-wrapper img {
        width: 50px;
    }

    .founder-info {
        margin: 12px 0 0;
        font-size: 12px;
    }

    .pink-right {
        margin-top: 20px;
    }
}

/* ================================
    after hero text section end
    ================================= */

/* ================================
   black section start
    ================================= */

/* ================================
   TRAINER SLIDER SECTION
================================ */
.black-section {
    background: #000;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* top lime line */
.black-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d7ea16;
    z-index: 5;
}

.trainer-slider-wrap {
    width: 100%;
    padding: 40px 0 50px;
}

.trainerSwiper {
    width: 100%;
    overflow: visible;
}

.trainer-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trainer-card {
    position: relative;
    width: 320px;
    height: 400px;
    overflow: hidden;
    background: #111;
}

.trainer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

/* dark overlay */
.trainer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.72) 100%);
    z-index: 1;
}

/* text layout */
.trainer-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.trainer-role {
    margin: 0;
    color: #d7ea16;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
}

.trainer-bottom {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.trainer-bottom h4 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.trainer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* center slide brighter */
.trainerSwiper .swiper-slide {
    opacity: 0.45;
    transform: scale(0.92);
    transition: all 0.35s ease;
}

.trainerSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.trainerSwiper .swiper-slide-active .trainer-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.15) 35%,
            rgba(0, 0, 0, 0.55) 100%);
}

/* spacing between cards */
.trainerSwiper .swiper-wrapper {
    align-items: center;
}

/* tablet */
@media (max-width: 1024px) {
    .trainer-card {
        width: 280px;
        height: 460px;
    }

    .trainer-role {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .trainer-bottom h4 {
        font-size: 18px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .trainer-slider-wrap {
        padding: 24px 0 36px;
    }

    .trainer-card {
        width: 220px;
        height: 360px;
    }

    .trainer-role {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .trainer-bottom {
        bottom: 18px;
        padding: 0 14px;
    }

    .trainer-bottom h4 {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .trainer-bottom p {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* ================================
   black section end
    ================================= */

/* ================================
   big section start
    ================================= */
/* ================================
       BIG SECTION / BEAUTY TRAINING
    ================================ */
.big-section {
    position: relative;
    overflow: hidden;
    padding: 30px 5% 60px;
    /*background: #f5f3f1;*/
}

/* background image */
.big-bg {
    position: absolute;
    inset: 0;
    background: url("../images/bigbg.png") center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}

/* keep content above bg */
.big-top-cards,
.big-bottom-content {
    position: relative;
    z-index: 2;
}

/* =========================
       TOP CARDS
    ========================= */
.big-top-cards {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    margin-top: 0;
}

.course-card {
    width: 380px;
    height: auto;
    background: #d7ea16;
    padding: 19px 19px 18px;
    box-sizing: border-box;
    text-align: center;
}

.course-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    margin-bottom: 14px;
    margin-top: 44px;
}

.course-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    background: #e6188c;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.course-card ul {
    margin: 0;
    padding-left: 16px;
    list-style: none;
}

.course-card li {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* =========================
       BOTTOM CONTENT
    ========================= */
.big-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.big-left {
    flex: 1;
    max-width: 600px;
    margin-left: 130px;
}

.big-left h2 {
    margin: 0 0 24px;
    color: #1e1e1e;
    font-size: clamp(52px, 5vw, 88px);
    line-height: 0.92;
    font-weight: 600;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.big-left p {
    margin: 0 0 14px;
    color: #222;
    font-size: 16px;
    line-height: 1.45;
    max-width: 500px;
}

.big-left p span {
    color: #ff3c7a;
    font-weight: 700;
}

.big-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    background: #000;
    color: #d7ea16;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 28px;
    font-weight: 700;
    transition: 0.25s ease;
}

.big-btn:hover {
    transform: translateY(-2px);
}

/* =========================
       RIGHT MOCKUP
    ========================= */
.big-right {
    flex: 0 0 340px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 600px;
}

.big-right img {
    width: 600px;

    height: auto;
    display: block;
    transform: rotate(8deg);
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}

/* =========================
       TABLET
    ========================= */
@media (max-width: 1024px) {
    .big-section {
        padding: 30px 4% 50px;
    }

    .big-bottom-content {
        gap: 24px;
    }

    .big-right {
        flex: 0 0 280px;
    }

    .big-right img {
        max-width: 280px;
    }

    .big-left h2 {
        font-size: clamp(42px, 6vw, 70px);
    }

    .big-left p {
        font-size: 15px;
    }

    .big-btn {
        font-size: 22px;
    }
}

/* =========================
       MOBILE
    ========================= */
@media (max-width: 767px) {
    .big-section {
        padding: 24px 20px 40px;
    }

    .big-top-cards {
        gap: 14px;
        margin-bottom: 32px;
    }

    .course-card {
        width: 100%;
        max-width: 320px;
    }

    .big-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .big-left {
        max-width: 100%;
    }

    .big-left h2 {
        font-size: clamp(34px, 11vw, 54px);
        margin-bottom: 18px;
    }

    .big-left p {
        font-size: 14px;
        max-width: 100%;
    }

    .big-btn {
        font-size: 20px;
        padding: 12px 22px;
    }

    .big-right {
        flex: none;
        width: 100%;
        margin-top: 18px;
        justify-content: center;
    }

    .big-right img {
        max-width: 240px;
        transform: rotate(6deg);
    }
}

/* ================================
   big section end
    ================================= */

/* =========================================================
   MOBILE RESPONSIVE FIXES
   Paste this block at the VERY END of assets/css/style.css
   Desktop design will stay unchanged.
========================================================= */

@media (max-width: 991.98px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-custom {
        top: 0;
        position: fixed;
        padding: 8px 0;
    }

    .nav-custom .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-custom .navbar-brand img {
        height: 42px;
    }

    .navbar-collapse {
        background: var(--lime);
        margin-top: 8px;
        padding: 12px 0 16px;
        border-radius: 0 0 18px 18px;
    }

    .nav-custom .nav-link {
        margin: 0;
        padding: 10px 4px;
        text-align: center;
    }

    .navbar-nav .dropdown-menu {
        text-align: center;
        padding: 0;
    }

    .lang-btn {
        display: block;
        width: calc(100% - 32px);
        margin: 10px auto 0 !important;
        padding: 12px 14px;
    }
}

@media (max-width: 767px) {

    /* HERO */
    .hero-video-section {
        height: 78vh;
        min-height: 560px;
        padding-top: 64px;
    }

    .hero-text {
        width: calc(100% - 48px);
        top: 55%;
        left: 50%;
    }

    .hero-text h2 {
        font-size: clamp(21px, 6vw, 30px);
        line-height: 1.08;
    }

    .hero-text h1 {
        font-size: clamp(32px, 10.5vw, 46px);
        line-height: 0.95;
        letter-spacing: 1.5px;
        max-width: 100%;
    }

    .hero-text-ver1 {
        top: 28%;
        left: 10px;
    }

    .hero-text-ver1 h1 {
        font-size: 28px;
    }

    .hero-text-ver1 h6 {
        font-size: 12px;
    }

    .hero-text-ver2 {
        top: 74%;
        left: 10px;
    }

    .hero-text-ver2 h2 {
        font-size: 22px;
    }

    .hero-text-ver2 h6 {
        font-size: 11px;
    }

    /* MOVING LIME BAR */
    .lime-bar-wrapper {
        padding: 12px 0;
    }

    .lime-bar {
        font-size: 22px;
        gap: 20px;
        animation-duration: 18s;
    }

    /* FOUNDER STORY */
    .pink-section {
        min-height: auto;
        padding: 40px 18px 36px;
        gap: 16px;
    }

    .founder-img {
        width: min(270px, 82vw);
        margin-left: 0;
        transform: rotate(-3deg);
    }

    .pink-center h1 {
        margin-top: 0;
        margin-left: 0;
    }

    .founder-title {
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
        font-size: clamp(36px, 12vw, 52px);
        line-height: 0.95;
    }

    .badge-wrapper {
        margin: 0 5px;
    }

    .badge-wrapper img {
        width: 48px;
    }

    .founder-info {
        margin: 14px auto 0;
        max-width: 320px;
        font-size: 12px;
        line-height: 1.35;
        text-align: center;
    }

    .founder-btn {
        float: none;
        margin: 18px auto 0;
        padding: 11px 24px;
    }

    /* TRAINER SLIDER */
    .trainer-slider-wrap {
        padding: 24px 0 36px;
    }

    .trainer-card {
        width: min(260px, 76vw);
        height: 360px;
    }

    .trainerSwiper .swiper-slide {
        opacity: 0.35;
        transform: scale(0.9);
    }

    .trainerSwiper .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }

    /* BIG BEAUTY TRAINING SECTION */
    .big-section {
        padding: 28px 16px 42px;
    }

    .big-top-cards {
        gap: 16px;
        margin-bottom: 34px;
    }

    .course-card {
        width: 100%;
        max-width: 360px;
        padding: 16px;
    }

    .course-card img {
        height: 160px;
        margin-top: 0;
        object-fit: cover;
    }

    .course-pill {
        font-size: 17px;
        padding: 7px 16px;
    }

    .course-card ul {
        padding-left: 0;
    }

    .course-card li {
        font-size: 13px;
        line-height: 1.35;
        margin-bottom: 9px;
    }

    .big-bottom-content {
        flex-direction: column;
        align-items: center;
        gap: 22px;
        text-align: center;
    }

    .big-left {
        margin-left: 0;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }

    .big-left h2 {
        font-size: clamp(36px, 12vw, 50px);
        line-height: 0.94;
        margin-bottom: 16px;
    }

    .big-left p {
        font-size: 14px;
        line-height: 1.5;
        max-width: none;
    }

    .big-btn {
        font-size: 19px;
        padding: 12px 22px;
        margin-top: 12px;
    }

    .big-right {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
        justify-content: center;
    }

    .big-right img {
        width: min(290px, 84vw);
        max-width: 100%;
        transform: rotate(4deg);
    }
}

@media (max-width: 420px) {
    .hero-video-section {
        min-height: 520px;
        height: 75vh;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .hero-text h1 {
        font-size: 34px;
        letter-spacing: 1px;
    }

    .founder-title {
        font-size: 38px;
    }

    .founder-img {
        width: 240px;
    }

    .trainer-card {
        width: 230px;
        height: 340px;
    }

    .big-left h2 {
        font-size: 36px;
    }

    .course-card img {
        height: 135px;
    }
}


/* ================================
   SMALL FOOTER
================================ */
.site-footer {
    background: #000;
    color: #fff;
    padding: 34px 5% 20px;
    border-top: 3px solid var(--lime);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
    width: 150px;
    height: auto;
}

.footer-brand p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 20px 0 14px;
}

.footer-links a {
    color: var(--lime);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

/* MOBILE FOOTER */
@media (max-width: 767px) {
    .site-footer {
        padding: 30px 20px 18px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 14px;
    }

    .footer-brand img {
        width: 130px;
    }

    .footer-brand p {
        text-align: center;
        font-size: 13px;
    }

    .footer-links {
        gap: 16px;
        padding: 18px 0 14px;
    }

    .footer-links a {
        font-size: 12px;
    }
}


/* ================================
   MULTI LEVEL DROPDOWN
================================ */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.submenu-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 2px;
}

.dropdown-submenu:hover>.submenu-menu {
    display: block;
}

.dropdown-submenu>.dropdown-toggle::after {
    float: right;
    margin-top: 8px;
    transform: rotate(-90deg);
}

/* Mobile dropdown fix */
@media (max-width: 991px) {
    .dropdown-submenu>.submenu-menu {
        position: static;
        display: none;
        margin-left: 15px;
        border: none;
        box-shadow: none;
    }

    .dropdown-submenu:hover>.submenu-menu {
        display: block;
    }

    .dropdown-submenu>.dropdown-toggle::after {
        transform: rotate(0deg);
    }
}
