* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
          .design-credit {
              color: #E63946; 
              text-decoration: none; 
              font-weight: 500;
              transition: all 0.3s ease;
            }

            .design-credit:hover {
              text-decoration: underline; 
              color: #c6282e; 
            }

        :root {
            --primary-red: #E53E3E;
            --dark-red: #C53030;
            --light-red: #FEB2B2;
            --primary-blue: #2B6CB0;
            --dark-blue: #1A365D;
            --navy-blue: #2A4A6B;
            --starry-blue: #1E3A8A;
            --accent-gold: #D69E2E;
            --light-gray: #F7FAFC;
            --dark-gray: #2D3748;
            --white: #FFFFFF;
            --primary-gold: #E53E3E;  
            --dark-gold: #2B6CB0;      
        } 

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-blue) 100%);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        /* Mobile-only header adjustment */
        @media (max-width: 768px) {  /* adjust 768px if your mobile breakpoint differs */
          .header {
            max-height: 78px;
            padding: 0px 0; 
          }
        }


        .nav-container {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            z-index: 10;
            text-shadow: 0 0 20px rgba(229, 62, 62, 0.3);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-menu li:nth-child(3) {
            margin-right: 80px;
        }

        .nav-menu li:nth-child(4) {
            margin-left: 80px;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-red);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
            background: transparent;
            border: 2px solid rgba(229, 62, 62, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 10px;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 4px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(229, 62, 62, 0.1);
            border-color: var(--primary-red);
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: var(--primary-red);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active {
            background: rgba(229, 62, 62, 0.1);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.98), rgba(42, 74, 107, 0.98));
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-list {
            list-style: none;
            text-align: center;
            margin: 0;
            padding: 0;
        }

        .mobile-menu-list li {
            margin: 30px 0;
        }

        .mobile-menu-list a {
            color: var(--white);
            text-decoration: none;
            font-size: 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .mobile-menu-list a:hover {
            color: var(--primary-red);
            transform: scale(1.1);
        }

        .mobile-menu-list a::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            transition: width 0.3s ease;
        }

        .mobile-menu-list a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-blue) 30%, var(--primary-red) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(229,62,62,0.1)"/><stop offset="100%" stop-color="rgba(229,62,62,0)"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="200" fill="url(%23a)"/></svg>');
            animation: float 20s ease-in-out infinite;
            pointer-events: none !important;
        }
        
        @media (max-width: 768px) {
          .cta-button {
            position: relative !important;
            z-index: 10050 !important; 
            pointer-events: auto !important;
          }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            z-index: 2;
        }

        .hero-text {
            animation: slideInLeft 1s ease-out;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text .highlight {
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(229, 62, 62, 0.5);
        }

        .hero-text p {
            font-size: 1.3rem;
            color: var(--light-gray);
            margin-bottom: 30px;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            color: var(--white);
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(229, 62, 62, 0.3);
            z-index: 1002;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(229, 62, 62, 0.4);
        }

        .video-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideInRight 1s ease-out;
            cursor: pointer;
        }

        .video-thumbnail {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--navy-blue), var(--primary-red));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .video-container:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-red);
            transition: all 0.3s ease;
            z-index: 3;
        }

        .play-button:hover {
            background: var(--white);
            transform: scale(1.1);
        }

        .video-iframe {
            width: 100%;
            height: 300px;
            border: none;
            border-radius: 20px;
        }

        .video-iframe.hidden {
            display: none;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Who We Are Section */
        .who-we-are {
            padding: 100px 0;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 15px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--dark-gray);
            max-width: 650px;
            margin: 0 auto;
        }

        .who-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .who-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            padding: 30px;
            background: var(--light-gray);
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .who-item:hover {
            transform: translateY(-5px);
        }

        .who-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .who-icon i {
            font-size: 1.5rem;
            color: var(--white);
        }

        .who-info h3 {
            font-size: 1.3rem;
            color: var(--dark-blue);
            margin-bottom: 10px;
        }

        .who-info p {
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .who-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, var(--dark-blue), var(--navy-blue));
            border-radius: 15px;
            color: var(--white);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-red);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* What We Do Section */
        .what-we-do {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .what-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .service-item {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-icon i {
            font-size: 1.5rem;
            color: var(--white);
        }

        .service-item h3 {
            font-size: 1.3rem;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .service-item p {
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .what-images {
            position: sticky;
            top: 100px;
        }

        .image-gallery {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            height: 400px;
        }

        .gallery-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            pointer-events: none; 
            transition: opacity 0.5s ease-in-out;
        }

        .gallery-item.active {
            opacity: 1;
            pointer-events: auto;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: var(--white);
            padding: 40px 30px 30px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .image-overlay {
            transform: translateY(0);
        }

        .image-overlay h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary-red);
        }

        .image-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .gallery-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(229, 62, 62, 0.3);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .gallery-dot.active {
            background: var(--primary-red);
        } 30px;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, var(--deep-blue), var(--navy-blue));
            border-radius: 15px;
            color: var(--white);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* What We Do Section */
        .what-we-do {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .what-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .service-item {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-gold), var(--dark-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-icon i {
            font-size: 1.5rem;
            color: var(--white);
        }

        .service-item h3 {
            font-size: 1.3rem;
            color: var(--deep-blue);
            margin-bottom: 15px;
        }

        .service-item p {
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .what-images {
            position: sticky;
            top: 100px;
        }

        .image-gallery {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            height: 400px;
        }

        .gallery-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .gallery-item.active {
            opacity: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: var(--white);
            padding: 40px 30px 30px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .image-overlay {
            transform: translateY(0);
        }

        .image-overlay h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary-gold);
        }

        .image-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .gallery-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .gallery-dot.active {
            background: var(--primary-gold);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Meet Coach Section */
        .meet-coach {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-blue) 100%);
            position: relative;
            overflow: hidden;
        }

        .meet-coach::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(229,62,62,0.05)"/><stop offset="100%" stop-color="rgba(229,62,62,0)"/></radialGradient></defs><circle cx="150" cy="150" r="200" fill="url(%23b)"/><circle cx="850" cy="850" r="300" fill="url(%23b)"/></svg>');
            animation: float 25s ease-in-out infinite;
        }

        .meet-coach .section-title h2 {
            color: var(--white);
        }

        .meet-coach .section-title p {
            color: var(--light-gray);
        }

        .coach-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .coach-image {
            position: relative;
            text-align: center;
        }

        .coach-photo {
            width: 100%;
            max-width: 450px;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            opacity: 0.9;
            filter: grayscale(20%);
            /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
            transition: all 0.3s ease;
        }

        .coach-photo:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: translateY(-10px);
        }

        .coach-info {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            padding: 15px 30px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(229, 62, 62, 0.3);
        }

        .coach-info h3 {
            color: var(--white);
            font-size: 1.2rem;
            font-weight: bold;
            margin: 0;
        }

        .coach-video {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            cursor: pointer;
        }

        .coach-video-thumbnail {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .coach-video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .coach-video:hover .coach-video-thumbnail img {
            transform: scale(1.05);
        }

        .coach-video iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        .coach-video iframe.hidden {
            display: none;
        }

        .video-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .coach-video:hover .video-play-overlay {
            opacity: 0.8;
        }

        .video-play-button {
            width: 80px;
            height: 80px;
            background: rgba(229, 62, 62, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .video-play-button:hover {
            background: var(--primary-red);
            transform: scale(1.1);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-5px);
        }

        .faq-question {
            padding: 25px 30px;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            color: var(--white);
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            position: relative;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 30px;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 25px 30px;
            max-height: 200px;
        }

        /* Join Section */

        /* Join Us falling currency effect */
.join {
  position: relative;
  overflow: hidden;
}

.falling-symbol {
  position: absolute;
  top: -50px;
  font-size: 18px; /* slightly smaller */
  color: rgba(230, 57, 70, 0.15); /* theme red (#E63946) at 15% opacity */
  text-shadow: 
    0 0 4px rgba(200, 200, 200, 0.25), /* soft gray glow */
    0 0 8px rgba(180, 180, 180, 0.2);   /* subtle gray blur */
  animation: fall linear forwards;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
    opacity: 1; /* stays visible the whole way */
  }
}

          /* Theme link styling for obfuscated email */
          .email-link {
            color: #E63946;              /* theme red */
            text-decoration: none;       /* no underline by default */
            font-weight: 500;
            transition: all 0.3s ease;
          }
          .email-link:hover {
            text-decoration: underline;  /* underline only on hover */
            color: #c6282e;              /* darker red on hover */
          }

        /* Ensure Join Us content stays above background */
        .join .container {
          position: relative;
          z-index: 2;
        }


        .join {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy-blue) 0%, var(--primary-red) 100%);
            text-align: center;
        }

        .join h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 20px;
        }

        .join p {
            font-size: 1.3rem;
            color: var(--light-gray);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .join-button {
            background: var(--white);
            color: var(--navy-blue);
            padding: 20px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
        }

        .join-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--dark-blue);
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-red);
            margin-right: 15px;
            width: 30px;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-blue);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e1e5e9;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        .submit-button {
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            color: var(--white);
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(229, 62, 62, 0.3);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-blue) 100%);
            color: var(--white);
            padding: 0;
            height: 300px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
        }

        .footer-main {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 0;
            gap: 30px;
        }

        .footer-logo {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
            text-shadow: 0 0 20px rgba(229, 62, 62, 0.3);
        }

        .footer-logo i {
            font-size: 2.5rem;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-social {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(229, 62, 62, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 2px solid transparent;
        }

        .social-link:hover {
            background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
            color: var(--white);
            transform: translateY(-5px) scale(1.1);
            border-color: var(--primary-red);
            box-shadow: 0 10px 25px rgba(229, 62, 62, 0.4);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.4);
            padding: 15px 0;
            text-align: center;
            border-top: 1px solid rgba(229, 62, 62, 0.2);
            width: 100vw;
            position: absolute;
            bottom: 0px;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            display: flex;
            justify-content: space-between;
        }

        .footer-bottom span:first-child {
            margin-left: 20px;
        }

        .footer-bottom span:last-child {
            margin-right: 20px;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.4;
        }

                .footer-bottom {
          display: flex;
          justify-content: space-between;
        }

        .footer-bottom span:first-child {
          margin-right: 20px;
        }

        .footer-bottom span:last-child {
          margin-left: 20px;
        }

        /* Media query for screens smaller than 768px */
        @media (max-width: 767px) {
          .footer-bottom {
            flex-direction: column;
            text-align: center;
          }

          .footer-bottom span:first-child {
            margin-right: 0;
          }

          .footer-bottom span:last-child {
            margin-left: 0;
          }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 3rem;
            }

            .who-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .what-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .what-images {
                position: static;
                order: -1;
            }

            .coach-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .coach-image {
                order: -1;
            }

            .coach-photo {
                max-width: 350px;
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .logo {
                position: relative;
                left: auto;
                transform: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                z-index: 2;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .video-container {
                max-width: 80%;
                margin: 0 auto;
            }

            .video-thumbnail {
                height: 250px;
            }

            .who-stats {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }

            .stat-item {
                padding: 20px 15px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .service-item {
                padding: 25px 20px;
                margin-bottom: 20px;
            }

            .image-gallery {
                height: 300px;
            }

            .coach-photo {
                max-width: 300px;
                height: 350px;
            }

            .coach-video iframe {
                height: 250px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .section-title p {
                font-size: 1rem;
            }

            /* Mobile Contact Section Reorder */
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form {
                order: -1;
            }

            .footer-logo {
                font-size: 2.5rem;
            }

            .footer-logo i {
                font-size: 2rem;
            }

            .footer-social {
                gap: 15px;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .mobile-menu-list a {
                font-size: 1.8rem;
            }

            .nav-menu li:nth-child(3),
            .nav-menu li:nth-child(4) {
                margin: 0;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .video-container {
                max-width: 85%;
            }

            .who-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .stat-item {
                padding: 20px 15px;
            }

            .service-item {
                padding: 20px 15px;
            }

            .faq-question {
                padding: 20px 25px;
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 25px;
            }

            .faq-answer.active {
                padding: 20px 25px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .footer-logo {
                font-size: 2rem;
            }

            .footer-logo i {
                font-size: 1.8rem;
            }

            .footer-social {
                gap: 12px;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .mobile-menu-list a {
                font-size: 1.5rem;
            }

            .mobile-menu-list li {
                margin: 25px 0;
            }
        }
                    /* Popup overlay */
            .popup-overlay {
              display: none; /* hidden by default */
              position: fixed;
              top: 0; left: 0;
              width: 100%; height: 100%;
              background: rgba(10, 22, 40, 0.75); /* dark navy with transparency */
              backdrop-filter: blur(4px); /* blur site behind */
              z-index: 9999;
              justify-content: center;
              align-items: center;
            }

            /* Popup box */
            .popup-box {
              background: var(--white);
              color: var(--dark-gray);
              padding: 30px;
              max-width: 400px;
              width: 90%;
              border-radius: 15px;
              text-align: center;
              box-shadow: 0px 8px 30px rgba(0,0,0,0.25);
              animation: fadeIn 0.3s ease-in-out;
            }

            /* Success/Error colors */
            .popup-box.success { border: 3px solid var(--primary-gold); }
            .popup-box.error   { border: 3px solid var(--primary-red); }

            /* Close button */
            .popup-close {
              margin-top: 20px;
              padding: 10px 20px;
              background: var(--primary-blue);
              color: var(--white);
              border: none;
              border-radius: 8px;
              cursor: pointer;
              font-weight: bold;
              transition: background 0.3s ease;
            }

            .popup-close:hover {
              background: var(--dark-blue);
            }

            /* Animation */
            @keyframes fadeIn {
              from { opacity: 0; transform: scale(0.95); }
              to   { opacity: 1; transform: scale(1); }
            }

            #preloader {
              position: fixed;
              top: 0; left: 0;
              width: 100%; height: 100%;
              background: beige;
              display: flex;
              justify-content: center;
              align-items: center;
              z-index: 99999;
              transition: opacity 0.6s ease;
            }

            .preloader-logo {
              font-size: 4rem;
              font-weight: bold;
              color: #2A4A6B;
              animation: pulse 1.5s infinite;
            }

            @keyframes pulse {
              0%, 100% { transform: scale(1); opacity: 1; }
              50% { transform: scale(1.2); opacity: 0.7; }
            }

/* Why Choose Us Section (bright theme) */
.why-choose-us {
  padding: 80px 20px;
  background: #f9f9f9; /* light background */
  color: #333333;      /* dark text for contrast */
  text-align: center;
}

.why-choose-us .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #E63946; /* theme red stays */
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  background: #ffffff; /* white card */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* lighter shadow */
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #E63946; /* red border */
}

.testimonial-name {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #E63946; /* theme red */
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.slider-nav span {
  cursor: pointer;
  font-size: 2rem;
  color: #E63946;
  padding: 5px 15px;
  transition: 0.3s;
}

.slider-nav span:hover {
  color: #ffffff;
  background: #E63946;
  border-radius: 50%;
}

/* Why Points */
.why-points ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.why-points li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #ffffff;
}

.why-points li::before {
  content: "✔";
  color: #E63946;
  font-weight: bold;
  position: absolute;
  left: 0;
}
