
/** ----------- GLOBAL ----------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #081c24;
}

/* ----------- SECTION ----------- */
.gallery_section {
    padding: 60px 60px;
    color: #fff;
}

.gallery_section h2 {
    font-size: 32px;
    font-weight: 700;
}

.gallery_subtext {
    color: #bbbbbb;
    font-size: 14px;
    margin-top: 8px;
}

/* ----------- FILTER TABS ----------- */
.gallery_tabs {
    display: flex;
    gap: 15px;
    margin: 25px 0 35px;
    flex-wrap: wrap;
}

.gallery_tab {
    padding: 10px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid #1d3c40;
    color: #bbbbbb;
    border-radius: 18px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.gallery_tab.active {
    background: #167cff;
    border-color: #167cff;
    color: #fff;
}

/* ----------- IMAGE GRID ----------- */
.gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery_grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    background: #0d2a32;
}

/* ----------- PAGINATION ----------- */
.gallery_pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
    align-items: center;
}

.gallery_pagination i {
    color: #25befc;
    cursor: pointer;
    font-size: 18px;
}

.gallery_page {
    padding: 6px 12px;
    border: 1px solid #25befc;
    border-radius: 6px;
    color: #25befc;
    cursor: pointer;
    font-size: 14px;
}

.gallery_page.active {
    background: #25befc;
    color: #000;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 992px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery_section {
        padding: 40px 20px;
    }

    .gallery_grid {
        grid-template-columns: 1fr;
    }
}