.hamburger-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #034AD9;
    margin: 4px 0;
    transition: 0.4s;
}

.nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    z-index: 999;
}
.map-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


.nav-menu.active {
    display: flex;
}

.nav-menu a {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #034AD9;
}

.hamburger-menu.active .bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active .bar2 {
    opacity: 0;
}

.hamburger-menu.active .bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/*----------------------------*/
.contact-section {
    padding: 50px;
    text-align: left;
    background-color: #f8f8f8;
}

.contact-content {
    display: flex;
    justify-content: auto;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px;
    gap: 20px;
}

.trainer-img {
    width: 200px;
    margin-right: 1px;
    height: auto;
    border-radius: 5%;
    margin-bottom: 20px;
}

.contact-details {
    max-width: 600px;
    margin: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #034AD9;
}

.contact-item p a {
    color: #050505;
    text-decoration: none;
    font-weight: bold;
}

.contact-item p a:hover {
    text-decoration: underline;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 74, 217, 0.7);
    z-index: 2;
}
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

textarea {
    resize: vertical;
    height: 100px;
}

input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}



@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    .content {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.2rem;
    }
}


.trainer-img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInLeft 2s ease-in-out;
    transition: transform 10s ease-in-out;
    width: 200px;
    margin-right: 20px;
    height: auto;
    border-radius: 5%; 
}

.trainer-img:hover {
transform: scale(1.1); 
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    animation: bounce 2s infinite;
}

.instagram-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 100;
}

.instagram-float img {
    width: 60px;
    height: 60px;
    animation: bounce 2s infinite;
}




@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-100px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}