/* Shared Styles for Zenith Digital Lab */
body { font-family: 'Inter', sans-serif; }
.zenith-blue { color: #3b82f6; }
.bg-zenith-navy { background-color: #0f172a; } /* Deep Navy */

/* Button Components */
.btn-primary {
    background-color: #3b82f6; 
    color: white; 
    padding: 0.75rem 1.5rem; 
    border-radius: 9999px; 
    font-weight: 600; 
    transition: all 0.3s;
    display: inline-block; /* Ensures consistent sizing */
}
.btn-primary:hover { background-color: #2563eb; transform: translateY(-2px); }

.btn-outline {
    border: 2px solid white; 
    color: white; 
    padding: 0.75rem 1.5rem; 
    border-radius: 9999px; 
    font-weight: 600; 
    transition: all 0.3s;
    display: inline-block;
}
.btn-outline:hover { background-color: white; color: #0f172a; }

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Service Card Hover Effects - NEW */
.service-card { 
    transition: all 0.3s ease; 
}
.service-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); 
    border-color: #bfdbfe; 
}