html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #0C0C1A 0%, #1A1A2E 100%);
    color: #B3B3B3;
    scroll-behavior: smooth;
    scroll-padding-top: 60px; 
}
h1, h2, h3 {
    color: #FFFFFF;
}

h2 {
    font-size: 2.5em;
    animation: fadeInDown 1s ease;
}

p {
    font-size: 1em;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    background-color: #0C0C1A;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    transition: background-color 0.5s ease;
}

.logo img {
    width: 120px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
    padding: 10px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: #00D4FF;
    font-weight: 600;
}

nav ul li a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #00D4FF;
    transition: all 0.3s ease;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon img {
    width: 30px;
}

.vr-about-section {
    padding: 100px 20px;
    animation: fadeInUp 3s ease;
}
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.iframe-container,
.about-content {
    flex: 1;
    max-width: 45%;
}

.iframe-container {
    overflow: hidden;
    border-radius: 15px;
    margin: auto;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    aspect-ratio: 16/9;
}

.about-content {
    padding-left: 20px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .iframe-container, .about-content {
        max-width: 100%;
    }
}

.gym-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gym-logo {
    width: 60px;
    border-radius: 8px;
}

.gym-info h1 {
    font-size: 2.2em;
    font-weight: bold;
    margin: 0;
}

.star-rating {
    display: flex;
    align-items: center;
}

.star {
    font-size: 18px;
    color: #b3b3b3;
    cursor: pointer;
    margin-right: 3px;
}

.star:hover,
.star.active {
    color: #ffcc00;
}

.workout-amenities-section {
    padding: 40px 20px;
    background-color: #171329;
    animation: fadeIn 2s ease;
}

.section-heading h2 {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 20px;
}

.workouts-container, .amenities-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.workouts-grid, .amenities-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
}

.workout-item, .amenity-item {
    text-align: center;
    flex-basis: 19%;
    flex: 0 0 150px;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.workout-item:hover, .amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(131, 141, 143, 0.555);
    animation: fadeIn 1s ease;
}

.workout-item img, .amenity-item img {
    max-width: 50px;
    margin-bottom: 10px;
}

.amenities-grid::-webkit-scrollbar,.workouts-grid::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    z-index: 1;
}

.scroll-btn img {
    width: 24px;
}

.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

.packages-section {
    padding: 60px 20px;
    background-color: #171329;
    text-align: center;
    color: #ffffff;
}

.packages-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.packages-section .text-content {
    margin-bottom: 30px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    animation: fadeIn 1s ease;
}

.package {
    background-color: #1A1A2E;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.package:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00D4FF;

}

.package h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.package ul {
    list-style: none;
    padding: 0;
}

.package ul li {
    margin: 10px 0;
    font-size: 1.2em;
}

.package ul li strong {
    color: #00D4FF;
}

.discount {
    text-decoration: line-through;
    color: #B0B0B0;
    margin-left: 10px;
}

.offer-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
    color: #B0B0B0;
}

.offer-option input[type="radio"] {
    margin-right: 10px;
}

.offer-option:hover {
    background-color: #1F2A44;
}

.offer-option.selected {
    border: 2px solid #00BFFF;
    background-color: #1F2A44;
}

.checkout-button {
    display: inline-block;
    background-color: #00D4FF;
    color: #0C0C1A;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 10px #00D4FF, 0 0 20px #00D4FF;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.checkout-button:hover {
    background-color: #0099CC;
}

.checkout-button:focus {
    outline: none;
}

input[type="radio"] {
    display: none;
}

@media (max-width: 768px) {
    .packages-section h2 {
        font-size: 2em;
    }
    
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .package ul li {
        font-size: 1em;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.business-hours {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.business-hours h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hours-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hours-table th, .hours-table td {
    padding: 15px 20px;
    text-align: left;
    font-size: 1.1em;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table th {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table tr:hover {
    background-color: rgba(0, 212, 255, 0.1);
}

footer {
    text-align: center;
    padding: 20px;
}

.back-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00D4FF;
    color: #0C0C1A;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px #00D4FF, 0 0 20px #00D4FF;
    margin-top: 30px;
}

.back-btn:hover {
    background-color: #0099CC;
}

@media (max-width: 768px) {
    .iframe-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    }

    iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .amenity-item {
        flex: 0 0 120px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #0C0C1A;
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul.nav-active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
    
    nav ul li {
        padding: 10px 0;
    }

    nav ul li a {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .amenity-item {
        flex: 0 0 100px;
    }
}

.contact-card {
    background-color: #1A1A2E;
    color: #EAEAEA;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 20px 0;
}

.contact-card h3 {
    margin: 0;
    font-size: 1.5em;
    color: #EAEAEA;
    flex: 1;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 1.2em;
    color: #B0B0B0;
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info span:hover {
    color: #00BFFF;
}

@media screen and (max-width: 768px) {
    .contact-card {
        display: none;
    }
}