﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    padding-top: 50px; /* adjust if needed */
}


/* ================================
   FIXED TOP INFO BAR
================================ */
.top-info-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 38px;*/
    background: #f5c400;
    color: #000;
    z-index: 1000;
    /* 🔥 CENTER CONTENT */
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center; /* vertical center */
    padding: 8px 15px; /* ✅ Use padding instead of height */
}


/* CENTER CONTENT */
.info-left {
    display: flex;
    justify-content: center; /* ?? center horizontally */
    align-items: center;
    gap: 25px; /* spacing between items */
    flex-wrap: wrap;
}

    .info-left span {
        margin-right: 0; /* remove old spacing */
        white-space: nowrap;
    }


/* Hide Top Info Bar in Tablet & Mobile */
@media (max-width: 991px) {
    .top-info-bar {
        display: none !important;
    }

    body {
        padding-top: 0 !important; /* if you added spacing for fixed bar */
    }

    /* 🔥 Move header to top */
    .main-header {
        top: 0 !important;
    }

    /* 🔥 Adjust main spacing */
    main {
        padding-top: 100px !important; /* only header height */
    }

   
}








/* ================================
   FIXED MAIN HEADER
================================ */
.main-header {
    position: fixed;
    top: 38px; /* below yellow bar */
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}


/* FLEX CONTAINER — THIS WAS MISSING */
.header-container {
    display: flex; /* 🔥 KEY FIX */
    align-items: center;
    justify-content: space-between; /* 🔥 logo left, hamburger right */
    padding: 10px 20px;
}

/* LOGO */
.site-logo {
    height: 100px; /* correct size */
    width: auto;
    padding: 28px 18px 3px 6px;
}

/* HAMBURGER ICON */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    padding: 32px 28px 0px 0px;
    
}

/* MENU CENTER */
.main-menu {
    display: flex;
    gap: 25px;
    margin: 0 auto; /* 🔥 centers menu */
}

    .main-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 17px;
        
    }

        .main-menu a:hover {
            color: #00bcd4;
        }


/* ================================
   MOBILE VIEW
================================ */
@media (max-width: 768px) {

    /* Remove yellow offset */
    .main-header {
        top: 0;
    }

    .menu-toggle {
        display: block; /* 🔥 show hamburger */
    }

    .main-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; /* 🔥 full width */
        width: 100%; /* 🔥 full width */
        background: #000;
        padding: 25px 0px;
        gap: 15px;
        text-align: center; /* 🔥 center text */
    }

        .main-menu a {
            display: block;
            width: 100%;
            padding: 12px 0;
            font-size: 18px;
        }

        .main-menu.active {
            display: flex; /* 🔥 show when clicked */
            
        }

    .header-btn {
        display: none; /* hide button on mobile */
    }
}


/* BOOK NOW BUTTON */
.btn-book {
    background: #00bcd4;
    color: #fff;
    padding: 8px 22px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 15px;
}


    /* SLIDER BASE */
    .hero-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

        .slide.active {
            opacity: 1;
            position: relative;
        }
        /* IMAGE */
        .slide picture,
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    /* HEIGHT */
    @media (min-width: 1200px) {
        .hero-slider {
            height: 90vh;
        }
    }

    @media (max-width: 1199px) {
        .hero-slider {
            height: 80vh;
        }
    }

    @media (max-width: 991px) {
        .hero-slider {
            height: 70vh;
        }
    }

    @media (max-width: 767px) {
        .hero-slider {
            height: 100vh;
        }
    }
    /* TEXT CONTAINER */
    .slide-content {
        position: absolute;
        bottom: 30%;
        left: 10%;
        color: #fff;
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s ease;
    }
    /* TEXT APPEAR ANIMATION */
    .slide.active .slide-content {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-content h1 {
        font-size: 3rem;
        font-weight: 600;
    }

    .slide-content p {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.6);
        color: #fff;
        border: none;
        font-size: 40px;
        padding: 10px 16px;
        cursor: pointer;
        z-index: 20;
    }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        .slider-arrow:hover {
            background: rgba(0,0,0,0.8);
        }

    main {
        padding-top: 130px; /* 38px (yellow bar) + ~90px header */
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    /* ===============================
   ANGLED SEPARATOR (NO CURVES)
================================ */
    /* ANGLED STRIP (NO WHITE GAP) */
    .angled-separator {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 90px;
        overflow: hidden;
        z-index: 5;
    }

        .angled-separator .layer {
            position: absolute;
            width: 120%;
            height: 40px;
            left: -10%;
            transform: skewY(0deg);
        }
    /* Dark blue */
    .layer-1 {
        background: #39b9ec;
        bottom: 40px;
    }
    /* Medium blue */
    .layer-2 {
        background: #7fd6f3;
        bottom: 20px;
    }
    /* Light blue */
    .layer-3 {
        background: #dff6fd;
        bottom: 0;
    }


    /* ==============================
   TRAIN WITH BEST SECTION
============================== */
    .train-with-best {
        max-width: 1200px; /* controls section width */
        margin: 100px auto; /* centers section horizontally */
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr; /* text | images */
        gap: 60px;
        align-items: center;
    }
    /* LEFT CONTENT */
    .train-content h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #222;
        font-family: "Poppins", sans-serif;
    }

    .train-points {
        list-style: none;
        padding: 0;
    }

        .train-points li {
            font-size: 23px;
            margin-bottom: 14px;
            padding-left: 26px;
            position: relative;
            color: #333;
            line-height: 1.6;
        }

            .train-points li::before {
                content: "›";
                position: absolute;
                left: 0;
                top: 0;
                color: #00bcd4;
                font-size: 24px;
                font-weight: bold;
            }
    /* RIGHT IMAGE GRID */
    .train-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    /* IMAGE STYLE */
    .move-img {
        width: 100%;
        border-radius: 18px;
        cursor: pointer;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
        /* Hover effect */
        .move-img:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 25px 60px rgba(0,0,0,0.25);
        }


