/* About page card section slider */
.slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  transition: transform 0.5s ease;
  width: max-content;
}

.slide-card {
  flex-shrink: 0;
  width: 280px !important;
}
#prevBtn,
#nextBtn {
  transition: all 0.3s ease;
}

#prevBtn:hover,
#nextBtn:hover {
  background: #e4e4e4 !important; 
  color: #808080;
}


@media (max-width: 1024px) {
  .slider-wrapper {
    max-width: 750px;
  }
  .slide-card {
    width: 289px !important;
  }
}
@media (max-width: 768px) {
  .slider-wrapper {
    max-width: 330px;
    margin: 0 auto;
    overflow: hidden;
  }

  .slide-card {
    width: 260px !important; 
    margin-right: 15px !important;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .slider-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.4s ease;
  }
}
/* progress */
.progress-section {
  padding: 60px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.progress-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 500px;
}

.progress-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.progress-item .bar {
  width: 100%;
  height: 6px;
  background: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
}

.progress-item .fill {
  height: 100%;
  background: #1EACC7;
  border-radius: 4px;
}

.progress-right {
  flex: 1.2;
  max-width: 600px;
  margin-top: -8px;
}

.progress-right h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.progress-right p {
  font-size: 14px;
  line-height: 1.7;
  color: #5c5c5c;
}

@media (min-width: 1025px) {
    .slider-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 55px;
        height: 100%;
        background: linear-gradient(90deg, transparent, #ffffff);
        pointer-events: none;
        z-index: 2;
    }
}
@media (max-width: 1100px) {
  .progress-container {
    gap: 40px;
    max-width: 900px;

  }
  
  .progress-right h2 {
    font-size: 28px;
  }
  
}

@media (max-width: 992px) {
  .progress-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 700px;
        flex-direction: column-reverse;

  }

  .progress-left,
  .progress-right {
    max-width: 100%;
    width: 100%;
  }

  .progress-right h2 {
    font-size: 26px;
    text-align: center;
  }

  .progress-right p {
    text-align: justify;
  }
}

@media (max-width: 768px) {
  .progress-section {
    padding: 40px 0;
  }

  .progress-container {
    padding: 0 15px;
    max-width: 100%;
  }

  .progress-right h2 {
    font-size: 24px;
    text-align: left;
  }

  .progress-container {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .progress-left {
    gap: 20px;
  }

  .progress-item h4 {
    font-size: 13px;
  }

  .progress-item .bar {
    height: 8px; 
  }
}

@media (max-width: 480px) {
  .progress-container {
    padding: 0 10px;
  }
  
  .progress-item h4 {
    font-size: 12px;
    flex-direction: column;
    gap: 5px;
  }
  
  .progress-item .bar {
    height: 10px;
  }
  
  .progress-right h2 {
    font-size: 22px;
  }
  
  .progress-right p {
    font-size: 14px;
  }
}