/* Gallery Section Styling */
.gallery-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}

/* Gallery Image Styling */
.gallery-img {
    width: 100%;
    height: 250px;
    min-width: 100%;
    min-height: 250px;
    max-height: 325px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-arr-left,
.gallery-arr-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 80%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.gallery-arr-left {
    left: 15px;
}

.gallery-arr-right {
    right: 15px;
}

.gallery-arr-left:hover,
.gallery-arr-right:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}