   
     body {
        margin: 0;
        font-family: Arial, sans-serif;
     }  
    
   /*service
   */
     .hero-section {
     position: relative;
     height: 60vh;
     background-color: #b7b5c0;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     color: white;
   }
   .hero-content {
     position: absolute;
     z-index: 1;
   }
   .hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
   }
   .hero-content h1 {
     font-size: 4rem;
     margin: 0;
   }
   .hero-content h3 {
     font-size: 1.5rem;
     margin: 10px 0 0;
   }


   .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .section:nth-child(even) {
            flex-direction: row-reverse;
        }

        .text-content {
            flex: 1;
            padding: 20px;
        }

        .text-content h2 {
            margin-bottom: 15px;
            color: white;
        }

        .text-content p {
            color: #666;
            line-height: 1.6;
        }

        .image {
            flex: 1;
        }

        .image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .button {
            text-align: center;
            margin: 20px 0;
        }

        .button button {
            padding: 10px 20px;
            background-color: blue;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        .button button:hover {
            background-color: blue;
        }

        h1 {
            text-align: center;
            margin-bottom: 40px;
            color: blue;
        }

          /*apropos
   */
 
        .propos p {
            margin-top: 70px;
            color: #666;
            
        }
        .grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Deux colonnes */
            gap: 20px; /* Espacement entre les div */
            width: 100%;
            max-width: 1200px;
            margin: 10px;
          }
          .grid-item {
            background: #fff;
            border: 1px solid #ddd;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            margin-bottom:30px ;
                }
          .grid-item h2 {
            margin: 0 0 10px;
            font-size: 1.5rem;
            color: #333;
          }
          .grid-item p {
            margin: 10px;
            font-size: 1.3rem;
            color: #555;
          }
          .grid-item::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 4px;
            background: #ddd;
            margin-top: auto;
          }

          .bloc {
            display: flex; /* Utilisation de flexbox pour aligner les div sur la même ligne */
            justify-content: space-between; /* Espacement égal entre les div */
            gap: 20px; /* Espacement entre les div */
          }
          .box {
            flex: 1; /* Les div occupent une taille égale */
            max-width: 30%; /* Pour limiter la largeur de chaque div */
            padding: 20px;
            background: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            border-radius: 8px;
          }
          .box img {
            width: 100%; /* L'image occupe la largeur du conteneur */
            height: auto; /* Conserve les proportions */
            border-radius: 8px 8px 0 0; /* Coins arrondis en haut */
            margin-bottom: 15px; /* Espacement entre l'image et le contenu */
          }
          .box h2 {
            margin: 0 0 10px;
            font-size: 1.5rem;
            color: #333;
          }
          .box p {
            margin: 0;
            font-size: 1rem;
            color: #555;
          }

          /* style pour les card */
          .card {
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 20px;
            overflow: hidden;
            background-color: #fff;
            /* Ajout de l'ombre */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease-in-out;
        }

        /* Ajouter un effet hover pour accentuer l'ombre */
        .card:hover {
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        }

        .card-img-top {
            width: 100%;
            height: auto;
        }
        .card-body {
            padding: 15px;
        }
        .card-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .card-text {
            font-size: 14px;
            color: #555;
        }
        /*contact */
        .contact form {
          max-width: 1300px;
          margin: 10px ;
          display: flex;
          flex-wrap: wrap;
          gap: 20px;
          border: 1px solid #ccc;
          padding: 20px;
          border-radius: 8px;
          background-color: #f5f6f7;
      }

      .left-column,
      .right-column {
          flex: 1 1 48%; 
      }

      .form-group {
          margin-bottom: 10px;

      }

      .contact input, textarea {
        margin-top: 30px;
          width: 100%;
          padding: 10px;
          font-size: 20px;
          border: 1px solid #ccc;
          border-radius: 5px;
          box-sizing: border-box;
          color: blue;
      } 
      .contact button {
        width: 80%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
    } 
   
      textarea {
        

          resize: vertical;
          min-height: 320px;
      }

      .contact button {
          background-color: white;
          color: blue;
          border: none;
          padding: 10px 20px;
          cursor: pointer;
          border-radius: 5px;
          font-size: 20px;
          margin: 20px 0;

      }

      .contact button:hover {
          background-color: #ccc;
      }
      
      .full-width {
          flex: 1 1 40%;
      }
/* Global Styles */
.ft-service-section-3 {
  padding: 80px 0;
  background-color: #f4f7fc; /* Fond plus moderne */
}

/* Section Title */
.ft-section-title-3 {
  margin-bottom: 50px;
}

.ft-section-title-3 span {
  font-size: 14px;
  font-weight: bold;
  color: #007bff; /* Bleu principal */
  letter-spacing: 1px;
}

.ft-section-title-3 h2 {
  font-size: 34px;
  font-weight: bold;
  color: #222;
  text-transform: capitalize;
}

/* Service Cards */
.ft-service-innerbox-3 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #e0e5f2;
}

.ft-service-innerbox-3:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image */
.ft-service-img img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #007bff;
  transition: transform 0.3s ease;
}

.ft-service-innerbox-3:hover .ft-service-img img {
  transform: scale(1.05);
}

/* Service Icon */
.ft-service-icon {
  width: 60px;
  height: 60px;
  background: #007bff;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.ft-service-innerbox-3:hover .ft-service-icon {
  background: #0056b3;
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.4);
}

/* Text Content */
.ft-service-text {
  padding: 20px;
  text-align: center;
}

.ft-service-text h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ft-service-text h3 a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;
}

.ft-service-text h3 a:hover {
  color: #007bff;
}

.ft-service-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* More Button */
.more-btn {
  bottom: 15px;
  right: 15px;
}

.more-btn a {
  width: 42px;
  height: 42px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.more-btn a:hover {
  background: #0056b3;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .ft-service-innerbox-3 {
      margin-bottom: 20px;
  }

  .ft-service-text h3 {
      font-size: 20px;
  }

  .ft-service-text p {
      font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ft-service-section-3 {
      padding: 50px 0;
  }

  .ft-section-title-3 h2 {
      font-size: 30px;
  }

  .ft-service-icon {
      width: 50px;
      height: 50px;
      font-size: 20px;
  }
}
.alert {
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
}
