.network-container {
    background-color: #FFFFFF;
    width: 100%;
    padding: 80px 0px;
}

.network-content {
    max-width: 1400px;
    margin: 0;
    display: flex;
    align-items: flex-start;
    background: transparent;
    gap: 5 0px;
}

/* Map Section */
.network-map {
    flex: 1;
    display: flex;
    background: none;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.network-map img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}
.network-map svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    background-color: white;
}

/* Text Section */
.network-text {
    flex: 1;
    display: flex;
    background: transparent;
    flex-direction: column;
    background: transparent;
    gap: 10px;
}

.network-title {
    font-size: 40px;
    font-weight: 700;
    background: transparent;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.network-description {
    font-size: 16px;
    background: transparent;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.network-button {
    background-color: #FF802B;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    border-radius: 30px;
    margin-top: 20px;
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 128, 43, 0.3);
    align-self: flex-start;
}

.network-button:hover {
    background-color: #e6721f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 128, 43, 0.4);
}

.network-button:active {
    transform: translateY(0);
}
.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    background: none;
}

.contact-form input.error,
.contact-form textarea.error {
    border: 1px solid #ff4444;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.stat-card1, .stat-card2, .stat-card3, .stat-card4 {
  --mouse-x: 50%;
  --mouse-y: 50%;
  transition: background 0.3s ease;
}

.stat-card1 {
  background: radial-gradient(
    circle 200px at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.3),
    #E0EFFF 50%
  ) !important;
  cursor: pointer;
}

.stat-card2 {
  background: radial-gradient(
    circle 200px at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.3),
    #FFF4E9 50%
  ) !important;
  cursor: pointer;
}

.stat-card3 {
  background: radial-gradient(
    circle 200px at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.3),
    #F3F3F3 50%
  ) !important;
  cursor: pointer;
}

.stat-card4 {
  background: radial-gradient(
    circle 200px at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.3),
    #F8F1FF 50%
  ) !important;
  cursor: pointer;
}
/* ========================================
   RESPONSIVE POUR DESKTOP LARGE (> 1400px)
   ======================================== */
@media (min-width: 1400px) {
    .network-container {
        padding: 100px 0px;
    }
.network-map svg {
        max-width: 650px;
    }
    .network-content {
        max-width: 1500px;
        gap: 100px;
    }

    .network-map img {
        max-width: 650px;
    }

    .network-title {
        font-size: 44px;
    }

    .network-description {
        font-size: 17px;
    }

    .network-button {
        font-size: 19px;
        padding: 17px 45px;
    }
}

/* ========================================
   RESPONSIVE POUR DESKTOP (1024px - 1399px)
   ======================================== */
@media (max-width: 1399px) and (min-width: 1024px) {
    .network-container {
        padding: 80px 0px;
    }

    .network-content {
        gap: 60px;
    }
 .network-map svg {
        max-width: 550px;
    }
    .network-map img {
        max-width: 550px;
    }
}

/* ========================================
   RESPONSIVE POUR TABLETTE (768px - 1023px)
   ======================================== */
@media (max-width: 1023px) and (min-width: 768px) {
    .network-container {
        padding: 70px 40px;
    }

    .network-content {
        gap: 50px;
    }
    .network-map svg {
        max-width: 470px;
    }
    .network-map img {
        max-width: 470px;
    }

    .network-title {
        font-size: 36px;
    }

    .network-description {
        font-size: 15px;
    }

    .network-button {
        font-size: 17px;
        padding: 15px 38px;
    }
}

/* ========================================
   RESPONSIVE POUR TABLETTE PETITE (600px - 767px)
   ======================================== */
