  .event-card {
        transition: all 0.3s ease;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .event-card:hover {
       
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .event-card img {
        height: 220px;
        object-fit: cover;
        transition: all 0.5s ease;
    }
    
    
    
    .event-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .event-card:hover .event-overlay {
        opacity: 1;
    }
    
    .card-title {
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .card-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #4e4376, #2b5876);
        border-radius: 3px;
    }
    
    #gallery-container {
        position: relative;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    /* Animation for cards on load */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translate3d(0, 30px, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
    
    .col-lg-4 {
        animation: fadeInUp 0.5s ease-out forwards;
        opacity: 0;
    }
    
    .col-lg-4:nth-child(1) { animation-delay: 0.1s; }
    .col-lg-4:nth-child(2) { animation-delay: 0.2s; }
    .col-lg-4:nth-child(3) { animation-delay: 0.3s; }
    .col-lg-4:nth-child(4) { animation-delay: 0.4s; }
    .col-lg-4:nth-child(5) { animation-delay: 0.5s; }
    .col-lg-4:nth-child(6) { animation-delay: 0.6s; }
    .col-lg-4:nth-child(7) { animation-delay: 0.7s; }
    .col-lg-4:nth-child(8) { animation-delay: 0.8s; }
    .col-lg-4:nth-child(9) { animation-delay: 0.9s; }
    .col-lg-4:nth-child(10) { animation-delay: 1s; }


.justified-gallery a img{
    cursor: pointer;
}



/* Gallery */
/* Custom Fancybox styling */
.fancybox-button {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.fancybox-button:hover {
    background-color: rgba(0, 0, 0, 0.8) !important;
}


.event-thumbnails-gallery img {
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
}

/* Loading animation */
.event-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.event-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: omr-spin 1s linear infinite;
}

@keyframes omr-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}