.menu {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .menu-itemnew {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        /* Button with only an outline */
        .menu button {
            width: 80px; /* Button size */
            height: 80px;
            background: transparent; /* No background */
            border: 2px solid #4e80d1; /* Gray outline */
            border-radius: 10%; /* Round button */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .info-section {
            text-align: center;
            margin-bottom: 10px;
        }

        .info-section h2 {
            font-size: 26px;
            color: #3D5291;
            margin-bottom: 5px;
        }

        .info-section p {
            font-size: 14px;
            color: gray;
            margin-bottom: 15px;
			font-weight: bold
        }


        /* Icon Image */
        .menu button img {
            width: 30px; /* Smaller icon size */
            height: 30px;
            object-fit: contain;
            align-items: center;
            transition: transform 0.2s ease;
        }

        /* Styling for hover and active effects */
        .menu button:hover {
            border-color: green; /* Change outline color on hover */
            transform: scale(1.1);
        }

        .menu button.active {
            border-color: yellow; /* Change outline color when active */
        }
        .menu-itemnew span {
            font-size: 14px;
            color: gray;
			font-weight: bold;
        }
        .menu-itemnew.active button {
    border-color: yellow !important; /* Ensures the active border color changes */
    background-color: rgba(255, 255, 0, 0.1); /* Adds a mild yellow tint */
    transform: scale(1.1);
}

        /* Image Display Section */
        .image-display {
            width: 100%;
            height: 500px;
            background-size: cover;
            background-position: center;
            border: 2px solid #444;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        
        @media (max-width: 768px) {
    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .menu-itemnew {
        flex: 1 1 calc(50% - 10px); /* Two items per row */
        max-width: calc(50% - 10px);
    }

    .menu button {
        width: 60px; /* Adjust button size */
        height: 60px;
    }

    .menu-itemnew span {
        font-size: 12px; /* Smaller text */
    }
}

/* Single column on extra small screens */
@media (max-width: 480px) {
    .menu-itemnew {
        flex: 1 1 calc(100% - 10px); /* Full width */
        max-width: calc(100% - 10px);
    }
}

.comparison-container {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
        user-select: none;
    }
    .comparison-container img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .comparison-slider {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 4px;
        background: cyan;
        cursor: grab;
    }
    .comparison-overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 50%;
        overflow: hidden;
    }
    .comparison-overlay img {
        position: absolute;
        top: 0;
        left: 0;
    }

    #slider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px; /* Slider width */
    background: cyan;
    cursor: ew-resize;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

#slider::before {
    content: "⟷"; /* Unicode left-right arrow */
    font-size: 40px;
    font-weight: bold;
    color: cyan;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}