/* ========== Base Styles ========== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
    padding-top: 2rem;
}

html {
    scroll-behavior: smooth;
}

.avatar-letter {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #000;
    font-weight: bold;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    margin-right: 1rem;
    flex-shrink: 0;
}


.fight-banner {
    /*background: linear-gradient(135deg, #111 0%, #880101 100%);*/
    background: rgba(0, 0, 0, 0.29);
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
}

.fight-banner h3 {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
    color: #ff4d00;
}

.fight-banner h2 {
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 1.4;
}

.fight-banner p {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.fight-banner-bkg {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 12px;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
}

.fight-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.fight-btn {
    display: inline-block;
    width: 210px;
    text-align: center;
    padding: 14px 28px;
    font-size: 1.5rem;
    font-weight: normal;
    color: #fff;
    background-color: #000000;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.fight-btn:hover {
    transform: scale(1.10);
    background-color: #111111; /* Slight variation to ensure transition triggers */
}


/* Horizontal Scroll Gallery */
.gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 40px; /* spacing between items */
    padding: 20px 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ffb800 rgba(255, 255, 255, 0.1);
}

/* Webkit scrollbar */
.gallery-scroll::-webkit-scrollbar {
    height: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background-color: #ffb800;
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

/* Gallery images */
.gallery-scroll img {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 15px 4px rgba(255, 184, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-scroll img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px 8px rgba(255, 184, 0, 0.45);
}

/* Modal (Lightbox) */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    cursor: pointer;
}

.gallery-modal img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 0 40px 15px rgba(255, 184, 0, 0.6);
    transition: transform 0.3s ease;
    cursor: default;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .gallery-scroll {
        gap: 30px;
    }
    .gallery-scroll img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-scroll {
        gap: 20px;
        padding: 15px 5px;
    }
    .gallery-scroll img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .gallery-scroll {
        gap: 15px;
        padding: 10px 5px;
    }
    .gallery-scroll img {
        width: 140px;
        height: 140px;
    }
}

.button-wrapper {
    margin-top: auto; /* pushes this wrapper to bottom */
    text-align: center; /* centers button horizontally */
    padding-top: 15px;
}

.toggle-btn {
    background: linear-gradient(135deg, #fcb900, #ffb800);
    border: none;
    border-radius: 30px;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(252, 185, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.toggle-btn:hover {
    background: linear-gradient(135deg, #f8da89, #ffaa00);
    transform: scale(1.05);
}

.toggle-btn::after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.toggle-btn:hover::after {
    transform: translateX(4px);
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.review-invite {
    text-align: center;
    padding: 40px 20px;
    background-color: #111;
    color: #fff;
}

.review-invite h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.review-invite p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.review-btn {
    display: inline-block;
    padding: 18px 18px;
    background-color: #fbbc05; /* Google yellow */
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.review-btn:hover {
    background: linear-gradient(135deg, #f8da89, #ffaa00);
    transform: scale(1.05);
}



/* ========== Header ========== */
header {
    background-color: #000;
    padding: 1rem 0;
    color: #fff;
    text-align: center; /* center inline content */
}

/* Container holding logo, heading, and nav stacked vertically and centered */
.container.header-left {
    display: flex;
    flex-direction: column; /* stack vertically */
    align-items: center;    /* center horizontally */
    justify-content: center; /* center vertically if needed */
    gap: 0.2rem;              /* spacing between logo and text/nav */
    margin: 0 auto;         /* center container horizontally */
    max-width: 900px;       /* optional max width */
    padding: 0 1rem;        /* some horizontal padding on small screens */
    text-align: center;     /* center text inside */
}

/* Logo wrapper */
.logo-wrapper {
    position: relative;
    width: 150px;
    height: 150px; /* fixed height */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0rem;
}

/* Logo image and video */
.logo-wrapper .logo {
    position: relative;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

/* Heading */
.header-text-nav h1,
header h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 0;
    background-color: #000; /* or your preferred background */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li a {
    color: #fcb900;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 2rem);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }

    nav {
        padding: 1.5rem 0;
    }

    .header-text-nav h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}


.hero {
    position: relative;
    text-align: center;
    height: 90vh; /* can adjust as needed */
    overflow: hidden;
    margin-top: 1rem; /* push hero below nav if nav is fixed */
}

/* Background image styling */
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    //filter: brightness(100%);
}

/* Gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 2%,
            rgba(0, 0, 0, 0) 98%,
            rgba(0, 0, 0, 1) 100%
    );
}

/* Hero text container */
.hero-text {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* perfectly center */
    color: white;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem; /* spacing between elements */
}

/* Headline */
.hero-text h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    margin: 0;
}

/* Paragraphs */
.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin: 0;
    line-height: 1.5;
}

.cta-button {
    display: block;
    background-color: #fcb900;
    color: #000;
    padding: 12px 12px;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    margin: 0.5rem auto 0 auto;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
    max-width: 270px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f8da89, #ffaa00);
    transform: scale(1.05);
}
.hero#about img,
.hero#story img {
    filter: brightness(40%);
}

.hero#about,
.hero#story {
    position: relative;
    overflow: hidden;
}

.hero#about::before,
.hero#story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,     /* solid black at top */
            rgba(0, 0, 0, 1) 10%,     /* solid black at top */
            rgba(0, 0, 0, 0) 40%,    /* fade out */
            rgba(0, 0, 0, 0) 60%,    /* stay transparent */
            rgba(0, 0, 0, 1) 90%,     /* solid black at top */
            rgba(0, 0, 0, 1) 100%    /* fade back to black at bottom */
    );
    z-index: 2;
    pointer-events: none;
}

