*, ::before, ::after {
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Merriweather';
}
html {
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Hero */
/* Base styles - keeping your existing CSS */
nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    z-index: 10000;
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
nav .logo {
    width: 80px;
    filter: invert(52%) sepia(77%) saturate(394%) hue-rotate(125deg) brightness(99%) contrast(94%);
}
nav.logo a {
    text-decoration: none;
}
nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}
nav ul li a {
    text-decoration: none;
    font-size: 1.3em;
    color:white;
    font-weight: bold;
}
nav ul li a:hover {
    color: #25b7a9;
}
.hero {
    min-height: 100vh;
}
.hero video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    position: absolute;
}
.heroContent {
    position: absolute;
    width: 100%;
    top: 45%;
    left: 0;
    color: white;
    line-height: 1;
    text-align: center;
}
.heroContent h1 {
    margin: 0;
    font-size: 12em;
}
.heroContent p {
    margin-top: 20px;
    font-size: 3em;
    font-style: italic;
}
/* Add hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.4s;
}
/* Sections */
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
    padding: 40px;
    width: 100%;
}
section:nth-child(odd) {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}
.sectionTitle {
    color:#02091d;
    font-size: 40px;
    margin: 25px;
}
/* why website */
.why-website {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 80px 20px;
}
.why-container {
    max-width: 1200px;
    margin: 0 auto;
}
.why-header {
    text-align: center;
    margin-bottom: 60px;
}
.why-title {
    font-size: 2.5em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}
.why-subtitle {
    font-size: 1.2em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #25b7a9;
    border-radius: 4px;
}
.benefit-card:hover {
    transform: translateY(-5px);
}
.benefit-title {
    font-size: 1.4em;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}
.benefit-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}
.stat {
    color: #25b7a9;
    font-weight: 700;
    font-size: 1.3em;
}
.cta-section1 {
    text-align: center;
    margin-top: 60px;
}
.cta-button1 {
    display: inline-block;
    padding: 15px 40px;
    background: #25b7a9;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(59, 246, 193, 0.4);
}
.cta-button1:hover {
    color: #25b7a9;
    border: #25b7a9 2px solid;
    background-color: white;
    box-shadow: 0 4px 20px rgba(59, 246, 193, 0.4);
}
@media (max-width: 768px) {
    .why-title {
        font-size: 2em;
    }
    
    .benefit-card {
        padding: 25px;
    }
}
/* Services */
.services-container {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 30px;
    padding: 20px;
}
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.service-image {
    background-image: url('../images/servBack.png');
}
.service-content {
    padding: 25px;
}
.service-title {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 15px;
}
.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #25b7a9;
    border-radius: 2px;
}
.service-description {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}
.service-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.feature-item {
    display: flex;
    align-items: center;
    color: #4a5568;
    margin-bottom: 10px;
    font-size: 14px;
}
.feature-item::before {
    content: '✓';
    margin-right: 10px;
    color: #25b7a9;
    font-weight: bold;
}
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #25b7a9;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}
.cta-button:hover {
    background: #3182ce;
}
/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.service-card {
    animation: fadeInUp 0.6s ease backwards;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
/* Pourquoi */
#pourquoi {
    display: flex;
    justify-content: center;
    align-items: center;
}
#pourquoi .sectionContent {
    display: flex;
    align-items: center;
}
.aboutImg {
    width: 100%;
    margin-right: 100px;
}
.aboutImg img {
    width: 140%;
}
.aboutImg img,  .aboutContent {
    box-shadow: 0px 20px 24px -4px rgba(17, 24, 39, 0.4), 0px 8px 8px -4px rgba(17, 24, 39, 0.4);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.aboutContent {
    width: 110%;;
    background-color:#25b7a9;
    color:  #02091d;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.aboutContent h3 {
    font-size: 40px;
    font-weight: bold;
    color: white;
}
.aboutContent p {
    color:  white;
    padding: 10px 0;
    font-size: 18px;
    margin: 5px 0;
}
.aboutContent a {
    color: #25b7a9;
    border-radius: 8px;
    padding: 10px 0;
    text-decoration: none;
    background-color: white;
    width: fit-content;
    padding: 5px 25px;
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    border:white 2px solid;
    text-transform: uppercase;
}
.aboutContent a:hover {
    border:white 2px solid;
    color: white;
    background-color: #25b7a9;
}
/* Clients */
#clients {
    justify-content: space-around;
}
#clients .sectionContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper {
    height: 200px;
    position: relative;
    width: 90%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.wrapper div {
    position: absolute;
    animation: slide 21s infinite linear;
}
.wrapper img {
    width: 150px;
}
.wrapper div:nth-child(1) {
    left: 100%;
    animation-delay: -21s;
}
.wrapper div:nth-child(2) {
    left: 100%;
    animation-delay: -18s;
}
.wrapper div:nth-child(3) {
    left: 100%;
    animation-delay: -15s;
}
.wrapper div:nth-child(4) {
    left: 100%;
    animation-delay: -12s;
}
.wrapper div:nth-child(5) {
    left: 100%;
    animation-delay: -9s;
}
.wrapper div:nth-child(6) {
    left: 100%;
    animation-delay: -6s;
}
.wrapper div:nth-child(7) {
    left: 100%;
    animation-delay: -3s;
}
@keyframes slide {
    0%{
        left: 100%;
        visibility: visible;
      }
      99% {
        left: -150px;
        visibility: hidden;
      }
      100% {
        left: 100%;
        visibility: hidden;
      }
}
/* Ensures continuous scrolling */
.wrapper::after {
    content: "";
    display: flex;
    width: 100%;
    animation: slide 14s linear infinite;
}
/* Témoignages */
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 60px;
}
.testimonials-track {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 10px;
}
.testimonial-card {
    min-width: calc(50% - 20px);
    margin: 0 10px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}
