.footer-bg-color {
  background-color: #2e3191 !important;
}

.custom-thumb-info-style-1 .custom-thumb-info-icon {
    padding: 0 !important;
}

.card-zoom {
    height: 150px; /* Adjust the height as needed */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}

/* Apply zoom effect on hover */
.card-zoom:hover {
    transform: scale(1.05); /* Zoom in slightly */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Add shadow on hover */
}

/* Ensure the content stays inside the card */
.card-zoom .card-body {
    height: 100%; /* Make sure the card content fills the height */
}

.card-committee {
    height: 330px; /* Adjust the height as needed */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}

/* Apply zoom effect on hover */
.card-committee:hover {
    transform: scale(1.05); /* Zoom in slightly */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Add shadow on hover */
}

/* Ensure the content stays inside the card */
.card-committee .card-body {
    height: 100%; /* Make sure the card content fills the height */
}