/*Award Section*/
.award-section {
    padding: 50px 0;
    background-color: #24201F;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.award-images {
    display: flex;
    justify-content: center; /* Align items centrally */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 30px; /* Adjust spacing between logos */
}

.award-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-image img {
    width: 100px; /* Set a fixed width for uniform size */
    height: auto;
    max-width: 100%;
    object-fit: contain; /* Ensures the image fits well inside the div without distortion */
    transition: transform 0.3s ease-in-out;
}

.award-image img:hover {
    transform: scale(1.05); /* Optional: Hover effect */
    filter: grayscale(100%);
}

.award-images img.grayscale-effect {
    /*filter: grayscale(100%);*/
}

.award-images img:hover {
    filter: grayscale(100%);
}

@media (max-width: 768px) {
    .award-image img {
        width: 100px; /* Adjust the width for smaller screens */
    }
}

@media (max-width: 480px) {
    .award-image img {
        width: 80px; /* Further reduce the width for very small screens */
    }
}
/*End Award Section*/


/*Member Section*/
.partner-membership-section {
    padding: 50px 0;
}
.sec-title {
    margin-bottom: 30px;
}
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.partner-item {
    width: 18%; /* Ensures 5 logos per row with space */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.partner-item img {
    width: 250px; 
    height: 200px; 
    object-fit: contain; 
}

.grayscale-effect {
    filter: grayscale(100%);
}

.grayscale-effect:hover {
    filter: grayscale(0%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .partner-item {
        width: 30%; /* 3 logos per row for tablets */
    }
}
@media (max-width: 480px) {
    .partner-item {
        width: 45%; /* 2 logos per row for mobile */
    }
}
/*End Member Section*/


/*Pop Up Section*/
#bookingModal {
    display: none; /* Initially hide the modal */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dim background */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure the modal appears on top */
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 80%; /* Adjust width of the modal */
    max-width: 600px; /* Set max-width */
    margin: auto;
}

.close-btn {
    font-size: 30px;
    color: #333;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}


/* Styling for phone and address in the same row */
.form-row {
    display: flex;
    gap: 10px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #1a3a53;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #555;
}
/*Pop up Section End*/
