.gallery-container {
    padding: 40px 15px;
    display: flex;
    justify-content: center;
}

.gallery-wrapper {
    max-width: 1100px;
    width: 100%;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.img-box {
    padding: 8px;
    overflow: hidden;
    width: 100%;
}

.row {
    justify-content: center;
}

.g-2 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}


            
.navbar-brand {
    display: flex !important;
    align-items: center;

}

.navbar-brand img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {

    /* Tablets and below */
    .navbar-brand img {
        height: 60px;
    }

}

@media (max-width: 768px) and (min-width: 426px) {

    /* Mobile */
    .navbar-brand img {
        height: 65px;
    }
}

@media (max-width: 375px) {

    .navbar-brand img {
        height: 55px;
    }
}

@media (max-width:1024px) {

    .navbar-brand img {
        height: 75px;
    }
}

@media (max-width: 425px) and (min-width: 376px) {

    /* Mobile screens (376px - 425px) */
    .navbar-brand img {
        height: 60px;
    }}

    





    /* Modal Styles */
/* Gallery Image Styles */
.gallery-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}
/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black background */
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #bbb;
}

/* Loading Spinner Styles */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; /* Hidden by default */
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}