    /* General Styles */
    body {
        margin: 0;
        font-family: 'Arial', sans-serif;
        color: #f5f5f5; /* Adjusted for readability on black background */
        background-color: #000; /* Black background */
        line-height: 1.6;
        box-sizing: border-box;
    }

    /* Navbar */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #572c57; /* Dark shade from palette */
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Increased shadow for better contrast */
    }

    .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #f6ea98; /* Light yellow from palette */
    }

    .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    .nav-links li {
        display: inline-block;
    }

    .nav-links a {
        text-decoration: none;
        color: #f5f5f5; /* Light gray for text */
        font-weight: bold;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #e26972; /* Red shade from palette */
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #f5f5f5; /* Light gray for hamburger menu */
        margin: 4px 0;
    }

    /* Responsive Navbar */
    @media (max-width: 768px) {
        .nav-links {
            position: absolute;
            top: 100%;
            left: -100%;
            flex-direction: column;
            background-color: #572c57;
            width: 100%;
            transition: left 0.3s ease;
            padding: 10px 0;
        }

        .nav-links.active {
            left: 0;
        }

        .hamburger {
            display: flex;
        }

        .nav-links li {
            width: 100%;
            text-align: center;
        }
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #f5f5f5; /* Light gray for text */
        padding: 0 20px;
        background-image: url('image/Fitness.jpg'); /* Replace with your image URL */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
    }

    .hero-content h1 {
        font-size: 3rem;
        color: #f6ea98; /* Light yellow from palette */
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.5rem;
        color: #f5f5f5; /* Light gray for text */
        margin-bottom: 40px;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* Black overlay with 80% opacity */
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2; /* Ensures text is above the blur layer */
    }
    /* Button Styles */
    .btn {
        background-color: #e26972; /* Red shade from palette */
        color: #f5f5f5; /* Light gray text */
        padding: 15px 30px; /* Increased padding to create a "box" effect */
        text-decoration: none;
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Box shadow for the button */
        transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
    }

    .btn:hover {
        background-color: #a24150; /* Darker red shade on hover */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Slightly deeper shadow on hover */
    }

    .cta-button {
        background-color: #e26972; /* Red shade from palette */
        color: #f5f5f5; /* Light gray text */
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #a24150; /* Darker red shade */
    }
/* Programs Section */
.programs, .about-us {
    text-align: center;
    padding: 60px 20px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 boxes per row */
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px; /* Adjust this value as needed */
}

.program {
    background-color: rgba(0, 0, 0, 0.7); /* Background color for the program boxes */
    border: 1px solid #f5f5f5; /* Light border color */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Shadow for the boxes */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; /* Align text to the left */
}

.program:hover {
    transform: translateY(-10px); /* Hover effect */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); /* Enhanced shadow on hover */
}

.program img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for images */
    margin-bottom: 15px;
}

.program h3 {
    color: #f6ea98; /* Light yellow */
    margin-bottom: 10px;
}

.program, .about-us p {
    color: #f5f5f5; /* Light gray */
    margin-bottom: 15px;
}

.btn {
    background-color: #e26972; /* Red shade from palette */
    color: #f5f5f5; /* Light gray text */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    background-color: #a24150; /* Darker red shade on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

  /* Coaches Section */
.coaches {
    text-align: center;
    padding: 60px 20px;
}

.coach-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.coach {
    text-align: center;
    max-width: 300px;
    margin: 0 ;
    padding: 20px;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coach:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.coach-img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Optional: Makes the image round */
    max-width: 150px; /* Adjusts the size of the image */
    margin-bottom: 20px;
}

.coach h3 {
    color: #f6ea98;
    margin-bottom: 10px;
}

.coach p {
    color: #f5f5f5;
    margin-bottom: 15px;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links li {
    display: inline-block;
}

.social-links a {
    color: #f5f5f5;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f6ea98;
}

    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .social-links a {
        color: #f6ea98; /* Light yellow */
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

    .social-links a:hover {
        color: #e26972; /* Red shade */
    }

    /* Footer */
    footer {
        background-color: #572c57; /* Dark shade */
        color: #f5f5f5; /* Light gray text */
        text-align: center;
        padding: 20px;
        position: relative;
    }