/* ==============================
   DESKTOP IMAGE SIZE CONTROL
============================== */

@media (min-width: 993px) {

    .train-gallery {
        max-width: 520px; /* control total gallery width */
        margin-left: auto; /* push gallery slightly right */
    }

        .train-gallery img {
            height: 320px; /* reduce height */
            object-fit: cover;
        }
}


    /* ==============================
   RESPONSIVE (MOBILE)
============================== */
/* ==============================
   RESPONSIVE DESIGN
============================== */

@media (max-width: 992px) {

    .train-with-best {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 60px auto;
        text-align: center;
    }

    .train-content h2 {
        font-size: 32px;
    }

    .train-points li {
        font-size: 18px;
        text-align: left;
        max-width: 450px;
        margin: 0 auto 12px;
    }

    .train-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }

        .train-gallery img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
}


/* Extra Small Mobile */
@media (max-width: 576px) {

    .train-gallery {
        grid-template-columns: 1fr;
    }

        .train-gallery img {
            height: 220px;
        }

    .train-content h2 {
        font-size: 26px;
    }

    .train-points li {
        font-size: 16px;
    }
}

.train-gallery img {
    width: 100%; /* control size 
    height: 260px;*/
    object-fit: cover; /*  no distortion */
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

        .train-gallery img:hover {
            transform: translateY(-8px) scale(1.04);
            box-shadow: 0 18px 40px rgba(0,0,0,0.18);
        }





    .best-features {
        margin-bottom: 20px; /* adjust: 40px / 60px / 100px */
    }
    /* ===== BEST FEATURES SECTION ===== */
    .best-features {
        position: relative;
        padding: 120px 0;
        background: url('/images/bg/badmintoncourt.jpg') center/cover no-repeat;
        overflow: hidden;
    }
        /* Background blur + dark overlay */
        .best-features .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 1;
        }

        .best-features .container {
            z-index: 2;
        }
    /* Feature Cards */
    .feature-card {
        padding: 35px 25px;
        border-radius: 6px;
        color: #000;
        font-family: 'Poppins', sans-serif;
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        transition: all 0.35s ease;
    }
        /* Colors */
        .feature-card.blue {
            background: #35b6e8;
        }

        .feature-card.yellow {
            background: #f4e35b;
        }

        .feature-card.red {
            background: #ff3b3b;
            color: #000;
        }
        /* Typography */
        .feature-card h3 {
            font-weight: 800;
            font-size: 22px;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .feature-card p {
            font-size: 18px;
            line-height: 1.6;
        }
    /* Hover animation */
    .move-card:hover {
        transform: translateY(-12px) scale(1.03);
    }


    .highlights-section {
        position: relative;
        height: 420px; /* 🔥 medium size */
        overflow: hidden;
        background: #000;
    }

    .highlights-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.35);
        z-index: 1;
    }

    .highlights-row {
        display: flex;
        height: 100%;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .highlight-card {
        flex: 1;
        position: relative;
        background-size: cover;
        background-position: center;
        cursor: pointer;
        transition: flex 0.6s ease, filter 0.6s ease;
        filter: brightness(0.75);
    }

        .highlight-card.active {
            flex: 3;
            filter: brightness(1);
        }

    .highlight-text {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0; /* 🔥 hidden by default */
        transition: opacity 0.4s ease;
        background: rgba(0,0,0,0.35); /* soft overlay */
    }
    /* TEXT INSIDE IMAGE */
    .card-text {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 42px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
        opacity: 0;
        transition: opacity 0.4s ease;
        background: rgba(0,0,0,0.25);
    }
    /* SHOW TEXT ONLY FOR ACTIVE / HOVERED CARD */
    .highlight-card:hover .card-text,
    .highlight-card.active .card-text {
        opacity: 1;
    }

    .highlight-card:hover .highlight-text {
        opacity: 1;
    }

    .highlight-card:hover {
        flex: 3; /* 🔥 expands hovered */
        filter: brightness(1);
    }


    .best-features {
        margin-bottom: 20px; /* adjust: 40px / 60px / 100px */
    }





    .cta-section {
        margin-top: 20px;
    }
    /* ===============================
   CTA STRIP
================================ */
    /* CTA SECTION */
    .cta-section {
        background: #f6e35a;
        padding: 50px 20px;
    }
    /* CENTER EVERYTHING */
    .cta-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center; /* vertical center */
        justify-content: center; /* horizontal center */
        gap: 40px;
        text-align: center;
    }
    /* TEXT */
    .cta-text h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #000;
    }

    .cta-text p {
        font-size: 22px;
        font-weight: 500;
        color: #000;
    }
    /* ICON */
    .cta-icon img {
        width: 70px;
        height: auto;
    }
    /* BUTTON */
    .btn-cta {
        background: #000;
        color: #fff;
        padding: 14px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: background 0.3s ease;
    }

        .btn-cta:hover {
            background: #222;
        }

    @media (max-width: 768px) {
        .cta-content {
            flex-direction: column;
            gap: 20px;
        }
    }

    .coaching-section {
        text-align: center;
        padding: 80px 20px;
    }

        .coaching-section h2 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .coaching-section .sub {
            color: #777;
            margin-bottom: 50px;
        }

    .cards {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }
    /* 🔵 BLUE BOX */
    .card {
        background: #bfeeff;
        width: 320px;
        padding: 30px;
        border-radius: 14px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        transition: transform 0.4s ease;
    }

        .card:hover {
            transform: translateY(-10px);
        }

    .card-img {
        overflow: hidden;
        border-radius: 12px;
        margin-bottom: 20px;
    }

        .card-img img {
            width: 100%;
            height: 230px;
            object-fit: cover;
            display: block;
        }
    /* 🎯 SWING ANIMATION */
    .swing {
        animation: swing 2.5s ease-in-out infinite;
        transform-origin: top center;
    }

    @keyframes swing {
        0% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(3deg);
        }

        50% {
            transform: rotate(0deg);
        }

        75% {
            transform: rotate(-3deg);
        }

        100% {
            transform: rotate(0deg);
        }
    }

    .card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 15px;
        margin: 6px 0;
    }

    .read-more {
        display: inline-block;
        margin-top: 15px;
        color: #007bff;
        text-decoration: none;
        font-weight: 600;
    }
    /* ===============================
   QUOTE SECTION (MODERN)
================================ */
    .quote-section {
        position: relative;
        min-height: 55vh;
        background: url('/images/bg/badmintoncourt.jpg') center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    /* dark overlay */
    .quote-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(2px);
    }
    /* diagonal accent stripe */
    .quote-stripe {
        position: absolute;
        top: 12%;
        width: 130%;
        height: 6px;
        background: repeating-linear-gradient( 135deg, #00c3ff, #00c3ff 8px, transparent 8px, transparent 16px );
        animation: stripe-move 6s linear infinite;
    }
    /* stripe animation */
    @keyframes stripe-move {
        from {
            transform: translateX(-20%);
        }

        to {
            transform: translateX(20%);
        }
    }
    /* quote box */
    .quote-box {
        position: relative;
        max-width: 900px;
        padding: 40px 55px;
        background: rgba(0, 0, 0, 0.75);
        color: #fff;
        text-align: center;
        font-size: 26px;
        line-height: 1.6;
        font-family: "Poppins", sans-serif;
        border-radius: 12px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.4);
        /* entrance animation */
        animation: fadeUp 1.2s ease forwards;
    }
    /* entrance animation */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* responsive */
    @media (max-width: 768px) {
        .quote-box {
            font-size: 18px;
            padding: 25px;
            margin: 0 15px;
        }
    }
    /* ===========================
   TRAINING MOMENTS SECTION
=========================== */

    .training-moments {
        padding: 100px 20px;
        background: #fff;
    }

    .section-title {
        text-align: center;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .section-subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 60px;
        font-size: 18px;
    }
    /* GRID */
    .moments-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: auto;
    }
    /* CARD */
    .moment-card {
        position: relative;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        cursor: pointer;
    }
        /* IMAGE */
        .moment-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
    /* OVERLAY */
    .moment-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

        .moment-overlay h3 {
            color: #fff;
            font-size: 26px;
            font-weight: 600;
            letter-spacing: 1px;
        }
    /* HOVER EFFECT */
    .moment-card:hover img {
        transform: scale(1.12);
    }

    .moment-card:hover .moment-overlay {
        opacity: 1;
    }
    /* RESPONSIVE */
    @media (max-width: 992px) {
        .moments-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
        .moments-grid {
            grid-template-columns: 1fr;
        }
    }
    /* ==========================
   VIDEO SHOWCASE SECTION
========================== */

    .video-showcase {
        padding: 90px 20px;
        background: #f9fbfd;
        text-align: center;
    }

    .section-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 18px;
        color: #666;
        margin-bottom: 60px;
    }
    /* GRID */
    .video-grid {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    /* CARD */
    .video-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 18px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
        transition: all 0.4s ease;
    }

        .video-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 70px rgba(0, 188, 212, 0.35);
        }
    /* VIDEO FRAME */
    .video-wrapper {
        position: relative;
        padding-top: 56.25%;
        overflow: hidden;
        border-radius: 16px;
    }

        .video-wrapper iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }
    /* TEXT */
    .video-card h3 {
        margin-top: 18px;
        font-size: 22px;
        font-weight: 600;
    }

    .video-card p {
        font-size: 15px;
        color: #555;
        margin-top: 6px;
    }
    /* RESPONSIVE */
    @media (max-width: 900px) {
        .video-grid {
            grid-template-columns: 1fr;
        }
    }
    /* ===============================
   BADMINTON CTA SECTION
================================ */
    .cta-hero {
        position: relative;
        min-height: 420px;
        background: url('/images/bg/badminton-jump-smash-sequence-training.png') center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    /* Dark + blur overlay (this creates the exact 2nd image look) */
    .cta-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }
    /* Content */
    .cta-content {
        position: relative;
        text-align: center;
        color: #fff;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
    }

        .cta-content h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

            .cta-content h1 span {
                display: block;
                font-size: 48px;
            }
    /* Button BELOW text */
    .cta-btn {
        display: inline-block;
        padding: 14px 36px;
        background: #00c4cc;
        color: #000;
        font-weight: 700;
        border-radius: 40px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .cta-btn:hover {
            background: #00aab1;
            transform: translateY(-3px);
        }
    /* =========================
   FOOTER STYLES
========================= */

    .academy-footer {
        background: radial-gradient(circle at top, #0c1f3f, #020d1e);
        color: #ffffff;
        padding: 60px 0 20px;
        font-size: 14px;
    }

    .footer-col p {
        margin-bottom: 6px;
    }

    .footer-logo {
        width: 200px;
        margin-bottom: -40px;
        margin-top: -45px;
    }

    .managed-logo {
        width: 200px;
        margin: 15px 0;
    }

    .footer-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #ffffff;
    }

    .footer-line {
        display: block;
        width: 35px;
        height: 3px;
        background: #f5c400;
        margin-bottom: 15px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-links a:hover {
                color: #f5c400;
            }

    .footer-social a {
        display: inline-flex;
        width: 42px;
        height: 42px;
        background: #ffffff;
        color: #ffffff;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        font-size: 18px;
    }

        .footer-social a:hover {
            background: #f5c400;
            color: #000;
        }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.2);
        margin-top: 40px;
        padding-top: 15px;
        text-align: center;
        font-size: 13px;
        color: #a9b6cc;
    }

    .main {
        padding-top: 140px;
    }

    .hero-slider {
        height: 90vh;
    }
    /* =========================
   FLOATING SOCIAL ICONS
========================= */
    /* LEFT SIDE ICONS */
    .floating-social {
        position: fixed;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .floating-social a {
            width: 42px;
            height: 42px;
            background: #ffffff;
            color: #fff;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }

            .floating-social a:hover {
                background: #f5c400;
                color: #000;
            }
    /* RIGHT WHATSAPP */
    .floating-whatsapp {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 9999;
    }

        .floating-whatsapp a {
            width: 55px;
            height: 55px;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

            .floating-whatsapp a:hover {
                transform: scale(1.1);
            }



    footer {
        margin: 0 !important;
        padding-bottom: 0 !important;
    }

    .academy-footer {
        margin-bottom: 0;
    }

    .container {
        margin-bottom: 0 !important;
    }


    html, body {
        margin: 0;
        padding: 0;
        height: 100%;
    }




