body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; background-color: #F5F5F5; color: #333; }
.bg-soft-gradient {
    background: radial-gradient(circle at top right, #e0f2f1 0%, #f8fafc 40%),
                radial-gradient(circle at bottom left, #e3f2fd 0%, #f8fafc 40%);
}
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-10px);
    background: white;
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08);
}
.contact-icon-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.contact-icon-box:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}
