* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            background-color: #000;
            color: #fff;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            justify-content: center ;
            justify-items: center;
        }

        /* Header Styles */
        header {
            background-color: rgba(0, 0, 0, 0.9);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid #333;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }

        .logo span {
            color: #8C2131;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 16px;
        }

        nav ul li a:hover {
            color: #8C2131;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }


            .btn-login {
                background-color:#8C2131;
                color: #fff;
                padding: 10px 25px;
                border-radius: 25px;
                text-decoration: none;
                font-weight: 600;
                font-size: 14px;
                transition: all 0.3s;
                border: 2px solid #8C2131;
            }

            .btn-login:hover {
                background-color: transparent;
                color: #8C2131;
            }


        /* Hero Section */
        .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
        .hero-content {
            max-width: 600px;
            align-items: center;
            justify-content: center;
            text-align: center;
       
        }
     
        .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

        .hero h1 {
            font-size: 40px;
            
            
            font-family: "Bebas Neue", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        .hero img{
            width: 140px;
            margin-bottom: 12px;
        }
        .hero h1 span{
            color: #8C2131;
            font-weight: bolder;
        }

        .hero p {
            font-size: 30px;
            margin-bottom: 30px;
            color: #ccc;
             font-family: "Bebas Neue", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        .btn {
            display: inline-block;
            background-color: #8C2131;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid #8C2131;
            justify-self: center;
            margin: 0px 10px 15px 10px;
        }

        .btn:hover {
            background-color: transparent;
            color: #8C2131;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid #fff;
            margin-left: 15px;
        }

        .btn-outline:hover {
            background-color: #fff;
            color: #000;
        }


        /*animations*/
        /* Text animation styles */
          .hero-content h1,
          .hero-img,
          .hero-content p,
          .hero-content .btn {
              opacity: 0;
              transform: translateY(30px);
              animation: fadeInUp 0.8s ease forwards;
          }

          .hero-content h1 {
              animation-delay: 0.3s;
          }

          .hero-content p {
              animation-delay: 0.6s;  
          }

          .hero-content .btn {
              animation-delay: 0.9s;
              margin: 5px;
          }

          .hero-content .btn-outline {
              animation-delay: 1.1s;
          }

          @keyframes fadeInUp {
              to {
                  opacity: 1;
                  transform: translateY(0);
              }
          }

        /* Sections */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Programs Section */
 .programs-section {
            padding: 100px 0;
            background: #000;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #ccc;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Interactive Card Stack */
        .programs-stack {
            position: relative;
            height: 600px;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1000px;
              display: flex;
        justify-content: center;
        align-items: center;
        }

        .program-card {
            position: absolute;
            width: 350px;
            height: 450px;
            background: #111;
            border-radius: 20px;
            border: 1px solid #333;
            padding: 40px 30px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 20px 40px rgba(140, 33, 49, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .program-card.active {
            transform: translateX(0) scale(1) rotateY(0deg) !important;
            z-index: 10;
            border-color: #8C2131;
            box-shadow: 0 25px 50px rgba(140, 33, 49, 0.3);
        }

        .program-card.left {
            transform: translateX(-280px) scale(0.85) rotateY(15deg);
            z-index: 3;
            opacity: 0.7;
        }

        .program-card.right {
            transform: translateX(280px) scale(0.85) rotateY(-15deg);
            z-index: 3;
            opacity: 0.7;
        }

        .program-card.far-left {
            transform: translateX(-500px) scale(0.7) rotateY(25deg);
            z-index: 1;
            opacity: 0.4;
        }

        .program-card.far-right {
            transform: translateX(500px) scale(0.7) rotateY(-25deg);
            z-index: 1;
            opacity: 0.4;
        }

        .program-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8C2131, #a52c3f);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 2rem;
            color: #fff;
        }

        .program-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        .program-card p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .program-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .program-features li {
            color: #8C2131;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

        .program-features li:before {
            content: "✓";
            margin-right: 10px;
            font-weight: bold;
        }

        .program-btn {
            background: #8C2131;
            color: #fff;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .program-btn:hover {
            background: #a52c3f;
            transform: translateY(-2px);
        }

        /* Navigation Dots */
        .program-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 50px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #333;
            cursor: pointer;
            transition: all 0.3s;
        }

        .nav-dot.active {
            background: #8C2131;
            transform: scale(1.2);
        }

        /* Mobile Styles */
      @media (max-width: 768px) {
    .program-card.left {
        transform: translateX(calc(-50% - 200px)) scale(0.8) rotateY(20deg);
    }

    .program-card.right {
        transform: translateX(calc(-50% + 200px)) scale(0.8) rotateY(-20deg);
    }

    .program-card.far-left {
        transform: translateX(calc(-50% - 350px)) scale(0.6) rotateY(30deg);
    }

    .program-card.far-right {
        transform: translateX(calc(-50% + 350px)) scale(0.6) rotateY(-30deg);
    }
}

@media (max-width: 480px) {
    .program-card.left {
        transform: translateX(calc(-50% - 150px)) scale(0.75) rotateY(25deg);
    }

    .program-card.right {
        transform: translateX(calc(-50% + 150px)) scale(0.75) rotateY(-25deg);
    }
}

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

        .programs-section {
            animation: slideIn 0.8s ease-out;
        }


        /* Coaches Section */
            .coaches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            justify-items: center;
        }

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

        .coach-card {
            text-align: center;
        }

        .coach-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background-color: #333;
            background-size: cover;
            background-position: center;
        }

        .coach-card h3 {
            font-size: 22px;
            margin-bottom: 5px;
        }

        .coach-card p {
            color: #8C2131;
            margin-bottom: 15px;
        }

        /* Testimonials */
        .testimonials {
            background-color: #111;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial {
            padding: 30px;
        }

        .testimonial p {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial h4 {
            color: #8C2131;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #8C2131;
        }

        .contact-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 10px;
            color: #8C2131;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            background-color: #111;
            border: 1px solid #333;
            border-radius: 5px;
            color: #fff;
        }

        .contact-form textarea {
            height: 150px;
        }

        /* Footer */
        footer {
            background-color: #111;
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #8C2131;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #8C2131;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #222;
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #8C2131;
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #ccc;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .hero-content .btn {
        display: block;
        width: 80%;
        max-width: 250px;
        margin: 0 auto 15px auto;
    }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #000;
                flex-direction: column;
                padding: 20px 0;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 0;
                text-align: center;
                padding: 10px 0;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .btn {
                display: block;
                margin-bottom: 15px;
                text-align: center;
            }

            .btn-outline {
                margin-left: 0;
            }
        }

           