@import url("./base.css");





/**************** ACCUEIL ***************/

.swiper,
.swiper-wrapper,
.swiper-slide {
  height: 80vh;
}
.swiper-pagination {
    bottom: 80px !important;
    position: absolute;
    z-index: 10;
  }

  
  
  
  .home {
    position: relative;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    padding: 60px 40px;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
  }

  p.text {
    width: 70%;
  }


  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1500px;
   
    padding: 0 20px;
  }
  
  @media (min-width: 1024px) {
    .hero-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }
  
  .text-content {
    width: 100%;
    text-align: center;
  }
  
  @media (min-width: 1024px) {
    .text-content {
      text-align: left;
      width: 80%;
    }
  }

  
  h1 {
    
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 65px;
     font-weight: 600;
  }

  @media (max-height: 700px) {
    .home {
      
      height: 120vh;
      padding-top: 40px;
      padding-bottom: 40px;  /* pour la pagination */
    }

    .swiper-pagination {
      padding-top: 80px;
      bottom: 20px !important; /* ou 0 si tu veux qu'elle touche vraiment le bas */
    }
    .swiper,
.swiper-wrapper,
.swiper-slide {
  height: 700px;
}



    
    

  }
  

  
 
    h1 .highlight {
      color: var(--clr-orange);
    }
    h1 span {
        display: block;
    }
  
  
  .underline {
    height: 3px;
    width: 360px;
    background-color: var(--clr-orange); /* Secondary color */
    margin: 30px 0;
  }
  
 
  
  

    p {
      font-size: 20px;
      margin: 0 0 50px;
      line-height: 1.8;
      max-width: 100%;
      /* margin: 0 auto 30px; */
      font-family: var(--ff-primary);
    }
  
 
  

  
  
  
 

  .hero-content {
    padding-bottom: 100px; /* espace pour éviter le chevauchement avec les bullets */
  }
  
  /* Empêche les conflits quand l'écran est petit en réduisant un peu le padding et gérant les débordements */
  @media (max-height: 700px) {
    .home {
      height: auto;
      min-height: 100vh;
      padding-top: 40px;
      padding-bottom: 120px; /* pour la pagination */
    }
  
    .hero-content {
      gap: 20px;
      padding-bottom: 300px; /* un peu plus d’espace pour les bullets */
    }
  
    h1 {
      font-size: 42px; /* réducteur mais lisible */
    }
  
    p {
      font-size: 16px;
      line-height: 1.5;
    }
  
  }

  @media (max-width: 768px) {
 
    .text-content h1 span {
      display: inline;
    }

  
  }

   /* Responsivité */

@media (max-width: 1096px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 10px;
  }
.underline {
  display: none;
}
/* .swiper, */
/* .swiper-wrapper,
.swiper-slide {
  height: 60vh;
} */
  h1 {
    font-size: 40px; /* Ajustement pour mobile */
  }
h1 span {
  display: inline;
}
  p {
    font-size: 16px; /* Ajustement pour mobile */
  }



  .buttons .btn {
    font-size: 16px;
   
    width: 250px; /* Ajustement des boutons */
    margin:  0 auto;
  }

  p.text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 35px; /* Encore plus petit sur téléphone */
  }

  p {
    font-size: 14px; /* Réduction du texte */
    margin: 0 0 30px;
  }

  
}




/* Sur petits écrans (mobile portrait) */
@media (max-width: 480px) {
  .hero-content {
    gap: 20px;
    padding: 0 px;
    width: 100%;
  }

  h1 {
    font-size: 24px; /* Taille encore plus petite sur très petit écran */
  }
  h1 span {
    display:  inline;
  }

  p {
    font-size: 12px;
    margin: 0 0 20px;
  }

  .buttons .btn {
    font-size: 12px;
    padding: 8px 12px;

  }

  .text-content {
    width: 100%;
    text-align: center;
  }
}

  
 
  /******************* FEATURE   *********************/
  .features-section {
    background: linear-gradient(to right, #f88e20, #e37707);
    padding: 40px 20px;
    color: white;
    font-family: var(--ff-primary);
    position: relative
    ;
    z-index: 10;
    overflow: hidden;
  }
  
  .features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 16px;
    font-size: 16px;
    /* text-align: left; */
    width: 300px;
   

  }
  
  .feature-item p {
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
  }
  
  .icon-box img {
    width: 24px;
    height: 24px;
  }

  /* Ajustement des icônes sur mobile */
