:root {
    --primary-color: #001F3F;
    --secondary-color: #a2b7f0;
    --background-color: #f4f4f4;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    padding-top: 56px;
}
.navbar {
    background-color: var(--primary-color);
}
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
}
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}
.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.cta-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0;
}

/*Text Animation*/

.display-4{
    animation: slideIn 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.lead{
    animation: slideIn 2s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes slideIn {
    0% {
        transform: translateY(100%); /* Start below the viewport */
        opacity: 0;
    }
    100% {
        transform: translateY(0); /* End in the correct position */
        opacity: 1;
    }
}