 body {
            font-family: Roboto, sans-serif;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 20px;
        }

        .values-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .values-left, .values-right {
            flex: 1;
            padding: 20px;
        }

        .values-left {
            background: #f9f9f9;
            border-radius: 10px;
        }

        .values-right {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .values-message h2 {
            color: #1C87C9;
        }

        /* Categories with Counters */
        .category {
            margin-bottom: 30px;
        }

        .category h3 {
            color: #1C87C9;
        }

        .category-item {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            background: #f4f4f4;
            margin: 5px 0;
            border-radius: 5px;
        }

        h2,h3 {
            font-size: 28px;
            font-weight: bold;
            color: #1C87C9;
            }
/* Marquee Images */
/* ----------------------------------------
   Updated Marquee CSS for Static, Fading Images
----------------------------------------- */

/* Marquee Container */
.marquee-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    padding: 5px;  /* Little padding around the container */
    height: 200px;  /* Adjust this value for the desired visible height */
}

/* Marquee Content Wrapper */
.marquee-content {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Marquee Images */
.marquee-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;           /* Fill the container's width */
    height: 100%;          /* Fill the container's height */
    object-fit: contain;   /* Preserve aspect ratio, show full image */
    opacity: 0;            /* Hidden by default */
    transition: opacity 1s ease-in-out, transform 0.3s ease;
}

/* Visible (Active) Image */
.marquee-content img.active {
    opacity: 1;
}

/* Hover Effect: Scale image up slightly */
.marquee-content img:hover {
    transform: scale(1.1);
}
.marquee-container {
    margin-bottom: 20px; /* Adjust this value as needed */
}
/* ----------------------------------------
   End of Updated Marquee CSS
----------------------------------------- */


        /* Recent Posts */
        .recent-posts h3 {
            color: #1C87C9;
        }

        .post-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }

        .post-item img {
            width: 60px;
            height: 60px;
            border-radius: 5px;
            margin-right: 15px;
        }

        .post-info {
            flex: 1;
        }

        .post-info h4 {
            margin: 0;
            font-size: 16px;
        }

        .post-info small {
            color: gray;
        }
        .recent-posts {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.recent-posts h3 {
    color: #1C87C9;
    font-size: 22px;
    margin-bottom: 15px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.recent-post-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.post-date {
    font-size: 14px;
    color: #777;
}
   