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

body {
    font-family: 'Poppins', 'sans-serif';
    
}




/* NAVBAR */

.navbar {
  /* background-color: transparent !important; */
  background-color: rgb(0, 16, 76);
}

.title-portfolio {
    color: green;
}

.btn-rdv {
  background-color: rgb(0, 148, 197);
  color: rgb(65, 0, 65);;
  padding: 7px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-rdv:hover {
  background-color: rgb(0, 119, 158); /* Couleur du bouton lorsqu'on clique */
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 1) !important; /* Fond complètement opaque et très sombre */
}

.modal-content {
  background: transparent !important; /* Fond transparent pour la modal */
  border: none;
  border-radius: 20px; /* Arrondi tous les coins */
  overflow: hidden; /* Évite que l'iframe dépasse */
  box-shadow: none;
}

.custom-modal {
  max-width: 500px; /* Ajuste la largeur */
  width: 90%;
}

.modal-body {
  padding: 0;
  border-radius: 20px 20px 20px 20px; /* Arrondi le bas */
  overflow: hidden;
}

.calendly-inline-widget {
  width: 100%;
  height: 600px; /* Ajuste selon besoin */
  border-radius: 0 0 20px 20px; /* Arrondi les coins inférieurs */
  overflow: hidden;
}

.btn-close-calendly {
  position: fixed;  /* Fixé sur la page */
  top: 20px;        /* Distance du haut */
  right: 20px;      /* Distance de la droite */
  z-index: 1055;    /* Plus haut que la modale */
  background: rgba(255, 255, 255, 0.8); /* Légère transparence */
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00b7b1, #00aeff); 
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}






/* VIDÉO DE PRÉSENTATION / TITRE */

