@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

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

html {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

p {
  color: black;
  font-size: 1.4rem;
  margin-top: 5px;
  line-height: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
}

.section-title {
  font-size: 4rem;
  font-family: 300;
  color: black;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  text-align: center;
}

.section-title span {
  color: rgb(247, 64, 51);
}

.cta {
  display: inline-block;
  padding: 10px 30px;
  background-color: transparent;
  border: 2px solid rgba(247, 64, 51, 0.705);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 30px;
  transition: 0.3s ease background-color, color;
  /* color: black; */
  color: white;
}



.cta:hover {
  color: white;
  background-color: rgba(247, 64, 51, 0.849);
}

.cta11 {
  display: inline-block;
  padding: 10px 30px;
  background-color: transparent;
  border: 2px solid rgba(250, 250, 250, 0.212);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 30px;
  
  transition: 0.5s ease all;
  /* color: black; */
  color: white;
}

.cta11:hover {
  color: rgb(0, 0, 0);
  background-color: rgba(250, 250, 250, 0.5);

}

.brand h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: white;
}

.brand h1 span {
  color: rgb(247, 64, 51);
}
#header {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: auto;
}

#header .header {
  min-height: 8vh;
  background-color: rgba(31, 30, 30, 0.24);
  transition: 0.3s ease background-color;
}

#header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1300px;
  padding: 0 10px;
}
#header .hamburger {
  height: 60px;
  width: 60px;
  display: none; /* Hide hamburger by default */
  margin-right: 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  transform: scale(0.8);
}

#header .hamburger:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
}

#header .hamburger .bar {
  background-color: white;
  height: 2px;
  width: 30px;
  position: relative;
  z-index: -1;
}

#header .hamburger .bar::before,
#header .hamburger .bar::after {
  content: "";
  background-color: white;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  transition: 0.3s ease top, bottom;
}

#header .hamburger .bar::after {
  top: 8px;
}

#header .hamburger .bar::before {
  bottom: 8px;
}

#header .hamburger.active .bar::before {
  bottom: 0;
}

#header .hamburger.active .bar::after {
  top: 0;
}

#header .nav-list ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

#header .nav-list ul a {
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  padding: 20px;
  transition: all 0.3s ease;
}

#header .nav-list ul li:hover a {
  color: rgb(247, 64, 51);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* Dropdown styles */
#header .nav-list ul .dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* Positionne le contenu juste en dessous du bouton */
  left: 50%; /* Centrer horizontalement par rapport au parent */
  transform: translateX(-50%); /* Ajuster pour le centrage parfait */
  background-color: #1b2127;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Assurez-vous que le dropdown se superpose correctement */
  border-radius: 5px;
  font-size: 1.3rem;
  margin-top: 10px;
  transition: all 0.5s ease;
}

.dropdown-content .ll {
  color: rgb(226, 226, 226);
  padding: 5px 20px;
  text-decoration: none;
  display: block;
  font-size: 1.3rem;
  cursor: pointer;
  margin-top: 15px;
  text-align: center; /* Centrer le texte */
  transition: all 0.3s ease;

}

.dropdown-content .ll:hover {
  background-color: rgb(247, 64, 51);
  color: white;
}

/* Afficher le dropdown quand on survole le bouton */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Ajouter un effet sur le bouton lors du survol */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

/* Styles de la navigation mobile */
@media screen and (max-width: 1199px) {
  #header .nav-list ul {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #1b2127;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease left;
  }

  #header .nav-list ul.active {
    left: 0;
  }

  #header .nav-list ul a {
    font-size: 2rem;
    color: white;
    padding: 0px 0px; /* Augmenter le padding pour ajouter de l'espace autour du texte */
  }

  .hamburger.active .bar::before {
    bottom: 0;
  }

  .hamburger.active .bar::after {
    top: 0;
  }
}

/* Ensure hamburger is hidden on larger screens */
@media screen and (min-width: 1200px) {
  #header .hamburger {
    display: none; /* Hide hamburger on larger screens */
  }
}


.book {
  margin-left: auto; /* Place l'élément tout à droite */
  font-family: "Montserrat", sans-serif;
  padding: 13px;
  background-color: rgb(247, 64, 51);
  right: 0;
  color: white;
  transition: 0.3s;
  margin-left: 135px;
  margin-top: 0px;
}

.book:hover {
  transform: scale(1.01);
  background-color: rgb(247, 64, 51);
  cursor: pointer;
}

