﻿/* Popup Background */
        .popup {
            display: none;
            position: fixed;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
			background-color: rgba(0, 0, 0, 0.7);  /* lighter transparency */
        }

        /* Popup Box */
			.popup-content {
				/* background: #ffffff; */
				width: 90%;
				max-width: 1200px;
				margin: 5% auto;
				padding: 30px;
				border-radius: 10px;
				position: relative;
				text-align: center;
				background-color: rgba(255, 255, 255, 0.7);  /* lighter transparency */
			}


        /* Images Side by Side */
        .image-row {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }

        .image-row img {
            width: 95%;
            height: auto;
            cursor: pointer;
            transition: transform 0.3s ease;
            border-radius: 6px;
        }

        /* Hover Effect */
        .image-row img:hover {
            transform: scale(1.05);
        }

        /* Responsive (Stack on Mobile) */
       @media (max-width: 768px) {
		.image-row {
			flex-direction: column;
		}

		.image-row img {
			width: 95%;
		}
	}
	
	        /* Close Button */
        .close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            cursor: pointer;
        }