.bullet_1,
.bullet_2,
.bullet_3, 
.bullet_4,
.bullet_5 {
  background: linear-gradient(135deg, #00b7b1, #00aeff); 
  padding: 10px;
  border-radius: 50px;
}

.video-presentation {
  background: radial-gradient(circle, rgba(0,74,150,1) 59%, rgba(0,130,198,1) 100%); 
  padding-bottom: 10px;
}

/* .reve {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  display: inline-block; 
} */

.btn-style {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 80px;
  background: #2c95ff;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.btn-style:hover {
  background: rgb(57, 176, 255);
}

.video-1 {
  position: relative;
  display: inline-block;
  width: 75%;
  padding-top: 60px;
  margin-bottom: 50px;
  border-radius: 12px; /* Coins arrondis */
  padding: 3px; /* Espace entre la bordure et la vidéo */
  background: #fff; /* Dégradé de couleurs */
  -webkit-box-shadow: 0px 1px 27px 0px #000000; 
  box-shadow: 0px 1px 27px 0px #000000;
}

/* Appliquer un arrondi et assurer l'ajustement de l'iframe */
.video-1 iframe {
  border-radius: 12px;
  display: block;
  width: 100%;
  height: 100%;
}

.btn-projects {
  padding-top: 100px;
}


.btn-rdv-2 {
  background: #2c95ff;
  color: rgb(65, 0, 65);;
  padding: 20px;
  margin: 40px 0 70px 0;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-rdv-2:hover {
  background: rgb(57, 176, 255); /* Couleur du bouton lorsqu'on clique */
}



/* QUI SUIS-JE ? */

.presentation {
  background: #e1f9ff;
}

.title-presentation, 
.title-contact, 
.temoignages-client,
.title-work {
  padding: 160px 0 0 0; 
}

.photo-presentation {
  width: 30%;
  border-radius: 20px;
  margin: 80px 0 170px 100px;
  -webkit-box-shadow: 0px 1px 27px 0px #000000; 
  box-shadow: 0px 1px 27px 0px #000000;
}

.description {
  padding: 80px 50px 0 50px;
  font-size: 20px;
  text-align: justify;
  max-width: 600px;
}



/* MES PROJETS */

.projects {
  /* background: radial-gradient(circle, rgba(0,74,150,1) 59%, rgba(0,130,198,1) 100%); */
  padding: 80px 0;
}

.logo-play {
  position: absolute;
  width: 60px;
  z-index: 10;
}

.video-project {
  width: 100%;
  transition: .2s ease-in-out 0s;
  cursor: pointer;
}


.video-project:hover {
  transform: scale(1.04);
  -webkit-box-shadow: 0px 1px 27px 0px #000000; 
  box-shadow: 0px 1px 27px 0px #000000;
}

/* Supprime la scrollbar */
.modal {
  overflow: hidden !important;
}

/* Assure que l'iframe prend tout l'espace */
.modal-body .ratio {
  width: 100%;
  height: 100%;
}

.modal-fullscreen .modal-content {
  width: 100%;
  height: 80%;
}

.modal-fullscreen .modal-body {
  overflow-y: hidden !important;
}

.ytp-cued-thumbnail-overlay-image {
  border-radius: 3px;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}


.modal-content {
  position: relative;
  margin: 5% auto;
  padding: 0;
  width: 100%;
  max-width: 1400px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 700px;
  height: 80%;
}

.prev, .next {
  position: absolute;
  top: 50%;
  width: auto;
  background: linear-gradient(135deg, #001b1a, #000000); 
  border: none;
  color: white;
  padding: 5px;
  font-size: 24px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(255, 65, 108, 0.3);
  margin-top: -50px;
  font-weight: bold;
  user-select: none;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}






/* MES CLIENTS */

.customers {
  background: #e1f9ff;
}

.btn-customers {
  background: linear-gradient(135deg, #00b7b1, #00aeff); 
  margin: 0 0 90px 0;
}

.btn-customers:hover {
  background: #00cdc6;
  transition: background 0.3s ease-in-out;
}






/* CONTACT */

.contact{
  background: rgb(0,74,150);
  background: radial-gradient(circle, rgba(0,74,150,1) 59%, rgba(0,130,198,1) 100%); 
}

.timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.title-step {
  padding: 80px 0 100px 0;
}

/* Étapes */
.step {
  display: flex;
  align-items: center;
  position: relative;
}

/* Cercles */
.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #88fffb, #00aeff);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

/* Effet lumineux sur l'étape active */
.step.active .circle {
  background: linear-gradient(135deg, #88fffb, #00aeff);
  box-shadow: 0 0 15px rgba(155, 117, 196, 0.8);
  color: white;
  font-size: 20px;
}

/* Texte des étapes */
.content {
  margin-left: 15px;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.3s ease-in-out;
}

/* Lignes verticales */
.line {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, #88fffb, #00aeff);
  margin-left: 24px;
}

/* Animation Hover */
.step:hover .circle {
  transform: scale(1.1);
  background: #00cdc6;
}

.calendly-inline-widget {
  width: 90%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white; /* Ajout d'un fond pour bien voir les arrondis */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Ombre pour un effet plus propre */
}

.calendly-inline-widget iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
}




/* FOOTER */

.footer {
  background-color: rgb(0, 16, 76);
}

.social-network li {
  display: inline-block;
}










/* RESPONSIVE DESIGN */

.navbar-toggler {
  background: linear-gradient(180deg, #88fffb, #00aeff);
}



@media (max-width: 991px) { 

  .container {
    display: flex;
    flex-direction: column;
  }

  .title-step {
    margin: auto;
    align-items: center;
  }

  .calendly {
    margin-top: 50px;
  }

  .social-network li {
    display: inline-block;
  }

  .social-network ul  {
    margin-left: 90px;
  }

}



@media (max-width: 960px) { 

  .title-presentation {
    padding-bottom: 50px;
  }

  .presentation-description {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .photo-presentation {
    margin: auto;
  }

  .description {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0 40px 0;
    text-align: justify;
    max-width: 600px;
  }

}



@media (max-width: 780px) {
  
  .title-presentation {
    display: flex;
    justify-content: center;
    padding: 90px 15px 0 15px;
  }

  .title-presentation-2 {
    text-align: justify;
    max-width: 600px; /* Limite la largeur pour un meilleur rendu */
    margin: auto; /* Centre le texte horizontalement */
    font-size: 18px;
    line-height: 1.6;
    padding: 0 15px 0 15px;
  }
}



@media (max-width: 780px) { 
  
  .title-presentation {
    padding-bottom: 50px;
  }

}


@media (max-width: 768px) { 

  .list {
    margin: 20px 90px;
  }

}


@media (max-width: 757px) { 

  .bullet-points,
  .bullet-points-2 {
    display: flex;
    flex-direction: column;
  }

  .bullet_2 {
    width: 185px;
    height: 45px;
    margin-left: 29px;
  }

  .bullet_3 {
    width: 205px;
    height: 45px;
    margin-left: -69px;
  }

  .bullet_4 {
    margin-top: -8px;
    width: 280px;
    height: 45px;
  }

  .bullet_5 {
    width: 245px;
    height: 45px;
    margin-left: 65px;
  }

}



@media (max-width: 730px) {  

  .customer-testimonial-subtitle {
    padding: 80px 40px 40px 40px;
  }

}



@media (max-width: 650px) { 

  .description {
    padding: 80px 40px 40px 40px;
    text-align: justify;
  }

}


@media (max-width: 600px) { 

  .btn-rdv-2 {
    padding: 10px;
    font-size: 15px;
  }

}


@media (max-width: 500px) { 

  .title-step {
    padding: 80px 40px 40px 40px;
    text-align: justify;
  }

  .step, .line {
    display: none;
  }

  .btn-rdv-2 {
    padding: 10px;
    font-size: 10px;
  }

}


@media (max-width: 418px) { 

  .title-email {
    font-size: 15px !important;
  }

  .social-network li {
    font-size: 10px;
  }

}


@media (max-width: 366px) { 

  .btn-rdv-2 {
    padding: 8px;
    font-size: 8px;
  }

  .social-network li {
    font-size: 5px;
  }
  

}