@media (max-width: 1366px) {
  .book {
      padding: 8px;
  }
}

@media (max-width: 1200px) {
  .book {
      margin-top: 20px;
      margin-left: 0;
  }
}
/* header  */

/* Global styles for header */


/* hero section */



#hero {
  background-image: url(./assets/images/hero-bg.jpg);
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
}

#hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.79;
  z-index: -1;
}

#hero .hero {
  max-width: 1200px;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 0 50px;
}

#hero h1 {
  display: block;
  width: fit-content;
  font-size: 4rem;
  font-weight: bold;
  position: relative;
  color: transparent;
  animation: text-reveal 1s ease forwards;
  animation-delay: 1s;
}


@keyframes text-reveal {
  100% {
    color: white;
  }
}

#hero h1:nth-child(1) {
  animation-delay: 1s;
}

#hero h1:nth-child(2) {
  animation-delay: 2s;
}

#hero h1:nth-child(3) {
  animation: text-reveal-name 0.5s ease 1.5s forwards;
  animation-delay: 3s;
}

@keyframes text-reveal-name {
  100% {
    color: rgb(247, 64, 51);
    font-weight: 500;
  }
}

#hero h1 span {
  background-color: rgb(247, 64, 51);
  height: 100%;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  animation: text-reveal-box 1s ease;
  animation-delay: 0.5s;
}

@keyframes text-reveal-box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

#hero h1:nth-child(1) span {
  animation-delay: 0.5s;
}

#hero h1:nth-child(2) span {
  animation-delay: 1.5s;
}

#hero h1:nth-child(3) span {
  animation-delay: 2.5s;
}

@media only screen and (min-width: 768px) {
  .cta {
    font-size: 1.6rem;
    padding: 20px 40px;
  }
  .cta11 {
    font-size: 1.6rem;
    padding: 20px 40px;
  }

  h1.section-title {
    font-size: 6rem;
    font-weight: 270;
  }

  #hero h1 {
    font-size: 7rem;
    font-weight: 400;
  }
}


#services {
  background: #e6e6e6;
}
/* services section */
#services .services {
  flex-direction: column;
  text-align: center;
  max-width: 1700px;
  margin: 0 auto;
  padding: 100px 0;
}

#services .service-top {
  max-width: 600px;
  margin: 0 auto;
}

#services .service-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

#services .service-item {
  flex-basis: 85%; /* Augmenté légèrement */
  min-height: 400px; /* Hauteur minimale ajoutée */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Centrer le contenu verticalement */
  text-align: center;
  padding: 35px; /* Augmenté légèrement */
  border-radius: 15px;
  margin: 10px 5%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(./assets/images/dem.png) center/cover no-repeat;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35); /* Légèrement plus grand */
  transition: all 0.4s ease;
}

/* Effet au survol avec ajout de fond noir plus visible */
#services .service-item:hover {
  transform: scale(1.03); /* Agrandi davantage au survol */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Accentué l'ombre au survol */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url(./assets/images/dem.png) center/cover no-repeat; /* Augmenter l'intensité du noir au survol */
  background-size: cover; /* Assurez-vous que l'image couvre toute la zone */
  color: white; /* Change la couleur du texte pour s'assurer qu'il est visible sur fond noir */
  
}

/* Add a smaller triangle in the top-left corner with rotation */
#services .service-item::before {
  content: '';
  position: absolute;
  top: -20px;  /* Position the triangle slightly down from the top */
  left: 10px; /* Position the triangle slightly right from the left */
  width: 0;
  height: 0;
  border-left: 50px solid transparent; /* Create the left side of the triangle */
  border-right: 50px solid transparent; /* Create the right side of the triangle */
  border-bottom: 70px solid rgb(247, 64, 51); /* Create the bottom side of the triangle (blue color) */
  transform: rotate(45deg); /* Rotate the triangle */
  z-index: 1; /* Ensure the triangle stays behind the content */
  opacity: 0.8; /* Adjust opacity for subtle effect */
}

/* Custom backgrounds for specific service items */
#services .service-item.demenagement {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('./assets/images/dem.png') center/cover no-repeat;
  transition: all 0.3s;
}


#services .service-item.jardinier {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('./assets/images/jard.jpg') center/cover no-repeat;
}

#services .service-item.plomberie {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('./assets/images/plom.jpg') center/cover no-repeat;
}

