    /* Index Slide 1 */

    .slideshow-container {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
      color: white;
	  border-top: 7px solid #edaf05;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide.active {
      opacity: 1;
      z-index: 2;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slide-content {
      position: absolute;
      right: 10%;
      top: 50%;
      transform: translateY(-50%);
      min-width: 40%;
      max-width: 50%;
      background: rgba(0,0,0,0.6);
      padding: 30px;
      border-radius: 12px;
    }

    .slide-content h2,
    .slide-content p,
    .slide-content a {
      opacity: 0;
      transform: translateY(30px);
    }
    .slide-content h2 {
		font-size: 27px;
	}
    .slide-content p {
		font-size: 20px;
	}

    .slide-content h2.show {
      animation: slideUp 0.8s forwards;
    }

    .slide-content p.show {
      animation: slideUp 0.8s forwards;
      animation-delay: 0.6s;
    }

    .slide-content a.show {
      animation: slideUp 0.8s forwards;
      animation-delay: 1.2s;
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .slide-content a {


  display: block;            /* از inline-block به block تغییر داده شد */
  margin-top: 15px;
  padding: 10px 20px;
  border: 1px solid #f4a261;
  color: #f4a261;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
  width: fit-content;        /* باعث میشه عرض لینک فقط به اندازه محتوا باشه */
  margin-right: auto;        /* باعث میشه در حالت rtl به چپ چسبیده باشه */

    }

    .slide-content a:hover {
      background: #f4a261;
      color: #000;
    }

    /* دکمه‌های ناوبری */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(0,0,0,0.5);
      border: none;
      color: white;
      font-size: 22px;
      cursor: pointer;
      z-index: 3;
      transition: background 0.3s;
    }

    .nav-btn:hover {
      background: rgba(244, 162, 97, 0.9);
    }

    .nav-btn.left {
      right: auto;
      left: 20px;
    }

    .nav-btn.right {
      right: 20px;
    }

    /* حالت موبایل */
    @media (max-width: 768px) {
      .slide img {
        display: none;
      }
      .slide-content {
        position: static;
        transform: none;
        max-width: 100%;
        background: transparent;
        text-align: center;
      }
      .nav-btn {
        display: none;
      }
    }





    /* /////////////////// Statistic ////////////// */


    .stats-section {
      background: #0c2d57;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 80px;
      padding: 80px 20px;
      text-align: center;
    }

    .stat-item {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
      width: 180px;
    }

    .stat-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stat-icon {
      background: #f4a261;
      color: #fff;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 26px;
      margin: 0 auto 15px;
    }

    .stat-number {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .stat-text {
      font-size: 16px;
      line-height: 1.5;
    }

    /* حالت موبایل */
    @media (max-width: 768px) {
      .stats-section {
        flex-direction: column;
        gap: 40px;
      }
    }
	
	
    /* /////////////////// Features Section ////////////// */
	
	
  .section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
  }

  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }




  /* ستون سمت چپ */
  .steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .step {
    background: white;
    border-radius: 15px;
    padding: 0 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.4s, opacity 0.4s;
    opacity: 0;
    transform: translateY(40px);
 		  text-align: right;
 }

  .step.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .step:hover {
    transform: translateY(-3px);
  }

  .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffb628;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
  }








  /* ستون سمت راست */
  .features {
    flex: 1;
    text-align: center;
    position: relative;
  }

  .circle-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
  }

  .circle-icons button {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background-color: #ffb628;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .circle-icons button.active {
    background-color: #ff9f00;
    transform: scale(1.15);
  }
.circle-icons button.active {
  //background-color: #007bff;
  //color: white;
}


  .circle-icons button.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ff9f00;
  }

/*
  .feature-boxes {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-height: 200px;
    transition: opacity 0.3s;
  }
.feature-boxes .feature {
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-boxes .feature.active {
  display: block;
  opacity: 1;
}
  
*/  





.features h3 {
	font-size: 18px;
	color: #523901;
}

.feature-boxes {
  position: relative;
  min-height: 50px; /* ارتفاع مناسب برای جلوگیری از پرش */
    background: white;
    border-radius: 20px;
    //padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-height: 200px;
}

.feature-boxes .feature {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  font-size: 18px;
}

.feature-boxes .feature.active {
  opacity: 1;
  visibility: visible;
}


  @media (max-width: 900px) {
    .section {
      flex-direction: column-reverse;
    }
  }
