        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body, html {
            height: 100%;
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
        }
        /* Container for the gallery */
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid */
            gap: 16px; /* Space between images */
            padding: 20px;
        }
        /* Styling for each image */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        /* Styling when hovering over images */
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the images fill the container */
            border-radius: 10px;
            transition: transform 0.5s ease;
        }
        /* Hover effect for images */
        .gallery-item:hover img {
            transform: scale(1.1); /* Slight zoom effect on hover */
        }
        /* Optionally add captions to images */
        .caption {
            position: absolute;
            bottom: 10px;
            left: 10px;
            padding: 8px 16px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            border-radius: 5px;
            font-size: 1rem;
        }
        /* Make sure everything is responsive */
        @media (max-width: 768px) {
            .gallery-container {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }

