﻿.gallery-section {
    padding: 80px 0;
    background-color: #0f172a;
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

    .gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    padding: 30px;
    color: white;
}

    .slide-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.gallery-nav-btn {
    background: rgba(15, 23, 42, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .gallery-nav-btn:hover {
        background: rgba(245, 158, 11, 0.9);
        transform: scale(1.1);
    }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.gallery-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #475569;
    cursor: pointer;
    transition: all 0.3s;
}

    .gallery-dot.active {
        background-color: #f59e0b;
        transform: scale(1.2);
    }