.site-footer {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #fff;
    text-align: center;
    border-top: 3px solid #ffb800;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h2 {
    font-size: 2rem;
    color: #ffb800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ffb800;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    display: inline-block;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffb800;
}

.footer-copy {
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social a {
        margin: 0 10px;
    }
}

.fight-buttons {
    margin-top: 1rem;
    margin-bottom: 2rem; /* add this line to increase space below the buttons */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}


/* Modify the wrapper to ensure clickability */
.fight-btn2-wrapper {
    padding-bottom: 0rem;
    display: inline-block;
    position: relative; /* Add this */
    z-index: 1; /* Ensure it stays above other elements */
}

/* Update the button styles */
.fight-btn2 {
    display: inline-block;
    width: 240px;
    text-align: center;
    margin: 1rem;
    padding: 15px 15px;
    font-size: 1.5rem;
    font-weight: normal;
    color: #fff;
    background-color: #000000;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.2s ease;
    position: relative; /* Add this */
    z-index: 2; /* Higher than wrapper */
    pointer-events: auto; /* Ensure it's clickable */
}

/* Add this to ensure the button remains clickable during animations */
.fight-btn2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

/* Keep all your existing animations exactly as they are */
/* [All your existing animation keyframes and rules remain unchanged] */

/* Modify the hover rules slightly */
.fight-btn2-wrapper:hover {
    animation:
            button-recoil 1.2s ease-out 2.3s 1 forwards,
            shake 0.5s ease-in-out 3.0s 1;
    pointer-events: none; /* Disable pointer events on wrapper */
}

.fight-btn2:hover,
.fight-btn2:hover::after {
    pointer-events: auto; /* Re-enable pointer events on button */
}

.fight-btn2:hover {
    transform: scale(1.05);
    animation:
            btn2-flash1 0.3s ease-in-out 2.8s 1,
            btn2-flash2 0.6s ease-in-out 3.0s 1;
    cursor: pointer; /* Ensure cursor changes to pointer */
}


/* Gloves base */
.glove {
    display: inline-block;
    position: relative;
}

/* Combo: 1-2-1-2 */
@keyframes glove-bounce {
    0% { transform: translateY(5px); }
    50% { transform: translateY(-25px); }
    100% { transform: translateY(0px); }
}


/* Combo: pause */
@keyframes pause {
    0% { transform: translateY(0px); }
    50% { transform: translateY(0px); }
    100% { transform: translateY(0px); }
}

/* Combo: 3 */
@keyframes glove-left-hook {
    0% { transform: rotate(0deg) translateX(0); }
    20% { transform: rotate(-30deg) translateX(-10px) translateY(5px); }
    40% { transform: rotate(-0deg) translateX(-15px) translateY(-5px); }
    60% { transform: rotate(30deg) translateX(-10px) translateY(-15px); }
    80% { transform: rotate(60deg) translateX(-10px) translateY(-25px); }
    100% { transform: rotate(0deg) translateX(0); }
}

