 .product-section, .new-section {
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin: 20px;
            padding: 20px;
        }

        .content-container, .new-content-container {
            display: flex;
            gap: 30px;
            padding: 10px;
        }

        .image-tile-container {
            flex: 1;
            column-count: 5; /* Adjust based on the desired number of columns */
            column-gap: 2px;
           padding: 50px;
        }

        .image-tile {
            break-inside: avoid;
            margin-bottom: 8px;
            overflow: hidden;
            border-radius: 2px;
        }

      .image-tile img, .new-section img {
            width: 100%;
            height: auto;
            border-radius: 2px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          animation: fadeIn 2.5s ease-out forwards;
        }

      .image-tile:hover img, .new-section img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
.image-tile:hover::before {
    background: rgba(198, 181, 181, 0.5); /* Change the opacity to add the color overlay effect */
}

      

.image-tile:hover img {
    transform: scale(1.1); /* Image zooms in */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Shadow appears */
    opacity: 0.6; /* Slightly transparent */
}

        .text-content, .new-text-content {
            flex: 1.5;
            
        }

        /* Keyframe Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes zoomIn {
            from { transform: scale(0); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .image-tile-container, .new-section img {
                column-count: 2;
            }

            .content-container, .new-content-container {
                flex-direction: column;
            }

           .text-content, .new-text-content {
                order: -1;
            }
        }