.testimonial-card.active {
    opacity: 1;
    display: block;
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.client-info {
    flex-grow: 1;
}
.client-name {
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}
.client-role {
    color: #666;
    margin: 5px 0 0 0;
}
.stars {
    color: #FFD700;
    font-size: 20px;
}
.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:#f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.nav-button:hover {
    background: #25b7a9;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background:#25b7a9;
}
/* Contact */
#contact .sectionContent {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    text-align: center;
    gap: 20px;
    flex-wrap: nowrap;
}
#contact .sectionContent h3 {
    font-size: 24px;
    align-self: center;
}
#contact .contact {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
}
#contact .sectionContent form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    max-width: 700px;
}
#contact .sectionContent form .row {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    gap: 10px;
    width: 100%;
}
#contact .sectionContent form .element {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 48%;
    align-items: flex-start;
}
#contact .sectionContent form label {
    margin-left: 5px;
    cursor: pointer;
    color: #25b7a9;
    font-weight: bold;
}
#contact .sectionContent form input, #contact .sectionContent form select, #contact textarea {
    padding: 12px;
    width: 100%;
    border:#02091d 2px solid;
    border-radius: 12px;
}
#contact .sectionContent form input:focus, #contact .sectionContent form select:focus-within, #contact textarea:focus {
    border: #25b7a9 2px solid;
    outline: none;
}
#contact textarea {
    width: 100%;
    border-radius: 12px;
    border: #02091d 2px solid;
    padding: 12px;
}
#contact form button {
    padding: 10px;
    border: #25b7a9 2px solid;
    color: #25b7a9;
    background-color: white;
    font-size: 20px;
    border-radius: 12px;
    cursor: pointer;
}
#contact form button:hover {
    padding: 10px;
    background-color: #25b7a9;
    border: #25b7a9 2px solid;
    color: white;
    font-size: 20px;
    border-radius: 12px;
    cursor: pointer;
}
#contact .sectionContent .map {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 20px;
}
/* Footer */
footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    color: white;
    background-color: #02091d;
    min-height: 250px;
    padding: 20px;
}
footer img {
    margin-top: -20px;
    width: 200px;
    filter: invert(52%) sepia(77%) saturate(394%) hue-rotate(125deg) brightness(99%) contrast(94%);
}
footer h3 {
    color: #25b7a9;
    font-size: 26px;
}
footer .footerSection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
footer .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
footer a {
    text-decoration: none;
    color: white;
}
footer .fAwesome {
    color: #25b7a9;
    font-size: 25px;
    text-align: center;
    width: 25px;
}
#entreprise {
    gap: 10px;
}
#plan a:hover {
    color: #25b7a9;
}
footer .item {
    display: flex;
    gap: 5px;
    align-items: center;
}
footer form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
footer form input {
    padding: 10px;
    border-radius: 6px;
}
footer form button {
    padding: 8px;
    background-color:#25b7a9;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    border: #25b7a9 2px solid;
    color: white;
}
footer form button:hover {
    background-color: #02091d;
    color: white;
    border: #25b7a9 2px solid;
}
/* Extra small devices (phones, less than 576px) */
@media only screen and (max-width: 575.98px) {
    .hero {
        min-height: 100vh;
    }
    nav {
        width: 100%;
        display: flex;
        align-items: start;
        justify-content: space-around;
        color: white;
    }
    nav ul {
        display: flex;
        flex-direction: column;
    }
    .heroContent h1 {
        margin: 0;
        font-size: 4.5em;
    }
    .heroContent p {
        margin-top: 20px;
        font-size: 20px;
        font-style: italic;
        padding: 5px;
        text-align: center;
    }
    .sectionTitle {
        text-align: center;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
    #pourquoi .sectionContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    .aboutImg img {
        width: 100%;
    }
    .aboutImg {
        width: 100%;
        margin-right: unset;
    }
    .aboutContent {
        width: 100%;
    }
    #clients {
        align-items: center;
    }
    .testimonials-container {
        margin: unset;
        padding: unset;
    }
    .testimonial-card.active {
        text-align: center;
        max-width: calc(30% - 15px);
        padding: 8px;
    }
    .testimonial-header {
        flex-direction: column;
    }
    .testimonial-text {
        text-align: center;
    }
    .nav-button {
        display: none;
    }
    #contact .sectionContent {
        display: flex;
        align-items: center;
        padding: 20px;
        gap: 20px;
        flex-direction: column;
    }
    #contact .sectionContent h3 {
        font-size: 22px;
        align-self: center;
    }
    #contact .sectionContent form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }
    #contact .sectionContent form .row {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 10px;
    }
    #contact .sectionContent form .element {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 80%;
        align-items: center;
    }
    #contact textarea {
        width: 80%;
        border-radius: 12px;
        border: #02091d 2px solid;
        padding: 12px;
    }
    #contact .sectionContent .map {
        display: flex;
        flex-direction: column;
        padding: 10px;
        gap: 20px;
        width: 100%;
    }
    iframe {
        border: 0;
        max-width: 100%;
    }
    footer {
        display: flex;
        align-items: center;
        flex-direction: column;
        color: white;
        background-color: #02091d;
        min-height: 250px;
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }
    footer .footerSection {
        align-items: center;
    }
    footer form {
        align-items: center;
    }
    footer .content {
        align-items: center;
    }
    @keyframes slide {
        0%{
            left: 100%;
            visibility: visible;
          }
          99% {
            left: -1000px;
            visibility: hidden;
          }
          100% {
            left: 100%;
            visibility: hidden;
          }
    }
}
/* General styles for small screens */
@media only screen and (max-width: 600px) {
    nav {
        padding: 15px 5%;
        justify-content: space-between;
        background: rgba(0, 0, 0, 0.9);
        position: fixed;
        z-index: 10000;
    }
    .hamburger {
        display: flex;
    }
    nav .logo {
        width: 60px;
    }
    nav ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 20px 0;
    }
    nav ul.active {
        display: block;
    }
    nav ul li {
        display: block;
        margin: 15px 0;
    }
    nav ul li a {
        font-size: 16px;
    }
    nav ul li a:hover {
        display: inline-block;
    }
    .heroContent h1 {
        font-size: 60px;
    }
    .heroContent p {
        font-size: 18px;
        padding: 0 20px;
    }
    .heroContent h1 {
        margin: 0;
        font-size: 4.5em;
    }
    .heroContent p {
        margin-top: 20px;
        font-size: 20px;
        font-style: italic;
        padding: 5px;
        text-align: center;
    }
    .sectionTitle {
        text-align: center;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
    #pourquoi .sectionContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    .aboutImg img {
        width: 100%;
    }
    .aboutImg {
        width: 100%;
        margin-right: unset;
    }
    .aboutContent {
        width: 100%;
    }
    #clients {
        align-items: center;
    }
    .testimonials-container {
        margin: unset;
    }
    .testimonial-card {
        text-align: center;
        min-width: calc(50% - 10px);
    }
    .testimonial-header {
        flex-direction: column;
    }
    .testimonial-text {
        text-align: left;
    }
    .nav-button {
        display: none;
    }
    #contact .sectionContent {
        display: flex;
        align-items: center;
        padding: 20px;
        gap: 20px;
        flex-direction: column;
    }
    #contact .sectionContent h3 {
        font-size: 22px;
        align-self: center;
    }
    #contact .sectionContent form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }
    #contact .sectionContent form .row {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 10px;
    }
    #contact .sectionContent form .element {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 80%;
        align-items: center;
    }
    #contact textarea {
        width: 80%;
        border-radius: 12px;
        border: #02091d 2px solid;
        padding: 12px;
    }
    #contact .sectionContent .map {
        display: flex;
        flex-direction: column;
        padding: 10px;
        gap: 20px;
        width: 100%;
    }
    iframe {
        border: 0;
        max-width: 100%;
    }
    footer {
        display: flex;
        align-items: center;
        flex-direction: column;
        color: white;
        background-color: #02091d;
        min-height: 250px;
        padding: 20px;
        gap: 20px;
    }
    footer .footerSection {
        align-items: center;
    }
    footer form {
        align-items: center;
    }
    footer .content {
        align-items: center;
    }
    @keyframes slide {
        0%{
            left: 100%;
            visibility: visible;
          }
          99% {
            left: -1000px;
            visibility: hidden;
          }
          100% {
            left: 100%;
            visibility: hidden;
          }
    }
}
/* Medium screens */
@media only screen and (min-width: 601px) and (max-width: 768px) {
    nav {
        padding: 15px 5%;
        justify-content: space-between;
        background: rgba(0, 0, 0, 0.9);
        position: fixed;
        z-index: 10000;
    }
    .hamburger {
        display: flex;
    }
    nav .logo {
        width: 70px;
    }
    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 20px 0;
    }
    nav ul.active {
        display: block;
    }
    nav ul li a {
        font-size: 1.3em;
    }
    .heroContent h1 {
        margin: 0;
        font-size: 8.5em;
    }
    .heroContent p {
        margin-top: 20px;
        font-size: 2.5em;
        font-style: italic;
        padding: 5px;
        text-align: center;
    }
    .benefit-description {
        font-size: 1.2em;
    }
    .sectionTitle {
        text-align: center;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
    .service-title {
        font-size: 2em;
    }
    .service-description, .feature-item {
        font-size: 1.2em;
    }
    #pourquoi .sectionContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    .aboutImg img {
        width: 100%;
    }
    .aboutImg {
        width: 100%;
        margin-right: unset;
    }
    .aboutContent {
        width: 100%;
    }
    .aboutContent p {
        font-size: 1.4em;
    }
    .aboutContent a {
        font-size: 1.5em;
    }
    #clients {
        align-items: center;
    }
    .client-name {
        font-size: 1.5em;
    }
    .client-role, .testimonial-text {
        font-size: 1.2em;
    }
    .testimonials-container {
        margin: unset;
    }
    .testimonial-card {
        text-align: center;
        min-width: calc(50% - 10px);
    }
    .testimonial-header {
        flex-direction: column;
    }
    .testimonial-text {
        text-align: left;
    }
    .nav-button {
        display: none;
    }
    #contact .sectionContent {
        display: flex;
        align-items: center;
        padding: 20px;
        gap: 20px;
        flex-direction: column;
    }
    #contact .sectionContent h3 {
        font-size: 1.8em;
        align-self: center;
    }
    #contact .sectionContent form label {
        font-size: 1.4em;
    }
    #contact .sectionContent form input, #contact .sectionContent form select, #contact textarea {
        font-size: 1.3em;
    }
    #contact .sectionContent form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }
    #contact .sectionContent form .row {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 10px;
    }
    #contact .sectionContent form .element {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 80%;
        align-items: center;
    }
    #contact textarea {
        width: 80%;
        border-radius: 12px;
        border: #02091d 2px solid;
        padding: 12px;
    }    
    #contact .sectionContent .map {
        display: flex;
        flex-direction: column;
        padding: 10px;
        gap: 20px;
        width: 100%;
    }
    iframe {
        border: 0;
        max-width: 100%;
    }
    footer {
        display: flex;
        align-items: center;
        flex-direction: column;
        color: white;
        background-color: #02091d;
        min-height: 250px;
        padding: 20px;
        gap: 20px;
    }
    footer h3 {
        font-size: 1.7em;
    }
    #entreprise {
        font-size: 1.4em;
    }
    footer .footerSection {
        align-items: center;
    }
    footer form {
        align-items: center;
    }
    footer .content {
        font-size: 1.4em;
    }
    footer form input {
        font-size: 1em;
    }
    footer form button {
        font-size: 1.2em;
    }
    @keyframes slide {
        0%{
            left: 100%;
            visibility: visible;
          }
          99% {
            left: -1000px;
            visibility: hidden;
          }
          100% {
            left: 100%;
            visibility: hidden;
          }
    }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 769px) and (max-width: 991.98px) {
    nav ul {
        justify-content: end;
    }
    nav ul li a {
        font-size: 1.3em;
    }
    .heroContent h1 {
        margin: 0;
        font-size: 8.5em;
    }
    .heroContent p {
        margin-top: 20px;
        font-size: 2.5em;
        font-style: italic;
        padding: 5px;
        text-align: center;
    }
    .benefit-description {
        font-size: 1.2em;
    }
    .sectionTitle {
        text-align: center;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
    .service-title {
        font-size: 2em;
    }
    .service-description, .feature-item {
        font-size: 1.2em;
    }
    #pourquoi .sectionContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    .aboutImg img {
        width: 100%;
    }
    .aboutImg {
        width: 100%;
        margin-right: unset;
    }
    .aboutContent {
        width: 100%;
    }
    .aboutContent p {
        font-size: 1.4em;
    }
    .aboutContent a {
        font-size: 1.5em;
    }
    #clients {
        align-items: center;
    }
    .client-name {
        font-size: 1.5em;
    }
    .client-role, .testimonial-text {
        font-size: 1.2em;
    }
    .testimonials-container {
        margin: unset;
    }
    .testimonial-card {
        text-align: center;
        min-width: calc(50% - 10px);
    }
    .testimonial-header {
        flex-direction: column;
    }
    .testimonial-text {
        text-align: left;
    }
    .nav-button {
        display: none;
    }
    #contact .sectionContent {
        display: flex;
        align-items: center;
        padding: 20px;
        gap: 20px;
        flex-direction: column;
    }
    #contact .sectionContent h3 {
        font-size: 1.8em;
        align-self: center;
    }
    #contact .sectionContent form label {
        font-size: 1.4em;
    }
    #contact .sectionContent form input, #contact .sectionContent form select, #contact textarea {
        font-size: 1.3em;
    }
    #contact .sectionContent form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }
    #contact .sectionContent form .row {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 10px;
    }
    #contact .sectionContent form .element {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 80%;
        align-items: center;
    }
    #contact textarea {
        width: 80%;
        border-radius: 12px;
        border: #02091d 2px solid;
        padding: 12px;
    }
    #contact .sectionContent .map {
        display: flex;
        flex-direction: column;
        padding: 10px;
        gap: 20px;
        width: 100%;
        align-items: center;
    }
    iframe {
        border: 0;
        max-width: 100%;
    }
    footer {
        display: flex;
        align-items: center;
        flex-direction: column;
        color: white;
        background-color: #02091d;
        min-height: 250px;
        padding: 20px;
        gap: 20px;
    }
    footer h3 {
        font-size: 1.7em;
    }
    #entreprise {
        font-size: 1.4em;
    }
    footer {
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        color: white;
        background-color: #02091d;
        min-height: 250px;
        padding: 20px;
        gap: 20px;
    }
    footer .footerSection {
        align-items: center;
    }
    footer form {
        align-items: center;
    }
    footer .content {
        font-size: 1.4em;
    }
    footer form input {
        font-size: 1em;
    }
    footer form button {
        font-size: 1.2em;
    }
    @keyframes slide {
        0%{
            left: 100%;
            visibility: visible;
          }
          99% {
            left: -1000px;
            visibility: hidden;
          }
          100% {
            left: 100%;
            visibility: hidden;
          }
    }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    nav ul {
        justify-content: end;
    }
    nav ul li a {
        font-size: 1.3em;
    }
    .heroContent h1 {
        margin: 0;
        font-size: 8.5em;
    }
    .heroContent p {
        margin-top: 20px;
        font-size: 2.5em;
        font-style: italic;
        padding: 5px;
        text-align: center;
    }
    .benefit-description {
        font-size: 1.2em;
    }
    .sectionTitle {
        text-align: center;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
    .service-title {
        font-size: 2em;
    }
    .service-description, .feature-item {
        font-size: 1.2em;
    }
    #pourquoi .sectionContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    .aboutImg img {
        width: 100%;
    }
    .aboutImg {
        width: 100%;
        margin-right: unset;
    }
    .aboutContent {
        width: 100%;
    }
    .aboutContent p {
        font-size: 1.4em;
    }
    .aboutContent a {
        font-size: 1.5em;
    }
    #clients {
        align-items: center;
    }
    .client-name {
        font-size: 1.5em;
    }
    .client-role, .testimonial-text {
        font-size: 1.2em;
    }
    .testimonials-container {
        margin: unset;
    }
    .testimonial-card {
        text-align: center;
        min-width: calc(50% - 10px);
    }
    .testimonial-header {
        flex-direction: column;
    }
    .testimonial-text {
        text-align: left;
    }
    .nav-button {
        display: none;
    }
    #contact .sectionContent {
        display: flex;
        align-items: center;
        padding: 20px;
        gap: 20px;
        flex-direction: column;
    }
    #contact .sectionContent h3 {
        font-size: 1.8em;
        align-self: center;
    }
    #contact .sectionContent form label {
        font-size: 1.4em;
    }
    #contact .sectionContent form input, #contact .sectionContent form select, #contact textarea {
        font-size: 1.3em;
    }
    #contact .sectionContent form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }
    #contact .sectionContent form .row {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 10px;
    }
    #contact .sectionContent form .element {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 80%;
        align-items: center;
    }
    #contact textarea {
        width: 80%;
        border-radius: 12px;
        border: #02091d 2px solid;
        padding: 12px;
    }
    #contact .sectionContent .map {
        display: flex;
        flex-direction: column;
        padding: 10px;
        gap: 20px;
        width: 100%;
        align-items: center;
    }
    iframe {
        border: 0;
        max-width: 100%;
    }
    footer {
        display: flex;
        align-items: center;
        flex-direction: column;
        color: white;
        background-color: #02091d;
        min-height: 250px;
        padding: 20px;
        gap: 20px;
    }
    footer h3 {
        font-size: 1.7em;
    }
    #entreprise {
        font-size: 1.4em;
    }
    footer {
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: flex-start;
    }
    footer .footerSection {
        align-items: center;
    }
    footer form {
        align-items: center;
    }
    footer .content {
        font-size: 1.4em;
    }
    footer form input {
        font-size: 1em;
    }
    footer form button {
        font-size: 1.2em;
    }
    @keyframes slide {
        0%{
            left: 100%;
            visibility: visible;
          }
          99% {
            left: -1000px;
            visibility: hidden;
          }
          100% {
            left: 100%;
            visibility: hidden;
          }
    }
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
