 
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    transition: opacity 1s ease-in-out;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.carousel-nav button {
    background-color: #449454;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.carousel-nav button.active {
    background-color: #449454;
} 


.card-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    text-align: center;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 10px 10px 0px;
}

.card .name {
    padding: 10px 0px 10px;
    font-weight: bold;
    color: #333;
    font-size: 14px !important;
}

.scroll-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    z-index: 10;
}

.left-button {
    left: 10px;
}

.right-button {
    right: 10px;
}

.scroll-buttons button {
    background-color: rgb(212 247 255 / 32%);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}


.mission-section {
    background-image: url('../images/Our-Mission.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}

.mission-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.left-side {
    background-color: transparent; /* Left side is transparent */
    color: #333;
    width: 70%;
    padding: 40px;
    text-align: left;
}

.left-side h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.left-side p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.left-side h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #5473d7; /* A reddish accent color */
    margin-top: 10px;
}

.right-side {
    padding: 40px;
    width: 25%;
    border-radius: 8px;
    color: white;
}

.right-side h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}