#services .service-item.nettoyage {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('./assets/images/clean.jpg') center/cover no-repeat;
}

#services .service-item.livraison {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('./assets/images/box.jpg') center/cover no-repeat;
}

#services .service-item h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

#services .service-item p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.5;
}

#services .service-item .icon img {
  width: 80px;
  margin-bottom: 15px;
}

#services .service-item a.c {
  text-decoration: none;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3 ease;
}
.c{
  padding: 10px 30px;
  border: 2px solid rgba(255, 255, 255, 0.849);
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 25px;
  text-transform: uppercase;
  background-color: rgba(247, 64, 51, 0);
  transition: all 0.3s ease;
  margin-top: 10px;
  color: rgb(255, 255, 255);
}
.c:hover {
  transform: scale(1.05);
  color: rgba(255, 255, 255, 0.849);
  border: 2px solid rgba(247, 64, 51, 0.849);
  background-color: rgba(247, 64, 51, 0.849);


}

#services .service-item a.c:hover {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  #services .service-bottom .service-item {
    flex-basis: 48%; /* Augmenté légèrement */
    margin: 2%;
    min-height: 450px; /* Hauteur minimale pour les écrans moyens */
  }
}

@media only screen and (min-width: 1200px) {
  #services .service-bottom .service-item {
    flex-basis: 24%; /* Augmenté légèrement */
    margin: 2%; /* Ajusté pour plus d'espace entre les cartes */
    min-height: 500px; /* Hauteur minimale pour les écrans plus larges */
  }
}
.partners{
  padding: 180px 220px;

    background: #e6e6e6;


}

.partners .row {
  display: flex;
  flex-wrap: wrap; /* Permet d'aller à la ligne si nécessaire */
  justify-content: center; /* Centre les logos */
  gap: 20px; /* Espace entre les éléments */
}
.partners-description {
  text-align: center;
  color: #555; /* Couleur grise douce */
  margin: 20px auto; /* Espace au-dessus et au-dessous */
  max-width: 800px; /* Largeur maximale pour le texte */
  line-height: 1.6; /* Hauteur de ligne pour une meilleure lisibilité */
}

.partner-logo {
  flex: 1 1 calc(20% - 40px); /* Par défaut : 5 logos par ligne */
  text-align: center;
  padding: 20px;
  max-width: 200px; /* Largeur maximale pour les logos */
}

.partner-logo img {
  max-width: 100%; /* Le logo prend toute la largeur disponible */
  height: auto; /* Conserve les proportions */
  transition: transform 0.3s ease; /* Effet smooth pour les animations */
}

.partner-logo img:hover {
  transform: scale(1.1); /* Zoom au survol */
}

/* Responsive pour les écrans < 768px */
@media screen and (max-width: 768px) {
  .partners .row {
    flex-direction: column; /* Force chaque élément sur une ligne */
    align-items: center; /* Centre horizontalement les logos */
  }

  .partner-logo {
    flex: 1 1 100%; /* Occupe toute la largeur */
    max-width: 100%; /* Pas de restriction de largeur */
  }

  .partner-logo img {
    max-width: 150px; /* Taille ajustée pour petits écrans */
  }
}




section#how-it-works {
  text-align: center;
  padding: 250px 220px;
  background-color: #1b2127;
}

.section-title {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #333;
}

.section-title span {
  color: rgb(247, 64, 51);
}

.subtitle {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.step {
  text-align: center;
  width: 300px;
  padding: 20px;
  background-color: #ffffff00;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: scale(1.05);
}

.step img {
  width: 120px;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: rgb(247, 64, 51);
}

.step p {
  font-size: 1em;
  color: #ffffff;
}

/* Arrow Styles */
.arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 50px;
  height: 50px;
  position: relative;
  transform: rotate(-90deg);
}

.arrow-item {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid rgb(247, 64, 51); /* Arrowhead color */
  opacity: 0;
  animation: arrowAnimation 1.5s infinite;
}

.arrow-item:nth-child(1) {
  animation-delay: 0s;
}

.arrow-item:nth-child(2) {
  animation-delay: 0.3s;
}

.arrow-item:nth-child(3) {
  animation-delay: 0.6s;
}

/* Arrow Animation */
@keyframes arrowAnimation {
  0% {
      opacity: 0;
      transform: translateX(0);
  }
  50% {
      opacity: 1;
      transform: translateX(10px);
  }
  100% {
      opacity: 0;
      transform: translateX(0);
  }
}

