.service-card {
    padding: 28px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}


.why-card {
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
}

/* Video Card Box */
.video-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    height: 280px;
    border-radius: 18px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.video-card:hover .youtube-icon {
    transform: scale(1.15);
}

/* Mobile Responsive */
@media(max-width: 768px) {
    .video-card {
        height: 220px;
    }

    .youtube-icon {}
}


.video-card {
    position: relative;
    width: 100%;
    padding-top: 178%;
    /* 9:16 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.short-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Maintains Shorts look */
    border-radius: 12px;
}