/* Image Utilities */
.visual-img-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-caption {
    margin-top: 15px;
    text-align: center;
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 500;
}

.visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.visual-img-container:hover .visual-img {
    transform: scale(1.05);
}

.service-img-box {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}