  .carousel-wrapper {

      max-width: 1024px;
      width: 100%;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      margin: 2rem auto;

  }

  .carousel-inner img {
      object-fit: cover;
      max-height: 420px;
      width: 100%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      width: 20px;
      height: 20px;
      background-size: 20px 20px;
      /* تنظیم آیکون داخل دکمه */
  }

  .carousel-control-prev {
      left: 2px;
  }

  .carousel-control-next {
      right: 2px;
  }

  #welcome-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      animation: fadeIn 0.5s ease;
  }

  .modal-box {
      background: linear-gradient(135deg, #ffffff, #f0f9ff);
      padding: 35px 25px;
      border-radius: 16px;
      text-align: center;
      max-width: 420px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
      font-family: 'IRANSansWeb', sans-serif;

      animation: slideUp 0.6s ease;
      position: relative;
  }

  .icon-circle {
      width: 70px;
      height: 70px;
      background: #0088cc;
      border-radius: 50%;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 1.5s infinite;
  }

  .icon-circle img {
      width: 40px;
      height: 40px;
  }

  .modal-box h2 {
      font-size: 20px;
      color: #333;
      margin-bottom: 12px;
  }

  .modal-box p {
      font-size: 15px;
      color: #555;
      margin-bottom: 20px;
  }

  .cta-btn {
      display: inline-block;
      background: #0088cc;
      color: white;
      padding: 10px 22px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
      transition: background 0.3s ease;
  }

  .cta-btn:hover {
      background: #0077b3;
  }

  .close-btn {
      position: absolute;
      top: 10px;
      right: 12px;
      background: none;
      border: none;
      font-size: 16px;
      color: #888;
      cursor: pointer;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  @keyframes slideUp {
      from {
          transform: translateY(40px);
          opacity: 0;
      }

      to {
          transform: translateY(0);
          opacity: 1;
      }
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }

      100% {
          transform: scale(1);
      }
  }

  @keyframes blink {
      0% {
          opacity: 1;
      }

      50% {
          opacity: 0;
      }

      100% {
          opacity: 1;
      }
  }



.social-footer__list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.social-footer__list li {
  margin: 0 10px;
  position: relative; /* برای تولتیپ */
}

.social-footer__list li a {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  text-align: center;
  border-radius: 50%;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(0deg, #ddd, #fff);
  transition: 0.5s;
}

.social-footer__list li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.social-footer__list li a .fab {
  height: 100%;
  display: block;
  background: linear-gradient(0deg, #fff, #ddd);
  border-radius: 50%;
  line-height: 48px;
  font-size: 24px;
  color: #262626;
  transition: 0.5s;
}

/* تولتیپ */
.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.social-footer__list li a:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* رنگ برنددار هنگام hover */
.social-footer__list li:nth-child(1) a:hover .fab {
  color: #3b5998; /* Facebook */
}
.social-footer__list li:nth-child(2) a:hover .fab {
  color: #0088cc; /* Telegram */
}
.social-footer__list li:nth-child(3) a:hover .fab {
  color: #ff0000; /* YouTube */
}
.social-footer__list li:nth-child(4) a:hover .fab {
  color: #007bb6; /* LinkedIn */
}
.social-footer__list li:nth-child(5) a:hover .fab {
  color: #e4405f; /* Instagram */
}