.gallery-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #00a651;
    }

    .image-title {
        text-align: center;
        margin: 10px;
        font-size: 16px;
        color: #fff;
        font-weight: 500;
    }

    p {
        margin: 0px;
    }

    .archer-gallery-sr {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 20px;
        max-width: 1500px;
        /* optional for layout control */
        margin: 0 auto;
        /* centers the grid */
    }

    .archer-gallery-sr img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 5px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        cursor: pointer;
    }

    .archer-gallery-sr img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }

    /* Popup Styles */
    .archer-gallery-sr-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .archer-gallery-sr-popup.active {
        visibility: visible;
        opacity: 1;
    }

    .popup-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }

    .popup-content img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 10px;
        animation: zoomIn 0.4s ease;
    }

    @keyframes zoomIn {
        0% {
            transform: scale(0.8);
            opacity: 0;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .popup-controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .popup-btn {
        background: rgb(0 0 0 / 34%);
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 24px;
        color: white;
        transition: background 0.3s ease;
    }

    .popup-btn:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: red;
        border: none;
        border-radius: 50%;
        color: white;
        width: 35px;
        height: 35px;
        font-size: 18px;
        cursor: pointer;
    }

    /* header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        } */

    /* .logo img {
      height: 40px;
    } */

    .home-menu {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #333;
        font-size: 16px;
        transition: color 0.3s, background 0.3s;
        padding: 6px 12px;
        border-radius: 8px;
    }

    .home-menu:hover {
        background-color: #f0f0f0;
        color: #000;
    }

    .home-menu svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    @media (max-width: 600px) {
        .home-menu span {
            font-size: 14px;
        }

        .logo img {
            height: 32px;
        }

        .home-menu svg {
            width: 18px;
            height: 18px;
        }
    }

    .archer-style {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        padding: 6px 20px;
        justify-content: center;
    }

    .a-btn {
        background-color: #00a651;
        /* button color */
        color: #fff;
        padding: 7px 16px;
        border-radius: 5px;
        font-weight: bold;
        white-space: nowrap;
        font-size: 16px;
        text-align: center;
    }

    @media (max-width: 600px) {
        .archer-style {
            flex-direction: column;
            align-items: flex-start;
        }

        .a-btn {
            width: 100%;
            text-align: left;
        }
    }