@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}
/* Animation for sections */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section heading backgrounds */
section h2 {
    background: linear-gradient(90deg, #1E3A8A, #1a3275);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 div {
    background: #EA580C !important;
}

section h3 {
    background: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    border-left: 4px solid #1E3A8A;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1E3A8A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a3275;
}

/* Smooth hover transitions */
a, button {
    transition: all 0.3s ease;
}
/* Button hover effects */
.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Call button specific hover */
a[href^="tel:"]:hover {
    background-color: #1E3A8A !important;
    color: white !important;
    border-color: white !important;
}
/* Custom underline effect */
.custom-underline {
    position: relative;
    display: inline-block;
}

.custom-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #EA580C;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.custom-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}