
.gallery-section {
    padding: 60px 20px;
    background: #f8f9fb;
    text-align: center;
}

.gallery-title {
    font-size: 32px;
    color: #0c3b6b;
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 16px;
    color: #6c7a89;
    margin-bottom: 40px;
}

/* Gallery Grid */
.gallery-container {
    max-width: 1200px;
    margin: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

/* Hover effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .gallery-grid {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 28px;
    }
    .gallery-subtitle {
        font-size: 15px;
    }
    .gallery-grid {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 15px;
    }
    .gallery-title {
        font-size: 24px;
    }
    .gallery-subtitle {
        font-size: 14px;
    }
}

