/* ==============================
   VIGILANTEYES GALLERY SECTION
============================== */

#ve-gallery-section {
    padding: 70px 20px;
    background: #f0f0f0;
}

.ve-gallery-container {
    max-width: 1300px;
    margin: auto;
}

.ve-gallery-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-left: 15px;
    color: red;
    text-align: center;
}

.ve-gallery-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    text-align: center;
    height: 30px;
    background: #f0f0f0;
}

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

/* IMAGE BOX */
.ve-gallery-item {
    overflow: hidden;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.ve-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.ve-gallery-item:hover img {
    transform: scale(1.08);
}

/* SCROLL ANIMATION ACTIVE */
.ve-gallery-item.ve-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 991px) {
    .ve-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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