/* ===============================
   GALLERY CONTAINER
   =============================== */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   SECTION TITLE
   =============================== */
.gallery-container .title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 30px 0 40px;
    position: relative;
    text-transform: capitalize;
}

.gallery-container .title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00bbff);
    display: block;
    margin: 12px auto 0;
    border-radius: 4px;
}

/* ===============================
   GALLERY GRID
   =============================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===============================
   GALLERY BOX
   =============================== */
.gallery-box {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.gallery-box:hover {
    transform: translateY(-5px);
}

/* ===============================
   GALLERY LINK
   =============================== */
.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ===============================
   IMAGE
   =============================== */
.gallery-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s ease;
}

/* Image hover zoom */
.gallery-box:hover img {
    transform: scale(1.05);
}

/* ===============================
   H4 CAPTION
   =============================== */
.gallery-box h4 {
    margin: 0;
    padding: 12px 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    background: #f8f9fc;
    border-top: 1px solid #eee;
    letter-spacing: 0.4px;
}

/* Caption hover */
.gallery-box:hover h4 {
    color: #0066ff;
}

/* ===============================
   BACK LINK
   =============================== */
.back {
    display: inline-block;
    margin: 30px 0;
    font-weight: 600;
    text-decoration: none;
    color: #0066ff;
}

.back:hover {
    text-decoration: underline;
}

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

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-container .title {
        font-size: 24px;
    }

    .gallery-box h4 {
        font-size: 15px;
    }
}
