*{
    margin: 0;
    padding: 0;
    
}

.main{
    padding: 0; 
}

.navbar-brand img {
    width: 50px !important;
    height: 40px !important;
    object-fit: contain;

}
.navbar-toggler-icon{
    color: aliceblue !important;
}

.nav-link{
    color: white;

}

.nav-link:hover{
    color: yellow !important;
}


.banner-img{
    height: 90vh !important;
    width: 100% !important;
}

.special{
    padding-top: 20px;
    text-align: center;
    align-items: center;
}

.special p{
    padding: 0;
    margin: 0;
}

.feature-item {
    text-align: center;
    margin-bottom: 30px;
}

.feature-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid white; /* White border around the image */
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for smooth hover effect */
}

.feature-title {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-description {
    font-size: 1rem;
    margin-top: 10px;
    color: #555;
}


.feature-item img:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


@media (min-width: 768px) {
    .feature-item {
        margin-bottom: 30px;
    }
}


       .feature-item {
        text-align: center;
        margin-bottom: 30px;
    }

    .feature-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border: 3px solid white;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease; 
    }

    .feature-title {
        margin-top: 20px;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .feature-description {
        font-size: 1rem;
        margin-top: 10px;
        color: #555;
    }


    .feature-item img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }


    @media (min-width: 768px) {
        .feature-item {
            margin-bottom: 30px;
        }
    }
    
.contect > p{
    text-align: center !important;
}


.contact-form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.contact-form h3 {
    text-align: center;
    color: #2e8b57; /* Gym-themed green color */
    margin-bottom: 20px;
}

.contact-form .form-control {
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 10px;
}

.contact-form .form-control:focus {
    border-color: #2e8b57; /* Green border on focus */
    box-shadow: 0 0 5px rgba(46, 139, 87, 0.5); /* Green glow */
}

.contact-form button {
    background-color: #2e8b57;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    width: 100%;
    font-size: 14px;
}

.contact-form button:hover {
    background-color: #3cb371;
}

@media (max-width: 576px) {
    .contact-form {
        padding: 15px;
        margin-top: 20px;
    }
}