:root {
    --brand-blue: #1e3a8a; /* Deep Blue bg-blue-900 */
    --brand-dark: #081229; /* Extra Dark blue-950 */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--brand-blue);
    background-image: radial-gradient(circle at top right, rgba(29, 78, 216, 0.3), transparent),
                      radial-gradient(circle at bottom left, rgba(30, 58, 138, 0.4), transparent);
}

.service-card {
    background-color: rgba(30, 58, 138, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    background-color: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

/* Custom scrollbar for premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brand-dark);
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #60a5fa;
}

section {
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}