@media (max-width: 568px) {
  .features-container{
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
  }
 

  .with-divider::after  {
    display: none;
  }
 
}
  
  .with-divider {
    position: relative;
  }
  
  .with-divider::after {
    content: "";
    position: absolute;
    right: -30px;
    height: 60%;
    width: 1px;
    background-color: white;
    top: 20%;
  }

 
  
  /******************* ABOUT   *********************/

  .about-section {
    padding: 60px 40px;
    background-color: #fff;
    
    overflow: hidden;

  }
  
  .about-container {
    display: flex;
    max-width: 100%;
    margin: auto;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1 1 50%;
  }
  
  .about-text h2 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
   


    font-family: var(--ff-secondary);
  }
  
  .about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #414141;
    display: block;
    margin: 20px 0;
    font-family: var(--ff-primary);
    text-align: justify;

  }
  
  .about-cta {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: var(--ff-secondary);

  }
  
  .btn-primary {
    background: linear-gradient(90deg, #0647C5 0%, #0954E6 100%);

    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .btn-primary img {
    width: 30px;
    background-color: white;
    border-radius: 3px;
    padding: 3px;
  }
  
  .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    
    font-family: var(--ff-tertiary);
  }
  
  .avatar {
    background-color: #f4b066;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .avatar i {
    font-size: 30px;
    color: white;
  }
  
  .about-image {
    flex: 1 1 20%;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 12px;
    margin-top: -80px;
    
  }

  @media (max-width: 1400px) {

    .about-text p {
      font-size: 16px;
    }

  }

 

  @media (max-width: 1200px) {
      .about-container {
        flex-direction: column;
    align-items: center;
    justify-content: center;

      }

      .about-image img{
      width: 500px;
           margin: 0  auto;
          }
  }

  @media (max-width: 1024px) {
    .about-text h2 {
      font-size: 30px;
    }

    .about-text p {
      font-size: 16px;
    }
  }
  
  @media (max-width: 768px) {
    .about-section {
      padding: 60px 20px;
    }
    .about-text h2 {
      font-size: 24px;
      text-align: center;
    }
  
    .about-text p {
      font-size: 14px;
      text-align: justify;
    }
  
    .about-cta {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .btn-primary {
      width: 100%;
      justify-content: center;
    }
  
    .contact-info {
      flex-direction: row;
      justify-content: flex-start;
      width: 100%;
    }
  
    .about-image img {
      width: 100%;
      margin-top: 20px;
    }
  
    .about-container {
      padding: 0 20px;
    }
  }
  
  @media (max-width: 480px) {
    .about-text h2 {
      font-size: 20px;
    }
  
    .about-text p {
      font-size: 13px;
    }
  
    .btn-primary {
      padding: 10px 16px;
      font-size: 14px;
    }
  
    .avatar {
      width: 35px;
      height: 35px;
    }
  
    .avatar i {
      font-size: 16px;
    }
  }

  
  

  /******************* stats   *********************/


  
  .stats-section {
    background: url('../images/Asset Maisoft/prompt.png') no-repeat center center / cover;
    padding: 100px 20px;
    color: white;
    
    width: 100%;
    position: relative;

  }
  
  .stats-container {
    display: flex;
    
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    padding: 0 30px;
    margin: auto;
    position: relative;
    z-index: 5;
  }
  
  .stat-card {
    background-color: rgba(0, 58, 193, 0.8);
    border-radius: 10px;
    padding: 30px 20px ;
    width: 280px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  i.stat-icon {
    font-size: 50px;
    color: var(--clr-orange);
   
  }
  
  .stat-number {
    font-size: 30px;
    font-family: var(--ff-primary);
    margin-bottom: 8px;
  }
  .plus-sign {
   font-size: 30px;
   font-family: var(--ff-primary);
   margin-bottom: 8px;
  }

  .ite {
    display: flex;
    
    align-items: center;
  }
  
  
  .stat-label {
    font-size: 15px;
    font-family: var(--ff-secondary);
    color: #fff;
  }

  @media (max-width: 768px) {

    .stat-label {
      font-size: 14px;
    }

    .stat-number {
      font-size: 18px;
      font-family: var(--ff-primary);
      margin-bottom: 8px;
    }
    .plus-sign {
     font-size: 18px;
    }
  }
  
  
  /******************* maissoft-section   *********************/

  .maissoft-section {
    width: 100%;
  }
  
  .top-section {
    display: flex;
    padding: 40px 0 0 0;
    padding-right: 80px;
    background: #fff;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  
  }
  .image-container{
    width: 40%;
  }
  
  .image-container img {
    width: 100%;

  }
  
  .content {
    width: 70%;
    padding: 20px;
  }
  
  .content h2 {
    
    font-size: 36px;
    font-weight: 500;
    font-family: var(--ff-secondary);
    
  }

  
  .content p {
    font-size: 18px;
 font-weight: 500;
    color: var(--clr-grey);
    padding-top: 20px;
    font-family: var(--ff-primary);

  }
  .features-containers {
    background-color: white;
    padding: 30px 40px;
  border-radius: 4px;
 
    box-shadow: -6px 4px 4px 0px var(--clr-orange);
    margin-bottom: 100px;

  }

  .features-containers .esp{
    display: flex;
    align-items: flex-start;
   

  }
  
  .features-lists {
    font-size: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;

gap: 20px;
    font-weight: 500;
    font-family: var(--ff-primary);
  
    font-size: 18px;
    justify-content: center;

    
   
    line-height: 1.6;;
  }
  
  
  .pentest-section {
    display: flex;
    background-image: url("../images/Asset Maisoft/img.png");
    color: white;
    background-size: cover;
   background-repeat: no-repeat;
    padding:  60px 80px;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin: 0 80px;
  margin-top: -90px;
  position: relative;
z-index: 5;
   
  }
  
  .pentest-content {
    width: 50%;
  }

  .pentest-content h3{
    font-size: 45px;
    line-height: 40px;
    font-weight: 500;
    font-family: var(--ff-secondary);
  }


  
  .pentest-highlight {
    color: var(--clr-orange);
    

  }
  
  .pentest-content .team {
    font-family: var(--ff-secondary);
    font-size: 24px;
    margin-top: 10px;
    font-weight: 500;
 
  }
  
  .pentest-content .desc {
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.5;
    width: 75%;
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  .contact-btn,
  .about-btn {
    padding: 10px 20px;
    margin-right: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .contact-btn {
    background-color: #ffa500;
    color: white;
  }
  
  .about-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .pentest-image img {
    max-width: 300px;
    border-radius: 10px;
  }

  @media (max-width: 1420px) {

  .pentest-content {
    width: 80%;
  }

  
}

@media (max-width: 1024px) {
  
  .pentest-content {
    width: 100%;
  }
}

/* VERSION RESPONSIVE */
@media (max-width: 992px) {
  .top-section {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }

  .image-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .content {
    width: 100%;
    padding: 10px;
  }

  .content h2 {
    font-size: 28px;
    /* text-align: center; */
  }

  .content p {
    font-size: 16px;
    text-align: justify;
  }

  .features-containers {
    padding: 20px;
    margin-bottom: 60px;
  }

  .features-lists {
    grid-template-columns: 1fr;
    font-size: 16px;
  }

  .pentest-section {
    flex-direction: column;
    padding: 40px 20px;
    margin: 0 20px;
    margin-top: 0;
    text-align: center;
  }

  .pentest-content {
    width: 100%;
  }

  .pentest-content h3 {
    font-size: 32px;
    line-height: 36px;
  }

  .pentest-content .team {
    font-size: 20px;
  }

  .pentest-content .desc {
    width: 100%;
    font-size: 14px;
  }

 
  
}
@media (max-width: 768px) {
  .content h2{
    font-size: 30px;
    text-align: center;

  }
  .btn {
    width: 100%;
    max-width: 100%;
  

  }
}
@media (max-width: 640px) {
  .pentest-content .buttons { 
  font-size: 14px;
}
}
@media (max-height: 600px) {
  .swiper-pagination {
    bottom: 10px !important;
  }

  .pentest-section {
    padding: 30px 20px;
  }

  .pentest-content h2 {
    font-size: 26px;

  }

  .pentest-content .team,
  .pentest-content .desc {
    font-size: 14px;
  }
 
}


  /******************* SERVICES   *********************/

  .nos-services {
    padding: 60px 20px;
    text-align: center;
    font-family: var(--ff-secondary);
    background-color: #fff;
  }
  
  .services-title {
    font-size: 40px;
    font-family: var(--ff-secondary);
    font-weight: 500;
    margin-bottom: 10px;
  }
  
 
  
  .services-subtitle {
    max-width: 1300px;
 
    margin: 0 auto 50px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-grey);
    line-height: 1.6;
    font-family: var(--ff-primary);
    text-align: center;
  }
  
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

    .services-grid {
            display: grid;
        grid-template-columns: repeat(3, 1fr);
            justify-content: center;
            gap: 30px;
            max-width: 1500px;
            width: 100%;
            margin: 0 auto;
            padding: 0 50px;
        }

        .service-card {
      
       
          
          border-radius: 10px;
          background-color: #fff;
          transition: transform 0.3s ease;
          position: relative;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .card-img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 5px 5px 0  0;
        }

        .card-body {
          padding: 70px 16px 30px;
  position: relative;
  text-align: left;
  background: white;
  margin-top: -140px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px #00000040;
  height: 300px;


        }

        .icon-circle {
            position: absolute;
            top: -30px;
            right: 20px;
            background: linear-gradient(90deg, #F88E20 0%, #E37707 100%);

            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .icon-circle img {
            width: 40px;
            height: 40px;
        }

        .card-title {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-family: var(--ff-secondary);
            
            padding-right: 60px;
        }

        .card-text {
            font-size: 14px;
            font-weight: 400;
font-family: var(--ff-primary);
            margin-bottom: 20px;
            line-height: 1.5;
            padding-bottom: 20px;
        }

       

  /* Responsive design */
  @media (max-width: 1200px) {
    .services-grid {
      max-width: 1000px;
   
  grid-template-columns: repeat(2, 1fr);
    }

  }
@media (max-width: 768px) {
  .services-title {
    font-size: 30px;
  }

  .services-grid {
    max-width: 500px;
 
grid-template-columns: repeat(1, 1fr);
  }

}
  .card-body {
    padding: 60px 12px 25px;
    margin: -120px 10px 0;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    top: -25px;
    right: 15px;
  }

  .icon-circle img {
    width: 24px;
    height: 24px;
  }

  .card-title {
    font-size: 0.95rem;
    padding-right: 50px;
  }

  .card-text {
    font-size: 0.9rem;
  }




@media (max-width: 640px) {
  
  .services-title {
    font-size: 30px;
  }
  .services-subtitle {
    font-size: 16px;
  }
}

  /******************* TESTIMONIAL   *********************/
  
  /* Pagination bullets plus grandes */
  .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    background-color: #555;
    opacity: 0.6;
    margin: 0 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .swiper-pagination-bullet-active {
    background-color: #005eff;
    width: 36px;
    height: 36px;
    opacity: 1;
    transform: scale(1.2);
  }
  

/* Container swiper : assure qu’il laisse de l’espace en bas */
.testimonial-swiper {
  height: 70vh;
  position: relative;
  padding-bottom: 40px; /* espace pour pagination */
}

@media (max-height: 700px) {
  .testimonial-swiper {
    height: 600px;
  }
}



/* Pagination bien en dessous, centrée */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
}




  .testimonial{
    padding: 60px 40px;
    text-align: center;
    font-family: var(--ff-secondary);
    background-color: #fff;
  }
  
  .testimonial-title {
    font-size: 40px;
    font-family: var(--ff-secondary);
    font-weight: 500;
    margin-bottom: 10px;
  }
  
 
  
  .testimonial-subtitle {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding-bottom: 30px;
    
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-grey);
    line-height: 1.6;
    font-family: var(--ff-primary);
    text-align: center;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
max-width: 1500px;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    padding: 0 30px;
    margin: 30px auto;
  }
 
  .testimonial-card {

    margin: 80px auto;
    padding: 30px 20px 20px;
    background-color: #fff1e6;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px #00000080;
    background: #F88E201A;

    text-align: center;

    position: relative;
    height: 386px;
display: flex;
flex-direction: column;
justify-content: space-between;
  }

  .testimonial-card.color {
    background: #0954E61A;

  }
  
  .testimonial-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: -100px auto 15px;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background-color: #fff;
    
  }
  
  .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-name {
    font-family: var(--ff-secondary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .testimonial-text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    
  }
  
  .testimonial-stars {
    color: #f57c00;
    font-size: 1.2rem;
    margin-top: 15px;
    text-align: center;
  
  }

  .testimonial-stars img {
   opacity: 0.8;
  
  }

  @media screen and (max-width: 1370px) {
    .testimonial-card {
      height: 400px;
    }
  }

  @media screen and (max-width: 1070px) {

    .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);

    }

  }

  @media screen and (max-width: 1024px) {

 

    .testimonial-title {
      font-size: 32px;
    }
  
    .testimonial-subtitle {
      font-size: 18px;
      padding: 0 10px;
    }
  
   
  
    .testimonial-card {
    
      
      padding: 20px 15px;
    }
  
    .testimonial-img {
      width: 120px;
      height: 120px;
      margin-top: -80px;
    }
  
    .testimonial-name {
      font-size: 16px;
    }
  
    .testimonial-text {
      font-size: 15px;
      line-height: 1.8;
    }
  
    .testimonial-stars {
      font-size: 1rem;
    }
  }

  @media screen and (max-width: 768px) {

    .testimonial-grid {
      max-width: 500px;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 10px;

    }

    

  }
  
  @media screen and (max-width: 480px) {
    .testimonial-title {
      font-size: 26px;
    }
  
    .testimonial-subtitle {
      font-size: 16px;
      padding: 0 5px;
    }
  
    .testimonial-card {
      padding: 15px 10px;
    }
  
    .testimonial-text {
      font-size: 14px;
    }
  
    .testimonial-img {
      width: 80px;
      height: 80px;
      margin-top: -60px;
    }
  
    .testimonial-name {
      font-size: 15px;
    }
  
    .testimonial-stars {
      font-size: 0.9rem;
    }
  }
  
  

  /******************* DETAIL   *********************/

  
  .detail-section {
    display: flex;
    background-image: url("../images/Asset Maisoft/04.jpg");

    color: white;
    background-size: cover;
   background-repeat: no-repeat;
    padding:  60px 80px 120px;
    align-items: center;
    justify-content: space-between;
    
  margin-top: 30px;
  position: relative;
   
  }
  
  .detail-content {
    max-width: 80%;
    position: relative;
    z-index: 5;
  }

  .detail-content h3{

    font-size: 40px;
   text-transform: uppercase;
    font-weight: 500;
    /* font-family: var(--ff-secondary); */
    font-family: var(--ff-tertiary);

    margin-bottom: 50px;
   text-align: left;

  }


  
  .detail-highlight {
    color: var(--clr-orange);
    display: block;
    /* font-family: var(--ff-secondary); */

  }
  
 
  
  .detail-content .desc {
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.8;
    width: 75%;
    font-weight: 500;
    font-family: var(--ff-tertiary);

  }
  
  
  
  .contact-btn,
  .about-btn {
    padding: 10px 20px;
    margin-right: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .contact-btn {
    background-color: #ffa500;
    color: white;
  }
  
  .about-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .detail-image img {
    max-width: 300px;
    border-radius: 10px;
  }
  


  
/* Responsive pour tablettes */
@media (max-width: 1024px) {
  
  .detail-section {
    flex-direction: column;
    padding: 50px 30px;
    text-align: center;
  }

  .detail-content {
    max-width: 94%;
  }

  .detail-content h3 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .detail-content .desc {
    width: 100%;
    font-size: 15px;
    line-height: 2.2;
  }

}
@media (max-width: 640px) {
  .detail-content h3{
    font-size: 30px;
    
  }

  .detail-content .desc {
    text-align: justify;
  }

}

  /******************* PARTENAIRES   *********************/

  .partenaires {
    padding: 60px 20px;
    text-align: center;
    font-family: var(--ff-secondary);
    background-color: #fff;
  }
  
  .partenaires-title {
    font-size: 40px;
    font-family: var(--ff-secondary);
    font-weight: 500;
    margin-bottom: 10px;
  }
  
 
  
  .partenaires-subtitle {
    max-width: 1280px;
    margin: 0 auto 50px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-grey);
    line-height: 1.6;
    font-family: var(--ff-primary);
    text-align: center;
  }
  .carousel-container {
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    position: relative;
    padding: 50px 0;
    background: white;
    box-shadow: 4px 4px 4px 0px #00000040;
    box-shadow: 0px 4px 4px 0px #0000000F inset;
    border: 1px solid #DFD8D8;
    border-radius: 10px;
    margin: 0 auto;
    cursor: grab;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-out;
    gap: 40px;
    padding: 0 20px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.carousel-item {
    min-width: 225px;
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #DFD8D8;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
    pointer-events: none;
}

.carousel-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        padding: 10px 0;
    }

    .carousel-item {
        min-width: 150px;
        height: 75px;
    }
    .partenaires-title {
      font-size: 28px;
      
    }
    
   
    
    .partenaires-subtitle {
      font-size: 15px;
    }
  }

