
        .gallery-section {
            padding: 20px;
            text-align: center;
            background-color: #ffffff;
        }

        .gallery-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
        }

        /* Gallery Container */
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 0 auto;
            max-width: 1200px;
        }

        /* Gallery Items */
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Media Queries */
        @media (max-width: 768px) {
            .gallery-title {
                font-size: 2rem;
            }

            .gallery-container {
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .gallery-title {
                font-size: 1.5rem;
            }
        }

        /* View All Button Styles */
.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #ff6b6b, #f7b42c);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.view-all-button:hover {
    background: linear-gradient(45deg, #f7b42c, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

     