/* Combo: 4 */
@keyframes glove-right-hook {
    0%   { transform: rotate(0deg) translateX(0); }
    20%  { transform: rotate(30deg) translateX(10px) translateY(5px); }
    40%  { transform: rotate(0deg) translateX(15px) translateY(-5px); }
    60%  { transform: rotate(-30deg) translateX(10px) translateY(-15px); }
    80%  { transform: rotate(-60deg) translateX(10px) translateY(-25px); }
    100% { transform: rotate(0deg) translateX(0); }
}

/* Combo: 5 */
@keyframes glove-left-up {
    0%   { transform: rotate(0deg) translateX(0); }
    20%  { transform: rotate(-20deg) translateX(-5px) translateY(-5px); }
    40%  { transform: rotate(0deg) translateX(-10px) translateY(5px); }
    60%  { transform: rotate(20deg) translateX(-5px) translateY(15px); }
    80%  { transform: rotate(40deg) translateX(0px) translateY(25px); }
    100% { transform: rotate(0deg) translateX(0); }
}

/* Combo: 6 */
@keyframes glove-right-up {
    0%   { transform: rotate(0deg) translateX(0); }
    20%  { transform: rotate(30deg) translateX(-10px) translateY(5px); }
    40%  { transform: rotate(0deg) translateX(-5px) translateY(-5px); }
    60%  { transform: rotate(-30deg) translateX(-10px) translateY(-15px); }
    80%  { transform: rotate(-60deg) translateX(-15px) translateY(-35px); }
    100% { transform: rotate(0deg) translateX(0); }
}

@keyframes recoil-shake {
    0%   { transform: translateY(0); }
    10%  { transform: translateY(15px); }
    40%  { transform: translateY(15px); }
    50%  { transform: translateY(-15px); }
    75%  { transform: translateY(-15px); }
    85%  { transform: translateY(0); }
    88%  { transform: translateX(-3px); }
    91%  { transform: translateX(3px); }
    94%  { transform: translateX(-2px); }
    97%  { transform: translateX(2px); }
    100% { transform: translateX(0); }
}


@keyframes glove-bounce-2 {
    0%   { transform: translateY(0px); }
    25%  { transform: translateY(-25px); }
    50%  { transform: translateY(0px); }
    75%  { transform: translateY(0px); }
    100% { transform: translateY(0px); }
}

@keyframes glove-bounce-3 {
    0%   { transform: translateY(0px); }
    25%  { transform: translateY(-30px); }
    50%  { transform: translateY(-30px); }
    75%  { transform: translateY(-30px); }
    100% { transform: translateY(0px); }
}

@keyframes btn2-flash1 {
    0%   { box-shadow: 0 0 12px 4px rgba(255, 102, 0, 0.7); }
    20%   { box-shadow: 0 0 12px 4px rgba(255, 102, 0, 0.7); }
    100% { box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4); }
}

@keyframes btn2-flash2 {
    0%   { box-shadow: 0 0 20px 10px rgba(255, 102, 0, 0.9); }
    30%   { box-shadow: 0 0 20px 10px rgba(255, 102, 0, 0.9); }
    100% { box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.6); }
}

.fight-btn2-wrapper:hover {
    animation:
            button-recoil 1.2s ease-out 2.3s 1 forwards,
            shake 0.5s ease-in-out 3.0s 1;
}



.fight-btn2:hover {
    transform: scale(1.05);
    animation:
            btn2-flash1 0.3s ease-in-out 2.8s 1,
            btn2-flash2 0.6s ease-in-out 3.0s 1;
}

.fight-btn2:hover .glove-left {
    animation:
            glove-bounce 0.25s ease-in-out 0s 1,
            glove-bounce 0.25s ease-in-out 0.5s 1,
            glove-left-hook 0.4s ease-in-out 1s 1,
            glove-bounce 0.25s ease-in-out 1.50s 1,
            glove-bounce 0.25s ease-in-out 1.70s 1,
            glove-bounce-3 0.25s ease-in-out 2.8s 1;
}

.fight-btn2:hover .glove-right {
    animation:
            glove-bounce 0.25s ease-in-out 0.25s 1,
            glove-bounce 0.25s ease-in-out 0.75s 1,
            glove-right-hook 0.4s ease-in-out 1.2s 1,
            glove-bounce-2 0.5s ease-in-out 2.2s 1,
            glove-bounce-3 0.5s ease-in-out 2.95s 1;
}

