/* 🔥 Styled Banner Alert */
.alert-banner {
    border: 2px solid red;
    background-color: #fff5f5;
    color: #b30000;
    padding: 15px;
    margin: 20px auto;
    text-align: center;
    max-width: 80%;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* 🔥 Alert Title */
.alert-title {
    color: red;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    height: 0;
}
.map-responsive iframe {
    border: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.feature-box {
    background-color: var(--grey);
    border: 1px solid var(--brown);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
    height: 100%;
    font-size: 14px;
}
.feature-box h3 {
    font-size: 22px;
    margin: 10px 0;
}


.feature-box h3 i {
    color: var(--orange); /* Set the icon color */
    margin-right: 8px; /* Add space between the icon and text */
}

.img-fluid {
    height: 250px; /* Adjust height for larger images */
    object-fit: cover; /* Ensures the images maintain their aspect ratio */
}

.image-container {
    border: 1px solid var(--brown);
    border-color: var(--brown);
}
.image-container img{
    width: 100%;
}

.meetings-card, .event-card, .projects-card {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px; /* Optional, adjust as needed for corner rounding */
    transition: box-shadow 0.3s ease-in-out; /* Optional for hover effect */
}

/* Optional: Add a hover effect for a more interactive feel */
.meetings-card:hover, .event-card:hover, .projects-card:hover {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
}