@media (max-width: 767px) and (min-width: 600px) {
    .network-container {
        padding: 60px 30px;
    }

    .network-content {
        flex-direction: column;
        gap: 40px;
    } 
     .network-map svg {
        max-width: 100%;
    }

    .network-map {
        width: 100%;
    }

    .network-map img {
        max-width: 100%;
    }

    .network-text {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .network-title {
        font-size: 32px;
    }

    .network-description {
        font-size: 15px;
    }

    .network-button {
        font-size: 16px;
        padding: 14px 35px;
    }
}

/* ========================================
   RESPONSIVE POUR MOBILE (480px - 599px)
   ======================================== */
@media (max-width: 599px) and (min-width: 480px) {
    .network-container {
        padding: 50px 25px;
    }
 .network-map svg {
        max-width: 100%;
    }
    .network-content {
        flex-direction: column;
        gap: 35px;
    }

    .network-map {
        width: 100%;
    }

    .network-map img {
        max-width: 100%;
    }

    .network-text {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .network-title {
        font-size: 28px;
    }

    .network-description {
        font-size: 15px;
    }

    .network-button {
        font-size: 16px;
        padding: 14px 35px;
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   RESPONSIVE POUR MOBILE STANDARD (320px - 479px)
   ======================================== */
@media (max-width: 479px) {
    .network-container {
        padding: 45px 20px;
    }
 .network-map svg {
        max-width: 100%;
    }
    .network-content {
        flex-direction: column;
        gap: 30px;
    }

    .network-map {
        width: 100%;
    }

    .network-map img {
        max-width: 100%;
    }

    .network-text {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 18px;
    }

    .network-title {
        font-size: 26px;
    }

    .network-description {
        font-size: 14px;
    }

    .network-button {
        font-size: 15px;
        padding: 13px 30px;
        width: 100%;
    }
}

/* ========================================
   RESPONSIVE POUR TRÃˆS PETIT MOBILE (< 320px)
   ======================================== */
@media (max-width: 319px) {
    .network-container {
        padding: 40px 15px;
    }
     .network-map svg {
        max-width: 100%;
    }
    .network-content {
        flex-direction: column;
        gap: 25px;
    }

    .network-map {
        width: 100%;
    }

    .network-map img {
        max-width: 100%;
    }

    .network-text {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 15px;
    }

    .network-title {
        font-size: 24px;
    }

    .network-description {
        font-size: 13px;
    }

    .network-button {
        font-size: 14px;
        padding: 12px 25px;
        width: 100%;
    }
}

/* ========================================
   RESPONSIVE POUR MODE PAYSAGE MOBILE
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .network-container {
        padding: 40px 20px;
    }

    .network-content {
        flex-direction: row;
        gap: 40px;
    }
 
    .network-map img {
        max-width: 750px;
    } 
    .network-map svg {
        max-width: 750px;
    }
    .network-title {
        font-size: 26px;
    }

    .network-description {
        font-size: 13px;
    }

    .network-button {
        font-size: 14px;
        padding: 10px 30px;
    }

    .network-text {
        text-align: left;
        align-items: flex-start;
    }
}

.contact-section {
  align-items: center;
  background: #fff1e4;
  border-radius: 30px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 60px auto;
  max-width: 1400px;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 1400px) and (min-width: 1000px) {
  .contact-section {
    margin: 60px 20px;
    max-width: calc(100% - 40px);
  }
}

.contact-left {
    flex: 1 1
}

.contact-left h2 {
    color: #000;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px
}

.contact-left h2,
.contact-left p {
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 40px
}

.contact-left p {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px
}

/* Formulaire */
.contact-right {
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px #00000014;
    display: grid;
    flex: 1 1;
    margin-right: 40px;
    padding: 50px;
    z-index: 1
}

.contact-form {
  display: flex;
  background: none;
  flex-direction: column;
  gap: 15px;
}
.form-group{
  background: none;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: none;
  padding: 14px 16px;
  background-color: #F7F7F7;
  border: none;
  outline: none;
  border-radius: 10px;
  color: black;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form button {
  background-color: #ff802b;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #e6721f;
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .contact-section {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center
    }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left p {
    font-size: 16px;
  }

  .contact-image {
    height: auto;
    max-width: 320px;
    width: 100%
    }

  .contact-image {
    margin: 0 auto;
    }

  .contact-right {
    margin-top: 0px;
    margin-left:auto;
  }
  .contact-section{
    gap: 0px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 30px 20px;
  }

  .contact-left h2 {
    font-size: 26px;
  }

  .contact-left p {
    font-size: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  .contact-form button {
    font-size: 15px;
    padding: 12px 0;
  }
}

@media (max-width:480px){
  .animate{
    gap: 0px;
    padding: 0px auto;
  }
  .contact-right{
    margin-top: 0px;
  }
}





























.stats-testimonial-section {
  padding: 60px 20px;
  background-color: white;
}

.container {
  max-width: 1200px;
  background: transparent;
  margin: 0 auto;
}

/* Header Content */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: transparent;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.left-content {
  flex: 1;
  background: transparent;
  min-width: 300px;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  background: transparent;
  margin-bottom: 10px;
  line-height: 1.2;
}

.subtitle {
  font-size: 20px;
  color: #666;
  background: transparent;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: transparent;
  gap: 20px;
  flex: 1;
  min-width: 400px;
}

.stat-card1 {
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  background:#E0EFFF;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(199, 108, 108, 0.08);
}
.stat-card2 {
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  background:#FFF4E9;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.stat-card3 {
  padding: 20px;
  min-height: 109px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  background:#F3F3F3;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.stat-card4 {
  padding: 20px;
  border-radius: 12px;
  min-height: 109px;
  display: flex;
  align-items: center;
  background:#F8F1FF;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.stat-icon {
  font-size: 32px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 10px;
  background: transparent;
}
.stat-info{
    background: transparent;
}
.stat-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 0 5px 0;
  background: transparent;
}

.stat-info p {
  font-size: 14px;
  background: transparent;
  color: #666;
  margin: 0;
}

/* Testimonial Card */
.testimonial-card {
  background: #e8e8e8;
  border-radius: 20px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.testimonial-photo {
  flex-shrink: 0;
  background: none;
}

.photo-frame {
  width: 250px;
  height:250px;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
  background: none;
}

.testimonial-text {
  font-size: 28px;
  font-style: italic;
  color: #000;
  background: none;
  line-height: 1.6;
  margin: 0;
}

/* Clients Section */
.clients-section {
  text-align: center;
  background: none;
}

.clients-title {
  font-size: 36px;
  font-weight: 700;
  background: none;
  color: #000;
  margin-bottom: 10px;
}

.clients-subtitle {
  font-size: 20px;
  margin-top: 20px;
  color: #666;
  margin-bottom: 40px;
  background: none;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: none;
  gap: 30px;
}

.clients-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: none;
  transition: all 0.3s ease;
}

.clients-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
   .line {
        display: none
    }
  
  .contact-left {
        padding-bottom: 0
    }

  .header-content {
    flex-direction: column;
  }
  
  .stats-grid {
    min-width: 100%;
  }
  
  .main-title {
    font-size: 36px;
  }
  
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .clients-logos {
    gap: 20px;
  }
  
  .clients-logos img {
    height: 40px;
  }
}
@media (max-width:450px){
  .stats-grid{
    grid-template-columns: repeat(1,1fr)
  }
}





/* Dans contact.css, ajoutez ces styles pour le Vector1 */

.network-container {
    background-color: #FFFFFF;
    width: 100%;
    padding: 80px 0px;
    position: relative; /* Important pour positionner le vector */
}

.network-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    background: transparent;
    gap: 50px;
    position: relative; /* Important pour le contexte de positionnement */
}

/* Style pour le Vector1 */
.vector1 {
    position: absolute;
    right: 0;
    bottom: -50px; /* Ajustez cette valeur selon vos besoins */
    width: 150px; /* Ajustez la taille selon vos besoins */
    height: auto;
    z-index: 1; /* Pour qu'il soit derriÃ¨re le contenu */
    max-height: 480px;
    pointer-events: none; /* Pour ne pas interfÃ©rer avec les clics */
}

/* Assurez-vous que le texte reste au-dessus */
.network-text {
    flex: 1;
    display: flex;
    background: transparent;
    flex-direction: column;
    background: transparent;
    gap: 10px;
    position: relative;
    z-index: 2; /* Pour rester au-dessus du vector */
}

/* Responsive pour le vector */
@media (max-width: 1023px) {
    .vector1 {
        width: 120px;
        bottom: -40px;
    }
    .line {
        display: none
    }
}

@media (max-width: 767px) {
    .vector1 {
        width: 100px;
        bottom: -30px;
        right: 0px;
    }
    .clients-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur tablette */
    gap: 15px;
    padding: 0 15px;
  }
  
  .clients-logos img {
    height: 35px;
  }
  
  .clients-title {
    font-size: 30px;
  }
  
  .clients-subtitle {
    font-size: 18px;
  }

  .line {
        height: 250px;
        left: -10px
    }
}

@media (max-width: 479px) {
    .vector1 {
        width: 80px;
        bottom: -20px;
        right: 0px
    }
    .clients-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur mobile */
    gap: 10px;
    padding: 0 10px;
  }
  
  .clients-logos img {
    height: 28px;
  }

  .line {
        height: 200px;
        left: 0
    }
}

@media (max-width:320px){
      .clients-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur trÃ¨s petit mobile */
    gap: 8px;
    padding: 0 5px;
  }
  
  .clients-logos img {
    height: 22px;
  }
}

