body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-x: hidden;
}
/* Overlay du popup */
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* Contenu du popup */
  .popup {
    background: #fff;
    color: #333;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: popupAnimation 0.5s ease-out;
  }
  
  /* Animation du popup */
  @keyframes popupAnimation {
    from {
      transform: scale(0.7);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  /* Titre du popup */
  .popup h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  /* Texte du popup */
  .popup p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  /* Bouton fermer */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
  }
  
  /* Bouton explorer */
  .explore-btn {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .explore-btn:hover {
    transform: scale(1.05);
  }
  
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.col-left {
    flex: 1;
    padding-right: 30px;
    animation: slideInLeft 1.5s ease;
}
.col-right {
    flex: 1;
    background-color: #f2d6d6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: slideInRight 1.5s ease;
}
/* Logo Section */
.logo {
    margin-bottom: 50px;
}
.logo img {
    width: 100%;
    animation: fadeIn 2s ease-in-out;
}
/* Text Section */
h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    animation: fadeInUp 2s ease;
    position: relative;
    margin-bottom: 60px;
}
h2 {
    font-size: 24px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease 0.5s;
    margin-top: 30px;
}
.about-section {
    margin-top: 60px;
}
p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease 1s;
}
/* Right Side (Contact Info) */
.contact-section {
    background-color: #f2d6d6;
    border-radius: 10px;
    padding: 40px;
}
.contact-section img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin-bottom: 30px;
    animation: zoomIn 2s ease;
    border: 5px solid #fff; /* Border around image */
}
.contact-section h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    animation: fadeIn 2s ease;
}
.contact-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    animation: fadeInUp 2s ease 1.5s;
}
.contact-section .email {
    font-style: italic;
}
h5,
h3,
h4 {
    font-weight: 700;
   
    margin-top: 20px;
    animation: slideIn 1s ease-in-out;
}

.content {
   
    margin: 30px 0;
    animation: fadeIn 1.5s ease-in-out;
}

.section-title {
    font-weight: bold;
   
    margin-top: 30px;
    font-size: 24px;
}

.list {
   
    margin-top: 20px;
    line-height: 1.8;
    animation: fadeIn 2s ease-in-out;
}

.list ol, .list ul {
    list-style-position: inside;
}

.image-container {
    text-align: center;
    margin-top: 20px;
    animation: fadeInUp 2.5s ease-in-out;
}

.image-container img {
    width: 80%;
    max-width: 700px;
}

.contact-info {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 18px;
    animation: fadeIn 3s ease-in-out;
}
section{
    margin-bottom: 120px;
}
/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.about-section {
    margin-bottom: 80px; 
}

/* Overlay de bienvenue */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Couleur de fond semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1000;
}

/* Boîte de bienvenue */
.welcome-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.welcome-box h2 {
    margin-top: 0;
    color: #f5047e;
}

.welcome-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Style et positionnement du message de bienvenue */
.welcome-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInScale 2s ease forwards, fadeOut 1s ease 5s forwards;
    z-index: 10;
}

.welcome-message h1 {
    font-size: 2.5em;
    color: #f5047e;
    margin-bottom: 10px;
}

.welcome-message p {
    font-size: 1.2em;
    color: #333;
}

/* Animation d'apparition avec zoom */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Animation de disparition après un délai */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* Styles des services */
.service {
    margin-bottom: 5px;
}

.service h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 10px;
    border-left: 5px solid #f5047e;
    padding-left: 10px;
}

.service p {
    color: #555;
    line-height: 1.6;
}
.service h2 a{
    color: #555;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .service h2 {
        font-size: 1.2rem;
    }
}