
    .grid-container {
        display: flex;
        flex-wrap: wrap;
        /* Allows items to wrap in the container */
        justify-content: space-between;
        /* Distributes space between items */
        margin-top: 30px;
        /* Add space from the top */
    }

    .grid-item {
        margin-bottom: 20px;
        /* Space between rows */
    }

    .gallery__item {
        /* White background for gallery items */
        border-radius: 10px;
        /* Rounded corners */
        overflow: hidden;
        /* Ensures image doesn't overflow */
        transition: transform 0.3s;
        /* Smooth transition for hover effect 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       Soft shadow */
    }

    .gallery__item:hover {
        transform: scale(1.05);
        /* Slightly enlarge on hover */
    }

    .gallery-thumbnail {
        width: 100%;
        /* Make image fill the container */
        height: auto;
        /* Maintain aspect ratio */
        border-radius: 10px;
        /* Rounded corners for images */
    }

    .p-15px-b {
        padding-bottom: 15px;
        /* Adjust bottom padding */
    }

    .p-15px-t {
        padding-top: 15px;
    }


    .text-shadow {
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .text-shadow h1,
    .text-shadow .badge-text,
    .text-shadow p {
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    }

    #gallery {
        position: relative;
        overflow: hidden;
    }

    .blurred-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        filter: blur(2px);
        z-index: 1;
    }

    #gallery .container {
        position: relative;
        z-index: 2;
    }

    .box {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .achievement-item {
        display: flex;
        align-items: center;
        font-size: 16px;
        line-height: 1.5;
    }

    .bi-check-circle-fill {
        font-size: 24px;
    }

    .bg-white {
        background-color: #fff !important;
    }

    .btn-primary {
        background-color: #198754;
        border-color: #198754;
        color: #fff;
    }

    .btn-primary:hover {
        background-color: #146c43;
        border-color: #146c43;
    }