@media (max-width: 767px) {

  section#how-it-works {
    text-align: center;
    padding: 50px 20px;
    background-color: #1b2127;
  }
  .arrow {
    transform: rotate(0deg);
  }
  .section-title {
    font-size: 2em; /* Réduit la taille du titre */
  }

  .steps {
    flex-direction: column; /* Affiche les étapes en colonne sur les petits écrans */
    gap: 40px; /* Augmente l'espace entre les étapes */
  }

  .step {
    width: 100%; /* Les étapes prennent toute la largeur disponible */
    padding: 20px;
  }

  .step img {
    width: 100px; /* Augmente légèrement la taille de l'image */
  }

  .arrow {
    width: 50px;
    height: 50px;
  }

  .arrow-item {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid rgb(247, 64, 51);
  }
}


#projects {
  background: #e6e6e6;
}
/* project section  */

#projects .projects {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

#projects .projects-header h1 {
  margin-bottom: 50px;
}

#projects .all-projects {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#projects .project-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
}

#projects .project-info {
  padding: 30px;
  flex-basis: 50%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-image: linear-gradient(60deg, #1b2127 0%, #242f3a 100%);
  color: white;
}

#projects .project-info h1 {
  font-size: 4rem;
  font-weight: 500;
}

#projects .project-info h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 10px;
}

#projects .project-info p {
  color: white;
}

#projects .project-img {
  flex-basis: 50%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

#projects .project-img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(60deg, #1b2127 0%, #242f3a 100%);
  opacity: 0.7;
}

#projects .project-img img {
  transition: 0.3s ease transform;
}

#projects .project-item:hover .project-img img {
  transform: scale(1.1);
}

@media only screen and (min-width: 768px) {


  
  #projects .project-item {
    flex-direction: row;
  }
  #projects .project-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  #projects .project-item {
    height: 400px;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }

  #projects .all-projects .project-info {
    height: 100%;
  }

  #projects .all-projects .project-img {
    height: 100%;
  }
}

/* about section */
#about {
  background: #e6e6e6;
}

#about .about {
  flex-direction: column-reverse;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

#about .col-left {
  width: 250px;
  height: 360px;
}

#about .col-right {
  width: 100%;
}

#about .col-right h2 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

#about .col-right p {
  margin-bottom: 20px;
}

#about .col-right .cta {
  margin-bottom: 50px;
  color: black;
  padding: 10px 20px;
  font-size: 2rem;
}

#about .col-left .about-img {
  height: 100%;
  width: 100%;
  position: relative;
  border: none solid white;
}

#about .col-left .about-img::after {
  content: "";
  position: absolute;
  left: -33px;
  top: 19px;
  height: 98%;
  width: 98%;
  border: 7px solid rgb(247, 64, 51);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  #about .about {
    flex-direction: row;
  }

  #about .col-left {
    width: 600px;
    height: 400px;
    padding-left: 60px;
  }

  #about .about .col-left .about-img::after {
    left: -45px;
    top: 34px;
    height: 98%;
    width: 98%;
    border: 10px solid rgb(247, 64, 51);
  }

  #about .col-right {
    text-align: left;
    padding: 30px;
  }

  #about .col-right h1 {
    text-align: left;
  }
}

#contact {

  background-color: #1b2127;

}

/* contact section */
#contact .contact {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
#contact .contact-items {
  width: 100%;
}
#contact .contact-item {
  width: 80%;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  padding: 30px;
  margin: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 18px 0 #0000002c;
  transition: 0.3s ease box-shadow;
}
#contact .contact-item:hover {
  box-shadow: 0px 0px 5px 0 #0000002c;
}
#contact .icon {
  width: 70px;
  margin: 0 auto;
  margin-bottom: 10px;
}
#contact .contact-info h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 5px;
}
#contact .contact-info h2 {
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  #contact .contact {
    flex-direction: column;
    padding: 100px 0;
    align-items: center;
    justify-content: center;
    min-width: 20vh;
  }
  #contact .contact-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 0;
  }
  #contact .contact-item {
    width: 30%;
    margin: 0;
    flex-direction: row;
  }
  #contact .contact-item .icon {
    height: 100px;
    width: 100px;
  }
  #contact .contact-item .icon img {
    object-fit: contain;
  }
  #contact .contact-item .contact-info {
    width: 100%;
    text-align: left;
    padding-left: 20px;
  }
}
#footer {
  background-image: linear-gradient(60deg, #1b2127 0%, #242f3a 100%);
  padding-top: 50px;

}
.ff{
  font-size:2rem;
}
#footer .footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 200px;
}

