﻿
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/smog-st-removebg.png');
    background-color: #111;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 76px;
    margin-top: 0;
    border-top: 0;
}
@media (max-width: 768px) {
    .page-header {
        margin-top: 40px;
    }
}
.gallery-section {
    padding: 80px 0;
    background-color: #000;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }
    .glightbox-container .gslider {
        width: 80%;
        height: 80%;
        top: 10%;
        left: 10%;
    }