/* Positionner le conteneur en relatif */
.contact-left {
  position: relative;
}

.line {
    bottom: 0;
    height: 600px;
    left: 0;
    margin: 0;
    position: absolute;
    width: auto;
    z-index: 1
}


.contact-image {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-height: 400px;
    max-width: 500px;
    position: relative;
    z-index: 2
}

/* Responsive for Contact Section */
@media (max-width: 1024px) {
  .contact-section {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center
    }

  .contact-section.animate {
    max-height: none;
  }

  .contact-left {
    width: 100%;
    min-height: auto;
    padding-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .contact-left h2 {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
    text-align: left;
  }

  .contact-left p {
    margin-left: 15px;
    margin-right: 15px;
    text-align: left;
  }

  /* Girl image - relative position on mobile */
  .contact-image {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    max-height: 280px;
    max-width: 100%;
    width: auto;
    margin: 15px auto 0 auto;
    display: block;
    z-index: 2;
  }

  .line {
        height: 300px;
        left: -20px
    }

  .contact-right {
    width: calc(100% - 20px);
    margin: 1px 2px;
    padding: 30px 25px;
    max-width: none;
    border-radius: 15px;
  }
}

@media (max-width: 768px) {
  .contact-section {
        padding: 30px 20px
    }

  .contact-left h2 {
        font-size: 26px
    }

    .contact-left p {
        font-size: 15px
    }

  .contact-left {
        padding-bottom: 0
    }

  .contact-image {
    max-height: 240px;
    margin-top: 10px;
  }

 .line {
        height: 250px;
        left: -10px
    }

  .contact-right {
    padding: 25px 20px;
    /*margin: 5px 10px;*/
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 12px 0;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 15px 10px;
    margin: 25px 10px;
    border-radius: 15px;
    /*gap: 10px;*/
  }

  .contact-left h2 {
    font-size: 20px;
    margin-left: 10px;
  }

  .contact-left p {
    font-size: 12px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .contact-image {
    max-height: 200px;
    margin-top: 8px;
  }

  .line {
        height: 200px;
        left: 0
    }

  .contact-right {
    padding: 20px 15px;
    /*margin: 5px 5px;*/
  }
}
@media (max-width: 380px) {
  .contact-section {
    padding: 12px 8px;
    margin: 20px 8px;
  }

  .contact-left h2 {
    font-size: 18px;
  }

  .contact-left p {
    font-size: 11px;
  }

  .contact-image {
    max-height: 180px;
  }

  .line {
    max-height: 150px;
    opacity: 0.35;
  }

  .contact-right {
    padding: 18px 12px;
  }
}
/* Ajoutez ces animations dans contact.css */

/* Animation pour la section network */
.network-container {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.network-map {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.network-text {
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.4s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vector1 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animation pour la section contact */
.contact-section {
    opacity: 0;
    transition: opacity .8s ease-out, transform .8s ease-out
}

.contact-section.animate {
    animation: scaleIn .8s ease-out forwards;
    opacity: 1
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}
.contact-left {
    position: relative
}

.contact-section.animate .contact-left {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .2s
}

.contact-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.contact-section.animate .contact-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .4s
}

/* Animation pour la section stats */
.stats-testimonial-section {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.stats-testimonial-section.animate {
    opacity: 1;
}

.header-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.stats-testimonial-section.animate .header-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.stat-card1, .stat-card2, .stat-card3, .stat-card4 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.stats-testimonial-section.animate .stat-card1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.stats-testimonial-section.animate .stat-card2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.stats-testimonial-section.animate .stat-card3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.stats-testimonial-section.animate .stat-card4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.testimonial-card {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
}

.stats-testimonial-section.animate .testimonial-card {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.7s;
}

.clients-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.stats-testimonial-section.animate .clients-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}
.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: none;
  gap: 30px;
}
.clients-logos img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: none;
  opacity: 0;
  transform: scale(0.8);
  filter: grayscale(100%);
  cursor: pointer;
  transition: all 0.6s ease-out;
}
.stats-testimonial-section.animate .clients-logos img {
    opacity: 1;
    transform: scale(1);
}

.stats-testimonial-section.animate .clients-logos img:nth-child(1) { transition-delay: 0.5s; }
.stats-testimonial-section.animate .clients-logos img:nth-child(2) { transition-delay: 0.7s; }
.stats-testimonial-section.animate .clients-logos img:nth-child(3) { transition-delay: 0.9s; }
.stats-testimonial-section.animate .clients-logos img:nth-child(4) { transition-delay: 1.1s; }
.stats-testimonial-section.animate .clients-logos img:nth-child(5) { transition-delay: 1.2s; }
.stats-testimonial-section.animate .clients-logos img:nth-child(6) { transition-delay: 1.3s; }
.stats-testimonial-section.animate .clients-logos img:nth-child(7) { transition-delay: 1.4s; }
.stats-testimonial-section.animate .clients-logos img:nth-child(8) { transition-delay: 1.7s; }
.stats-testimonial-section.animate .clients-logos img:hover{
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.2s ease; 
  transition-delay: 0.1s;
}

@media (max-width: 767px) {
  .clients-logos {
        grid-gap: 15px;
        display: grid !important;
        gap: 15px;
        grid-template-columns: repeat(4, 1fr) !important;
        padding: 0 15px;
        align-items: flex-start;
        justify-items: end;
        align-content: flex-start;
        justify-content: center;
  }
  
  .clients-logos img {
    height: 32px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .clients-logos {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px;
    padding: 0 10px;
    justify-items: center;
    align-items: center;
  }
  
  .clients-logos img {
    height: 28px;
    margin: 0 auto;
  }
  
  .client4{
    scale: 1.3;
  }
  .client5{
    scale: 1.5;
  }
}
@media (max-width: 320px) {
  .clients-logos {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px;
    padding: 0 5px;
    justify-items: center;
    align-items: center;
  }
  
  .clients-logos img {
    height: 22px;
    margin: 0 auto;
  }
}

.contact-container{
  background:none;
}
