

        /* Gallery section */
        .gallery-section {
            padding: 60px 20px;
            background: #f9f9f9;
            text-align: center;
        }

        .gallery-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 40px;
            position: relative;
            text-transform: uppercase;
        }

        .gallery-title::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #1c3b70;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .section-intro {
            max-width: 800px;
            margin: 30px auto 50px auto;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-muted);
            font-weight: 500;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .gallery-item {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Lightbox styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .lightbox-img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
        }
@media (max-width: 600px) {



            .gallery-item {
                height: 120px;
            }
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
}
