/* ===========================
   Hero
=========================== */
.hero {
    background-color: #0A1F44; /* Bleu foncé */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    position: relative;
    flex-direction: column; /* Forcer le contenu à s'empiler verticalement */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.5;
    margin: 0 auto;
}


/* ===========================
  Contneu
=========================== */
/* Section et Container */
.section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.section-title h2 { font-size: 2rem; margin-bottom: 20px; text-align: center; }
.section-subtitle { text-align: center; margin-bottom: 40px; font-size: 1.1rem; color: #555; }

/* Projets 2x2 */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.project-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.project-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.project-image { position: relative; height: 200px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-badge { position: absolute; bottom: 10px; left: 10px; background: #007BFF; color: #fff; padding: 5


                /* ===========================
   Section Solutions (Vignettes)
=========================== */
.solutions-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.solution-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #007BFF;
}

.solution-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.solution-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}



/* ===========================
   Témoignages Modernisés
=========================== */


.swiper-container {
    padding: 20px 0;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
}


/* ===========================
   Animations au scroll avec AOS
=========================== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ===========================
   Responsive
=========================== */
@media screen and (max-width: 768px) {
    .testimonial-card {
        padding: 20px 15px;
    }
}
