/* Gallery Slider Styles */
.gallery-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.gallery-title {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.gallery-title p {
    font-size: 1.1rem;
    color: #666;
}

.gallery-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.gallery-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-slide img:hover {
    transform: scale(1.03);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.gallery-control-btn {
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.gallery-control-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-dot.active {
    background-color: #007bff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gallery-slide {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-title h2 {
        font-size: 2rem;
    }
    
    .gallery-slide {
        min-width: 100%;
    }
    
    .gallery-slide img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-title h2 {
        font-size: 1.8rem;
    }
    
    .gallery-slide img {
        height: 200px;
    }
    
    .gallery-control-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}