   body {
      margin: 0;
      padding: 0;
    
    }

    .containerc {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      padding: 20px;
  
    }

    .atik {
      background-color: #20D11B;
      color: white;
      flex: 0 1 30%;
      margin: 10px;
      padding: 20px;
      box-sizing: border-box;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .atik:hover {
      transform: translateY(-5px);
    }

    h2 {
      margin-top: 0;
    }

    /* Responsive Layout pou ekran piti */
    @media (max-width: 768px) {
      .atik {
        flex: 0 1 45%;
      }
    }

    @media (max-width: 480px) {
      .atik {
        flex: 0 1 100%;
      }
    }


       * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    .slideshow-section {
      position: relative;
      width: 100%;
      height: 100vh; /* pran tout wotè ekran an */
      overflow: hidden;
    }

    .slideshow-section img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }

    .slideshow-section img.active {
      opacity: 1;
      z-index: 1;
    }

    .welcome-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      color: white;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
      font-size: 2.5em;
      text-align: center;
      padding: 0 20px;
    }

    @media (max-width: 768px) {
      .welcome-text {
        font-size: 2em;
      }
    }

    @media (max-width: 480px) {
      .welcome-text {
        font-size: 2.5em;
      }
    }

     .men {
      font-family: Arial, sans-serif;
      background-color: white;
      margin: 0;
      padding: 20px;
    }

    .kadran-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; /* Fè yo alèz an paralèl */
      gap: 20px;
    }

    .kadran {
      background-color: #ffffff;
      border: 2px solid #20D11B;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      flex: 0 1 32%; /* Fè chak kadran pran anviwon 1/3 */
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .kadran:hover {
      transform: translateY(-5px);
    }

    .kadran h3 {
      color: #20D11B;
      margin-bottom: 10px;
    }

    .kadran ul {
      padding-left: 0;
      list-style-position: inside;
    }

    .kadran ul li {
      margin-bottom: 8px;
    }

    /* Responsivite pou tablèt */
    @media (max-width: 900px) {
      .kadran {
        flex: 0 1 47%;
      }
    }

    /* Responsivite pou telefòn */
    @media (max-width: 600px) {
      .kadran {
        flex: 0 1 100%;
      }
    }


    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.kontenè {
    width: 100%;
    overflow: hidden;
}

.karousèl {
    display: flex;
    animation: glise 36s infinite ease-in-out;
}

.item-karousèl {
    flex: 0 0 100%;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    border: 5px solid #20D11B; /* Ajoute bòdi koulè #20D11B */
    transition: transform 0.5s ease;
}

.item-karousèl img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.item-karousèl p {
    margin: 5px 0;
    color: #333;
    font-size: 1.2rem;
}

@keyframes glise {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-100%);
    }
    40% {
        transform: translateX(-200%);
    }
    60% {
        transform: translateX(-300%);
    }
    80% {
        transform: translateX(-400%);
    }
    100% {
        transform: translateX(-500%);
    }
}

/* Responsivite */
@media (max-width: 768px) {
    .item-karousèl img {
        width: 120px;
        height: 120px;
    }

    .item-karousèl p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .item-karousèl img {
        width: 100px;
        height: 100px;
    }

    .item-karousèl p {
        font-size: 0.9rem;
    }
}


/*bouton chat*/
.chat-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  z-index: 99;
}

.chat-options {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: white;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  width: 270px;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
  z-index: 100;
}

.chat-options p {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
}

.chat-option-btn {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  text-align: left;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
}

.whatsapp {
  background-color: #25D366;
  color: white;
}

.message {
  background-color: #007bff;
  color: white;
}

.chat-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 25px;
  border: 1px solid #888;
  background-color: white;
  z-index: 101;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}

.form-container textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  margin: 5px 0 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.form-container .btn {
  background-color: #007bff;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-container .cancel {
  background-color: #aaa;
  margin-top: 5px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}
