/* logo.css */
.logo-img {
  height: 21px;   /* very small mobile */
  width: auto;
}

@media (min-width: 380px) {
  .logo-img {
    height: 28px;
  }
}


/* ≥400px (small devices) */

@media (min-width: 400px) {
  .logo-img {
    height: 30px;
  }
}

/* ≥768px (tablets) */
@media (min-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

/* ≥992px (desktops) */
@media (min-width: 992px) {
  .logo-img {
    height: 45px;
  }
}

/* ≥1200px (large desktops) */
@media (min-width: 1200px) {
  .logo-img {
    height: 50px;
  }
}





/* Mobile */
@media (max-width: 400px) {
  .slick-carousel .slide-item {
    height: 400px !important;   /* fixed mobile height */
    min-height: 400px !important;
    display: flex;
    align-items: center;   /* vertically center text */
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .slick-carousel .slide-item {
    height: 400px !important;   /* fixed mobile height */
    min-height: 400px !important;
    display: flex;
    align-items: center;   /* vertically center text */
    justify-content: center;
    flex-direction: column;
  }
}

/* Tablet/Desktop */
@media (min-width: 768px) {
  .slick-carousel .slide-item {
    height: 100vh;
    min-height: 100vh;
  }
}


/* Solution -> application service -> How We Work */

.process-timeline {
  display: flex;
  justify-content: space-between;  
  margin: 3rem auto;
  padding: 1rem;
  .step {
    text-align: left;
    position: relative;
    flex: 1;
    .number {
      font-size: 2rem;
      font-weight: 700;
      color: #e91e63;
    }

    h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0.3rem 0 1rem;
      color: #0b2653 ;
    }

    .dot {
      width: 14px;
      height: 14px;
      background: #e91e63;
      border-radius: 50%;
      margin: 0 auto;
      position: relative;      
      margin-left: 0%; 
    }

    .hline {
      height: 2px;
      background: #e91e63;
      margin: -0.5rem 0 0;

      &.dotted {
        background: none;
        height: 2px; 
        width: 100%;        
        background-image: repeating-linear-gradient(
          to right,
          #e91e63 0px,
          #e91e63 10px,   
          transparent 10px,
          transparent 20px 
        );
      }
    }    
    &:last-child .dot::after {
      display: none;
    }

    ul {      
      padding-left: 1.5rem;
      list-style: none;
      text-align: left;
      position: relative;     
      &::before {      
        content: "";
        position: absolute;
        bottom: 10px; 
        left: 6px;
        width: 2px;
        height: calc(100% - 10px);
        background: #e91e63;
      }

      li {        
        font-size: 0.95rem;
        color: #51668a;
        padding: 1rem 0 0 0;
        position: relative;
         &::before {
          content: "";
          position: absolute;
          left: -18px; 
          bottom: 9px;     
          width: 10px;  
          height: 2px;  
          background: #e91e63;
          transform: translateY(-50%); 
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;

    .step {
      text-align: left;
      flex: unset;
      margin-bottom: 2rem;

      .dot::after {
        display: none; 
      }

      ul {
        padding-left: 1.5rem;
      }
       .hline {
        display: none;
    }
    }
  }
}





