.exhibition-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 30px 0;
    
}

.exhibition-tabs li {
    position: relative;
}

.exhibition-tabs .tab-link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

/* underline all tabs */
.exhibition-tabs .tab-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent; /* default transparent */
    transition: all 0.3s ease;
}

.exhibition-tabs .tab-link:hover,
.exhibition-tabs .tab-link.active {
    color: #b22222; 
    font-weight: 600;
}


.exhibition-tabs .tab-link.active::after {
    
    background-color: currentColor;  
}




.gallery-img {
    position: relative;
    text-align: center;
    margin-bottom: 40px; /* box ને જગ્યા આપવા */
}

.gallery-img img.fixed-img {
    width: 100%;
    height: 250px; /* fix size */
    object-fit: cover;
    border-radius: 10px;
}

/* Name Box Style */
.image-title {
    position: absolute;
    bottom: -15px; /* થોડું image ની બહાર */
    left: 50%;
    transform: translateX(-50%);
    background: #ff2c55;  /* Inquiry Now જેવો color */
    color: #fff;
    font-weight: bold;
    padding: 6px 18px;
    border-radius: 6px;
    white-space: nowrap;
    width: 200px;
}
