/* VillaHandle Corporate V2 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0d6efd;
    --dark: #0f172a;
    --light: #f8fafc;
}

body { font-family: 'Inter', sans-serif; }

/* Hero */
.hero-section {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.icon-box {
    width: 64px; height: 64px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

/* Project Cards */
.project-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.project-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    position: absolute; inset: 0;
    opacity: 0; transition: 0.3s;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover img { transform: scale(1.05); transition: 0.5s; }