
/* Hero Section */
.hero {
    background-color: #6fa4c4;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin: 0;
}

/* Services Section */
.services {
    padding: 50px 20px;
}

.services .service-card {
    min-height: 100%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.services .service-card p {
    color: #666;
    font-size: 1rem;
}

.services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call-to-Action Section */
.cta {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.cta h2 {
    font-size: 2rem;
    color: #6fa4c4;
    margin-bottom: 10px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta .btn {
    background-color: #6fa4c4;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta .btn:hover {
    background-color: #6fa4c4;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #6fa4c4;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    .hero{
        border-radius: 25px; !important;
    }
    .services .service-card {
        margin-bottom: 20px;
    }
}
.line {
    opacity: 0; /* Masqué par défaut */
    transform: translateY(20px); /* Légèrement décalé */
    transition: all 0.6s ease; /* Transition fluide */
}
p.text-muted{
    color:#6fa4c4 !important;
}