.footer-column {
  flex: 1;
  padding: 15px;
  color: white;
  text-align: center;
}

.footer-column h3 {
  font-size: 2.7rem; /* Increased font size */
  margin-bottom: 15px;
  font-weight: bold; /* Bold title for better readability */
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li {
  margin: 10px 0; /* Increased spacing for readability */
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem; /* Increased font size for better readability */
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #408cff; /* Hover effect for better user interaction */
}

.footer-column .map {
  width: 80%;
  height: 300px; /* Increased map height */
  border: 0;
  border-radius: 10px;
  padding: 0;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
}

.footer-bottom .social-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-bottom .social-icon a {
  margin: 0 10px;
}

.footer-bottom .social-icon img {
  width: 30px; /* Increased size of social icons */
  height: 30px;
  transition: 0.3s ease filter;
}

#footer p {
  font-size: 1.4rem; /* Increased font size for readability */
  margin-top: 10px;
}

.testimonials {
  background: #1b2127;
  padding: 250px 220px;
  text-align: center;
  position: relative;
  overflow: hidden; /* Empêche les formes de déborder */
}

.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 0;
}

/* Triangles bleus */
.testimonials::before {
  border-width: 150px 100px 0 100px; /* Triangle bleu en haut à gauche */
  border-color: rgb(247, 64, 51) transparent transparent transparent;
  top: -80px;
  left: -30px;
}

.testimonials::after {
  border-width: 0 120px 150px 120px; /* Triangle bleu en bas à droite */
  border-color: transparent transparent rgb(247, 64, 51) transparent;
  bottom: -50px;
  right: -50px;
}

/* Virgule inversée */
.testimonials .background-comma {
  position: absolute;
  content: '';
  width: 300px; /* Taille de la virgule inversée */
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%); /* Crée une forme similaire à une virgule */
  z-index: 0; /* Place la virgule derrière le contenu */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg); /* Centre et oriente la virgule */
  opacity: 0.7; /* Ajoute un léger effet de transparence */
}

/* Texte des témoignages */
.testimonials h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff; /* Contraste pour le texte */
  position: relative; /* S'assure que le texte est au-dessus des formes */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 1; /* Assure que le texte est au-dessus des formes */
}

.testimonials h3::after {
  content: '';
  width: 70px;
  height: 4px;
  background: rgb(247, 64, 51);
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}
/* Container */
.testimonials .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* Individual Testimonial */
.testimonials .row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonials .row > div {
  flex: 1 1 calc(33.333% - 30px);
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .row > div:hover {
  transform: translateY(-12px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.testimonials .row > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgb(247, 64, 51);
  transition: width 0.4s ease;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 0;
}

.testimonials .row > div:hover::before {
  width: 100%;
}

/* Quote Icon */
.testimonials .fa-quote-left {
  font-size: 24px;
  color: rgb(247, 64, 51);
  margin-bottom: 20px;
  display: inline-block;
  background: #e6f7ff;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.testimonials .row > div:hover .fa-quote-left {
  background: #d4f0ff;
}

/* Card Body */
.testimonials .card-body {
  font-family: 'Nunito', sans-serif;
  padding: 10px 0;
}

.testimonials .card-text {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.testimonials .blockquote-footer {
  color: #666;
  font-size: 16px;
  font-style: italic;
  margin-top: 10px;
}

/* Avatar Image */
.testimonials .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 20px auto 10px;
  border: 3px solid rgb(247, 64, 51);
  display: block;
  transition: border-color 0.3s ease;
}

.testimonials .row > div:hover .avatar {
  border-color: #00d4ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
    background: #1b2127;  
    padding: 150px 35px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Empêche les formes de déborder */
  }
  .testimonials .row {
    flex-direction: column;
  }

  .testimonials .row > div {
    flex: 1 1 100%;
  }
}
/* Media query pour écran de 768px et moins */
@media (max-width: 768px) {
  #footer .footer {
    flex-direction: column; /* Arrange les colonnes en une seule colonne */
    align-items: center; /* Centrer les éléments */
  }

  .footer-column {
    flex: none;
    width: 100%; /* Chaque colonne prend toute la largeur */
    margin-bottom: 20px; /* Espacement entre les colonnes */
  }
}
