  :root {
            --primary: #FF5F1F;
            --primary-dark: #e04b0e;
            --dark: #1A1A1A;
            --dark-light: #2d2d2d;
            --light: #F8F9FA;
            --gray: #6c757d;
            --light-gray: #e9ecef;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            text-align: center;
        }

        .btN {
            display: inline-block;
            padding: 12px 25px;
            background-color: green;
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .btn:hover, .btN:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        .section {
            padding: 50px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--primary);
            margin: 15px auto 0;
        }

        /* Header Styles */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .logo span {
            color: var(--dark);
        }

       .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    padding-top: 40px;
    transition: left 0.3s ease;
    z-index: 999;
}

.nav-links.active {
    left: 0;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    color: var(--dark);
}


        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 70px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .hero-content img {
            max-width: 280px;
            margin: 0 auto 20px;
            display: block;
        }

        .hero h1 {
            font-size: 2rem;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 25px;
        }

        .hero-btns {
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: center;
            align-items: center;
        }

        /* Pricing Section */
        .pricing-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            margin-top: 30px;
        }

        .plan-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .plan-card.highlighted {
            border: 2px solid var(--primary);
        }

        .plan-card.highlighted::before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: var(--primary);
            color: white;
            padding: 5px 35px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .plan-header {
            padding: 20px;
            background-color: var(--dark);
            color: white;
        }

        .plan-header h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .price span {
            font-size: 0.9rem;
            font-weight: 400;
        }

        .savings {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .plan-features {
            padding: 20px;
        }

        .plan-features li {
            padding: 8px 0;
            border-bottom: 1px solid var(--light-gray);
            font-size: 0.9rem;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li i {
            color: var(--primary);
            margin-right: 10px;
        }

        /* Transformations Section */
        .transformations {
            background-color: var(--dark);
            color: white;
        }

        .transformation-slider {
            margin-top: 30px;
        }

        .transformation-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin: 20px 0;
        }

        .transformation-img {
            width: 100%;
            max-width: 300px;
            height: 300px;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .transformation-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .transformation-info {
            padding: 15px;
        }

        .transformation-info h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .transformation-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 15px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item span {
            display: block;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary);
        }

        .stat-item small {
            font-size: 0.8rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* About Section */
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .about-text h2 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .about-text h4 {
            margin-bottom: 15px;
            color: var(--primary);
            font-size: 1rem;
        }

        .about-text p {
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .certifications {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }

        .cert-badge {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary);
        }

        /* Gym Banner Section - BIG GYM IMAGE */
        .gym-banner {
            padding: 30px 0;
            width: 100%;
        }

        .gym-banner .container {
            padding: 0;
            max-width: 100%;
        }

        .gym-banner .section-title {
            padding: 0 15px;
        }

        .gym-photo-container {
            width: 100%;
            height: 70vh;
            overflow: hidden;
            position: relative;
        }

        .gym-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gym-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            text-align: center;
        }

        .gym-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .gym-overlay p {
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1534258936925-c58bed479fcb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1631&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 50px 0;
        }

        .cta h2 {
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .cta p {
            max-width: 100%;
            margin: 0 auto 25px;
            font-size: 0.95rem;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
            font-size: 1.2rem;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links li {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .footer-links i {
            margin-right: 8px;
            color: var(--primary);
            width: 16px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: var(--dark-light);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--dark-light);
            font-size: 0.9rem;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            overflow-y: auto;
        }

        .modal-content {
            background-color: white;
            width: 90%;
            max-width: 500px;
            margin: 50px auto;
            border-radius: 10px;
            overflow: hidden;
        }

        .modal-header {
            padding: 15px;
            background-color: var(--dark);
            color: white;
            position: relative;
        }

        .modal-header h3 {
            font-size: 1.3rem;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .modal-body {
            padding: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 0.9rem;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
        }

        /* Media Queries for Larger Screens */
        @media (min-width: 768px) {
            .section {
                padding: 70px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            
            .pricing-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-btns {
                flex-direction: row;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Gym Banner for Tablet */
            .gym-photo-container {
                height: 80vh;
            }

            .gym-overlay h3 {
                font-size: 2rem;
            }

            .gym-overlay p {
                font-size: 1.2rem;
            }
        }

        @media (min-width: 992px) {
            .mobile-menu-btn {
                display: none;
            }
            
           .nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
        display: flex !important; /* Force display */
        gap: 30px;
    }
            
            .about-content {
                flex-direction: row;
                gap: 50px;
            }
            
            .pricing-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
            }

            /* Gym Banner for Desktop */
            .gym-photo-container {
                height: 85vh;
            }

            .gym-overlay {
                padding: 40px;
            }

            .gym-overlay h3 {
                font-size: 2.5rem;
            }

            .gym-overlay p {
                font-size: 1.3rem;
            }
        }

        @media (min-width: 1200px) {
            .pricing-cards {
                grid-template-columns: repeat(4, 1fr);
            }

            /* Gym Banner for Large Desktop */
            .gym-photo-container {
                height: 90vh;
            }
        }