.donate-banner {
    margin-top: 2rem;
    padding: 0.2rem;
}



.donor-leaderboard {
    background: #000000;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); /* subtle gold glow */
    margin-top: 2rem;
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard-heading {
    color: #ffffff; /* gold-ish color for heading */
    border-top: 2px solid #ffb800;
    border-bottom: 2px solid #ffb800;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0.75rem;
    text-align: center;
    padding: 0.5rem; /* add spacing between text and border */
}


/* Remove default list styling */
.donor-leaderboard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Base styles for all list items */
.donor-leaderboard li {
    font-size: 1.2rem;
    color: #fff;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Remove border from last item */
.donor-leaderboard li:last-child {
    border-bottom: none;
}

/* Alternating dark gradients */
.donor-leaderboard li:nth-child(odd) {
    background: linear-gradient(90deg, #111111, #1a1a1a);
}

.donor-leaderboard li:nth-child(even) {
    background: linear-gradient(90deg, #1a1a1a, #111111);
}
.logo-wrapper {
    position: relative;
    width: 198px;
    height: 198px; /* fix height */
    margin: 0 auto 0.5rem auto;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo-wrapper .logo {
    position: relative; /* or remove absolute */
    width: auto;
    max-height: 100%;
    max-width: 100%;
    display: block;
    transition: opacity 0.3s ease-in-out;
}


.logo-wrapper.leaderboard-logo {
    position: relative;
    width: 198px;
    height: 198px;
    margin: 0 auto 0.5rem auto;
}


.logo-wrapper .static-logo,
.logo-wrapper .animated-logo {
    width: 198px; /* or whatever size you're using */
    height: auto;
    display: block;
}

.logo-wrapper .animated-logo {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


.top-banner-static {
    display: block;
    width: 100%;
    background-color: black;
    text-align: center;
    padding: 0.4rem 0;
    font-weight: bold;
    font-size: 0.8rem;
    position: fixed;
    top: 4px; /* slightly down to show shadow */
    left: 0;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffb800;
    text-decoration: none;
    box-shadow: 0 0 12px 4px rgba(255, 102, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-banner-static:hover {
    transform: scale(1.05);
    box-shadow: 0 0 16px 6px rgba(255, 102, 0, 0.75);
}


@keyframes button-recoil {
    0% { transform: translateY(0); }
    20% { transform: translateY(15px); }
    40% { transform: translateY(15px); }
    60% { transform: translateY(-15px); }
    80% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

.google-reviews {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 40px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.google-reviews h2 {
    text-align: center;
    color: #ff4d00;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.review-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 30px;
    padding-bottom: 1rem;
}

.review-slider::-webkit-scrollbar {
    height: 10px;
}

.review-slider::-webkit-scrollbar-thumb {
    background: #ff4d00;
    border-radius: 10px;
}

.review {
    flex: 0 0 calc(33.333% - 1rem);
    background-color: #111;
    border-radius: 10px;
    padding: 1.2rem;
    min-width: 300px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
    scroll-snap-align: start;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-header .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #333;
    object-fit: cover;
}

.review-header strong {
    font-size: 1.1rem;
    color: #fff;
}

.review-header .stars {
    color: #FFD700;
    font-size: 1.5rem;
    line-height: 1;
}

.review-header small {
    color: #aaa;
}

.review-text {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
}

.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 3rem;
    color: #ffb800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #ffb800;
    margin: 10px auto 0;
}

.contact-section .subtext {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

/* Big "Train With Us" Button */
.train-btn-container {
    margin-bottom: 40px;
}

.train-btn {
    display: inline-block;
    background: #ffb800;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 18px 50px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
}

.train-btn:hover {
    background: transparent;
    color: #ffb800;
    border: 2px solid #ffb800;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 184, 0, 0.5);
}

/* Social buttons shared styling */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    padding: 14px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 184, 0, 0.3);
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.15);
    background: #111;
    color: #fff;
}

.social-btn img {
    width: 28px;
    height: 28px;
}

/* WhatsApp */
.whatsapp-btn {
    background: #000000;
    border-color: #1ebe57;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background: #25d366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Instagram */
.instagram-btn {
    border-color: #e1306c;
}

.instagram-btn:hover {
    background: #e1306c;
    color: #fff;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.5);
}

/* Facebook */
.facebook-btn {
    border-color: #1877f2;
}

.facebook-btn:hover {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

.social-media-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-media-buttons, .whatsapp-container {
        flex-direction: column;
        gap: 15px;
    }

    .social-btn, .whatsapp-btn, .train-btn {
        width: 80%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 2.2rem;
    }
    .contact-section .subtext {
        font-size: 1.1rem;
    }
    .social-btn, .whatsapp-btn, .train-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* ========== Shop Styles ========== */
/* Shop Hero */
.shop-hero {
    position: relative;
    height: 35vh;
    background: linear-gradient(135deg, #000 0%, #880101 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffb800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #eee;
}

.shop-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.shop-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.add-to-cart {
    background: #000;
    color: #fff;
    border: 3px solid #ffb800;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #ffb800;
    color: #000;
    border: 3px solid #ff8800;
}

.coming-soon {
    background: #cccccc;
    color: #000000;
    border: 3px solid #ffb800;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.coming-soon:hover {
    background: #9f9f9f;
    color: rgba(0, 0, 0, 0.6);
    border: 3px solid #444444FF;
}

.product-card {
    background: #111;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

/* Image window */
.product-image {
    width: 100%;
    max-width: 350px;
    height: 250px;          /* fixed window size */
    border-radius: 12px;    /* rounded window always visible */
    overflow: hidden;       /* enforces the rounded shape */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    background: #ffffff;    /* subtle background behind smaller images */
}

/* Image inside */
.product-image img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

.product-card h3 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}

.product-card .price {
    color: #ffb800;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 10px 0;
}

.product-card p {
    color: #ccc;
    margin: 10px 0 20px 0;
}

.cart-container {
    background: #111;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.cart-container h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-top: 0;
    border-bottom: 2px solid #ffb800;
    padding-bottom: 10px;
}

.cart-items {
    margin: 20px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.cart-item-name {
    color: #fff;
}

.cart-item-price {
    color: #ffb800;
}

.cart-total {
    text-align: right;
    font-size: 1.3rem;
    color: #fff;
    margin: 20px 0;
}

.cart-total span {
    color: #ffb800;
    font-weight: bold;
}

.checkout-form {
    margin-top: 30px;
}

.checkout-form h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.checkout-form textarea {
    min-height: 100px;
    resize: vertical;
}

.checkout-btn {
    background: #ffb800;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #ffa000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Payment Method Styles ===== */
.payment-method {
    margin: 20px 0;
    padding: 15px;
    background: #222;
    border-radius: 6px;
}

.payment-method h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payment-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    cursor: pointer;
}

.payment-options input[type="radio"] {
    accent-color: #ffb800;
}

.stripe-element {
    margin: 20px 0;
    padding: 15px;
    background: #222;
    border-radius: 6px;
}

.eft-instructions {
    background: #222;
    padding: 15px;
    border-radius: 6px;
    color: #fff;
    margin: 20px 0;
}

.eft-instructions h5 {
    color: #ffb800;
    margin-top: 0;
}

.eft-instructions h4 {
    font-size: 1.5rem;
}

.eft-instructions p {
    margin: 8px 0;
    line-height: 1.5;
}

.eft-instructions strong {
    color: #ffb800;
}

/* Spinner for loading state */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Cart item styles */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.cart-item-name {
    flex-grow: 1;
}

.cart-item-price {
    min-width: 80px;
    text-align: right;
    margin: 0 15px;
}

.remove-item {
    background: #880000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.remove-item:hover {
    background: #ff0000;
}

.empty-cart {
    color: #888;
    text-align: center;
    padding: 20px 0;
}

/* Add to cart feedback */
.add-to-cart.added-to-cart {
    background-color: #25a525;
    animation: pulse 0.5s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Additional styles for product page */
.product-page {
    padding: 2rem 0;
    background: #000;
    min-height: 100vh;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* optional: black background for empty space */
    height: 400px; /* fixed height for uniformity */
}

.product-main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* ensures image scales down but keeps aspect ratio */
}


.product-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.product-thumbnail.active {
    opacity: 1;
    border-color: #ffb800;
    transform: scale(1.05);
}

.product-thumbnail:hover {
    opacity: 1;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    color: #fff;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffb800;
}

.product-price {
    font-size: 2rem;
    color: #ffb800;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ccc;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features ul {
    padding-left: 1.5rem;
    color: #ccc;
}

.product-features li {
    margin-bottom: 0.5rem;
}

.variant-selector {
    margin-bottom: 2rem;
}

.variant-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #fff;
}

.variant-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.variant-option {
    padding: 0.5rem 1.5rem;
    border: 2px solid #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #222;
    color: #fff;
}

.variant-option.selected {
    border-color: #ffb800;
    background: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-label {
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.back-to-shop {
    display: inline-block;
    color: #ffb800;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-to-shop:hover {
    color: #fff;
}

/* ===== Urgency ===== */
.stock-alert {
    color: #ff4d4d;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* ===== Product Details ===== */
.product-details {
    position: relative;
}

.product-title {
    font-size: 2.5rem;
    color: #ffb800;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
    font-weight: normal;
}

.product-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features ul {
    padding-left: 1.5rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
}


/* ===== Quantity ===== */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-label {
    font-weight: bold;
}

.quantity-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

/* ===== Reviews ===== */
.product-reviews {
    margin-top: 2rem;
}

.product-reviews h3 {
    margin-bottom: 1rem;
    color: #ffb800;
}

.product-reviews p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

/* ===== Guarantees ===== */
.product-guarantees-section {
    margin-top: 2rem;
    padding: 2rem;
    background: #111;
    border-radius: 12px;
}

.product-guarantees-section h3 {
    color: #ffb800;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.product-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 150px; /* allows responsive width */
    min-width: 150px;
    background: #1a1a1a; /* dark box */
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.guarantee-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.guarantee-icon {
    font-size: 3rem;
    color: orange;
}

.guarantee-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

/* ===== Customer Reviews (slightly smaller) ===== */
.product-reviews-section {
    margin-top: 1rem;
    padding: 1.5rem; /* reduced padding */
    background: #111;
    border-radius: 12px;
}

.product-reviews-section h3 {
    color: #ffb800;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: #1a1a1a;
    padding: 1rem; /* slightly less padding */
    border-radius: 10px;
    color: #ccc;
    font-size: 0.95rem; /* slightly smaller text */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.review-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.review-stars {
    color: #ffb800;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    color: #fff;
    font-weight: bold;
}


.product-page {
    padding: 2rem 0;
    background: #000;
    min-height: 100vh;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    height: 400px;
}

.product-main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.product-thumbnail.active {
    opacity: 1;
    border-color: #ffb800;
    transform: scale(1.05);
}

.product-thumbnail:hover {
    opacity: 1;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    color: #fff;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffb800;
}

.product-price {
    font-size: 2rem;
    color: #ffb800;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ccc;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features ul {
    padding-left: 1.5rem;
    color: #ccc;
}

.product-features li {
    margin-bottom: 0.5rem;
}

.variant-selector {
    margin-bottom: 2rem;
}

.variant-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #fff;
}

.variant-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.variant-option {
    padding: 0.5rem 1.5rem;
    border: 2px solid #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #222;
    color: #fff;
}

.variant-option.selected {
    border-color: #ffb800;
    background: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-label {
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.added-to-cart {
    background: #25a525 !important;
    color: #fff !important;
}

.back-to-shop {
    display: inline-block;
    color: #ffb800;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-to-shop:hover {
    color: #fff;
}

/* ===== Urgency ===== */
.stock-alert {
    color: #ff4d4d;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* ===== Product Details ===== */
.product-details {
    position: relative;
}

.product-title {
    font-size: 2.5rem;
    color: #ffb800;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
    font-weight: normal;
}

.product-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features ul {
    padding-left: 1.5rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
}

/* ===== Quantity ===== */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-label {
    font-weight: bold;
}

.quantity-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

/* ===== Reviews ===== */
.product-reviews {
    margin-top: 2rem;
}

.product-reviews h3 {
    margin-bottom: 1rem;
    color: #ffb800;
}

.product-reviews p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

/* ===== Related Products ===== */
.related-products {
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.related-products h3 {
    margin-bottom: 1rem;
    color: #ffb800;
    font-size: 2rem;
    text-align: center;
}

.related-products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-product {
    background: #111;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.related-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.2);
}

.related-product-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.related-product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.related-product h4 {
    color: #ffb800;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.related-product .price {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.related-product p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.related-product .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-product .view-more-btn {
    display: block;
    width: 100%;
    background: #333;
    color: #ffb800;
    border: 2px solid #ffb800;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.related-product .view-more-btn:hover {
    background: #ffb800;
    color: #000;
    transform: translateY(-2px);
}

.related-product .add-to-cart {
    background: #000;
    color: #fff;
    border: 3px solid #ffb800;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.related-product .add-to-cart:hover {
    background: #ffb800;
    color: #000;
    border: 3px solid #ff8800;
}

.related-product .coming-soon {
    background: #666;
    color: #ccc;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: not-allowed;
}

/* ===== Guarantees ===== */
.product-guarantees-section {
    margin-top: 2rem;
    padding: 2rem;
    background: #111;
    border-radius: 12px;
}

.product-guarantees-section h3 {
    color: #ffb800;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.product-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 150px;
    min-width: 150px;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.guarantee-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.guarantee-icon {
    font-size: 3rem;
    color: orange;
}

.guarantee-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

/* ===== Customer Reviews ===== */
.product-reviews-section {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #111;
    border-radius: 12px;
}

.product-reviews-section h3 {
    color: #ffb800;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    color: #ccc;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.review-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.review-stars {
    color: #ffb800;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    color: #fff;
    font-weight: bold;
}

/* Popup Modal Styles for Related Products */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #111;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffb800;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 184, 0, 0.2);
}

.popup-title {
    color: #ffb800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.popup-product-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.popup-product-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.popup-product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.popup-product-details {
    flex-grow: 1;
}

.popup-product-name {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.popup-product-price {
    color: #ffb800;
    font-weight: bold;
    font-size: 1.1rem;
}

.variant-selector {
    margin-bottom: 1.5rem;
}

.variant-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #fff;
}

.variant-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.variant-option {
    padding: 0.5rem 1rem;
    border: 2px solid #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #222;
    color: #fff;
    font-size: 0.9rem;
}

.variant-option.selected {
    border-color: #ffb800;
    background: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-label {
    font-weight: bold;
    color: #fff;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.popup-add-to-cart {
    background: #000;
    color: #fff;
    border: 3px solid #ffb800;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.popup-add-to-cart:hover {
    background: #ffb800;
    color: #000;
    border: 3px solid #ff8800;
}

.popup-add-to-cart.added {
    background: #25a525;
    color: #fff;
}

/* Thumbnail gallery in popup */
.popup-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.popup-thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.popup-thumbnail.active {
    opacity: 1;
    border-color: #ffb800;
    transform: scale(1.1);
}

.popup-thumbnail:hover {
    opacity: 1;
}

.popup-thumbnail img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .related-products-container {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.product-card h3{
    color: #ffb800;
}

.product-image {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.03);
}

.product-image::after {
    content: '🔍 View Details';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image:hover::after {
    opacity: 1;
}

.product-title-link {
    text-decoration: none;
    color: #ffb800;
    cursor: pointer;
    transition: color 0.3s ease;
}x

 .product-title-link:hover {
     color: #ffffff;
 }

.view-more-btn {
    display: block;
    width: 100%;
    background: #333;
    color: #ffb800;
    border: 2px solid #ffb800;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.view-more-btn:hover {
    background: #ffb800;
    color: #000;
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Popup Modal Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #111;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffb800;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 184, 0, 0.2);
}

.popup-title {
    color: #ffb800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.popup-product-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.popup-product-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popup-product-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.popup-product-details {
    flex-grow: 1;
}

.popup-product-name {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.popup-product-price {
    color: #ffb800;
    font-weight: bold;
    font-size: 1.1rem;
}

.variant-selector {
    margin-bottom: 1.5rem;
}

.variant-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #fff;
}

.variant-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.variant-option {
    padding: 0.5rem 1rem;
    border: 2px solid #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #222;
    color: #fff;
    font-size: 0.9rem;
}

.variant-option.selected {
    border-color: #ffb800;
    background: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-label {
    font-weight: bold;
    color: #fff;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.popup-add-to-cart {
    background: #000;
    color: #fff;
    border: 3px solid #ffb800;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.popup-add-to-cart:hover {
    background: #ffb800;
    color: #000;
    border: 3px solid #ff8800;
}

.popup-add-to-cart.added {
    background: #25a525;
    color: #fff;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
    font-weight: normal;
}

/* Thumbnail gallery in popup */
.popup-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.popup-thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.popup-thumbnail.active {
    opacity: 1;
    border-color: #ffb800;
    transform: scale(1.1);
}

.popup-thumbnail:hover {
    opacity: 1;
}

.popup-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Training Services Section - Updated to match training-classes-section */
.training-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
}

.training-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffb800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ffb800;
}

.training-services .subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.category-header {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffb800;
    margin: 80px 0 40px;
    position: relative;
    display: inline-block;
    padding: 0 20px 15px;
    border-bottom: 3px solid #ffb800;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    max-width: 350px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 184, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.2);
    border-color: #ffb800;
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #000;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffb800;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffb800;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
    flex-grow: 1;
}

.session-info {
    color: #ffb800;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "✓";
    color: #ffb800;
    font-weight: bold;
    margin-right: 10px;
}

.book-btn {
    display: inline-block;
    background: #ffb800;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #ffb800;
    text-align: center;
    margin-top: auto;
}

.book-btn:hover {
    background: transparent;
    color: #ffb800;
    transform: scale(1.05);
}
.cta-section {
    text-align: center;
    margin: 50px;
    padding: 40px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    border: 2px solid #ffb800;
}

.cta-title {
    font-size: 2.5rem;
    color: #ffb800;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-description {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    background: #1da851;
}

/* Booking Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: #111;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ffb800;
}

.modal-title {
    color: #ffb800;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ddd;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px;
    background: #222;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #ffb800;
    outline: none;
}

.booking-form textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-booking {
    background: #ffb800;
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 1.1rem;
}

.submit-booking:hover {
    background: #ffa000;
    transform: translateY(-2px);
}

.selected-summary {
    background: rgba(255, 184, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        margin: 0 10px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h4 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .category-header {
        font-size: 1.8rem;
        margin: 60px 0 30px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .header-left {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        margin: 0 5px;
    }

    .service-content {
        padding: 15px;
    }

    .service-content h4 {
        font-size: 1.3rem;
    }

    .category-header {
        font-size: 1.5rem;
        margin: 40px 0 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Stats Section Styles */
.stats-section {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6b00;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff6b00;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* New Training Classes Section Styles */
.training-classes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
}

.training-classes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.training-classes-section h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffb800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.training-classes-section .subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.class-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.2);
    border-color: #ffb800;
}

.class-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.class-card:hover .class-image img {
    transform: scale(1.1);
}

.class-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffb800;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.class-content {
    padding: 30px;
}

.class-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffb800;
}

.class-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
}

.class-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.class-features li {
    padding: 8px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.class-features li:last-child {
    border-bottom: none;
}

.class-features li::before {
    content: "✓";
    color: #ffb800;
    font-weight: bold;
    margin-right: 10px;
}

.class-cta {
    display: inline-block;
    background: #ffb800;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #ffb800;
}

.class-cta:hover {
    background: transparent;
    color: #ffb800;
    transform: scale(1.05);
}

/* Fitness Challenge Section Styles */
.challenge-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.challenge-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.challenge-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.challenge-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.challenge-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.challenge-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.challenge-image {
    height: 200px;
    overflow: hidden;
}

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

.challenge-card:hover .challenge-image img {
    transform: scale(1.1);
}

.challenge-content {
    padding: 25px;
}

.challenge-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.challenge-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.challenge-btn {
    display: inline-block;
    background: #ff6b00;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.challenge-btn:hover {
    background: #e55a00;
}

/* Animation for stats counting */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item.animated {
    animation: countUp 0.8s ease forwards;
}

/* Combined About Section Styles */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Images/Gym2.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #ffb800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-section p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.highlight-item {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    padding: 30px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.highlight-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffb800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 80%;
        max-width: 300px;
    }

    .challenge-cards {
        flex-direction: column;
        align-items: center;
    }

    .classes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .training-classes-section h2 {
        font-size: 2.2rem;
    }

    .class-card {
        margin: 0 10px;
    }

    .class-content {
        padding: 20px;
    }

    .class-content h3 {
        font-size: 1.5rem;
    }

    .class-content p {
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 2.5rem;
    }

    .about-section p {
        font-size: 1.1rem;
    }

    .highlight-item {
        min-width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .classes-grid {
        grid-template-columns: 1fr;
    }

    .class-card {
        margin: 0 5px;
    }

    .class-content {
        padding: 15px;
    }

    .class-content h3 {
        font-size: 1.3rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
    }
}

