body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* About Us Section */
.container {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* About Us Header */
h2,h3 {
    font-size: 28px;
    font-weight: bold;
    color: #1C87C9;
}


/* Team Profiles */
.row .col-4 {
    text-align: center;
}

.row .col-4 img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.row .col-4 img:hover {
    transform: scale(1.05);
}
/* Marquee (Swiper) Container */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    padding: 10px;
    /* Adjust height to match your design; for a 600x400 image,
       a height around 200-250px might work well */
    height: 220px;
}

/* Ensure images fill the slide without being cropped */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover effect: Scale up slightly */
.swiper-slide img:hover {
    transform: scale(1.1);
}
/* Categories Section */
.list-group-item a {
    text-decoration: none;
    color: #1C87C9;
    font-weight: 500;
}

.list-group-item a:hover {
    text-decoration: underline;
    color: #40bf80;
}

/* Recent Posts */
.recent-posts {
    background: #ffffff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.recent-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.recent-post-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #ddd;
}

.recent-post-item p {
    margin: 0;
}

.recent-post-item .post-date {
    font-size: 13px;
    color: #888;
}

/* Footer */
.footer {
    background: #1C87C9;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}