/* تعریف فونت لوکال - وزن معمولی */
@font-face {
  font-family: 'IRANSans';
  src: url('https://stylei.ir/wp-content/uploads/IRANSansWeb.woff2') format('woff2'),
       url('https://stylei.ir/wp-content/uploads/IRANSansWeb.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* تعریف فونت لوکال - وزن پررنگ */
@font-face {
  font-family: 'IRANSans';
  src: url('https://stylei.ir/wp-content/uploads/IRANSansWeb_Bold.woff2') format('woff2'),
       url('https://stylei.ir/wp-content/uploads/IRANSansWeb_Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

.section-5-wrapper .section-five {
  padding: 40px 5px;
  font-family: 'IRANSans', sans-serif;
  text-align: center;
  --icon-size: 29px;
}

.section-5-wrapper .section-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  font-family: 'IRANSans', sans-serif;
}

.section-5-wrapper .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #00BFFF;
  border-radius: 2px;
}

.section-5-wrapper .highlight-container {
  max-width: 100%;
  margin: 0 auto;
}

.section-5-wrapper .image-slider {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 15px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-5-wrapper .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.section-5-wrapper .slide.active {
  opacity: 1;
}

.section-5-wrapper .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.section-5-wrapper .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px;
}

.section-5-wrapper .benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px;
}

.section-5-wrapper .benefit-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E5E4E2;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  z-index: 1;
}

.section-5-wrapper .benefit-card.active {
  opacity: 1;
}

.section-5-wrapper .benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.section-5-wrapper .benefit-icon {
  margin-left: 15px;
  opacity: 0;
  z-index: 2;
}

.section-5-wrapper .benefit-icon img {
  width: var(--icon-size);
  height: var(--icon-size);
}

.section-5-wrapper .benefit-card.active .benefit-icon {
  opacity: 1;
  transform: scale(1.1);
}

.section-5-wrapper .benefit-text {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-align: right;
  margin: 0;
  font-family: 'IRANSans', sans-serif;
  z-index: 2;
  flex: 1;
}

.section-5-wrapper .progress-line {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: #00BFFF;
  border-radius: 2px;
  opacity: 0;
  z-index: 2;
}

.section-5-wrapper .cta-btn {
  background: #00BFFF;
  color: #FFF;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'IRANSans', sans-serif;
  cursor: pointer;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-5-wrapper .cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 196, 180, 0.3);
}

.section-5-wrapper .cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.section-5-wrapper .cta-btn:hover::before {
  left: 100%;
}

@media (min-width: 768px) {
  .section-5-wrapper .section-five {
    padding: 50px 5px;
    --icon-size: 31px;
  }
  .section-5-wrapper .section-title {
    font-size: 32px;
  }
  .section-5-wrapper .image-slider {
    height: 300px;
  }
  .section-5-wrapper .highlight-container {
    max-width: 700px;
  }
  .section-5-wrapper .benefit-text {
    font-size: 16px;
  }
  .section-5-wrapper .cta-btn {
    font-size: 16px;
    padding: 14px 30px;
  }
}

@media (min-width: 1024px) {
  .section-5-wrapper .section-five {
    padding: 60px 5px;
    --icon-size: 33px;
  }
  .section-5-wrapper .section-title {
    font-size: 36px;
  }
  .section-5-wrapper .image-slider {
    height: 400px;
  }
  .section-5-wrapper .highlight-container {
    max-width: 900px;
  }
  .section-5-wrapper .benefit-text {
    font-size: 18px;
  }
  .section-5-wrapper .cta-btn {
    font-size: 18px;
    padding: 16px 35px;
  }
}