/* Desktop Banner specific styles */
.desktop-banner-img {
    width: 100%;
}

@media (min-width: 992px) {
    .desktop-banner-img {
        height: 72vh;
        object-fit: cover;
        object-position: top center;
    }
}

/* Gallery Styling */
.custom-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.custom-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.custom-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-gallery-item:hover img {
    transform: scale(1.1);
}

.custom-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-gallery-item:hover .custom-gallery-overlay {
    opacity: 1;
}

.custom-gallery-overlay i {
    color: white;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.custom-gallery-item:hover .custom-gallery-overlay i {
    transform: translateY(0);
}

/* Feature Card Styling (Why Choose Us) */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}
.icon-wrapper {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}
