     /* استایل‌های بهینه‌شده */
     .navbar {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      transition: all 0.3s ease;
    }
    
    .navbar-brand img {
      transition: transform 0.3s ease;
    }
    
    .navbar-brand:hover img {
      transform: rotate(-10deg);
    }
    
    .nav-link {
      padding: 0.5rem 1rem;
      transition: color 0.2s ease;
    }
    
    .nav-link:hover {
      color: #ff7300 !important;
    }
    
    .btn-orange {
      background-color: #ff7300;
      color: white;
    }
    
    .btn-orange:hover {
      background-color: #e56700;
      color: white;
    }
    
    .dropdown-menu {
      border: none;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    
    @media (max-width: 991.98px) {
      .navbar-collapse {
        padding-top: 1rem;
      }
      
      .form-inline {
        margin: 1rem 0;
      }
    }

    @media (max-width: 991.98px) {
      .dropdown-menu {
        transition: all 0.3s ease;
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
      }
      
      .dropdown-menu.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
    }


  .carousel-item {
    position: relative;
    text-align: center;
    background-color: #000;
    /* پس‌زمینه مشکی برای ویدیو */
  }

  .carousel-image,
  .carousel-video {
    width: 100%;
    height: 80vh;
    object-fit: cover;
  }

  .carousel-video {
    max-height: 80vh;
    /* ثابت نگه داشتن ارتفاع ویدیو */
    cursor: pointer;
    /* تغییر نشانگر موس به حالت کلیک */
  }

  @media (max-width: 768px) {
    .carousel-image, .carousel-video {
      width: 99%;
      height: 37vh;
      object-fit: cover;
      margin-top: 51px;
    }
  
    .carousel-video {
      max-height: 37vh;
      cursor: pointer;
    }
  }
  


  .carousel-caption {
    bottom: 20%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
  }

  .blurred-box {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 10px;
  }


  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .scroll-animation {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
  }

  .scroll-animation img {
    width: 40px;
    transition: transform 0.5s;
  }

  .scroll-animation:hover img {
    transform: translateY(10px);
  }


  @keyframes rotateShadow {
    0% {
      box-shadow: 0 0 8px 4px rgba(255, 140, 0, 0.5);
    }

    25% {
      box-shadow: 0 0 12px 8px rgba(255, 140, 0, 0.4);
    }

    50% {
      box-shadow: 0 0 8px 4px rgba(255, 140, 0, 0.6);
    }

    75% {
      box-shadow: 0 0 12px 8px rgba(255, 140, 0, 0.4);
    }

    100% {
      box-shadow: 0 0 8px 4px rgba(255, 140, 0, 0.5);
    }
  }

  .product-card {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
    border-radius: 15px;
  }

  .product-card.show {
    opacity: 1;
    transform: translateY(0);
  }

  .product-card:hover {
    transform: scale(1.05);
  }

  .image-container {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
  }

  .image-container img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .image-container:hover img {
    transform: scale(1.1);
  }



 .special-button {
    --white: #ffffff;
    --black: #000000;
    --blue: #4388ff;

    font-family: "Rubik", sans-serif;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    font-size: 1rem;
    border-radius: 1rem;
    outline: 2px solid transparent;
    outline-offset: 6px;
    color: var(--white);
    background: none;
    border: none;}

  .special-button:active {
    outline-color: var(--blue);
  }

  .special-button:focus-visible {
    outline-color: var(--blue);
    outline-style: dashed;
  }

  .special-button::before {
    content: "";
    position: absolute;
    z-index: 0;
    height: 200%;
    max-height: 100px;
    aspect-ratio: 1;
    margin: auto;
    background: var(--blue);
    clip-path: polygon(100% 50%,
        91.48% 56.57%,
        97.55% 65.45%,
        87.42% 69.07%,
        90.45% 79.39%,
        79.7% 79.7%,
        79.39% 90.45%,
        69.07% 87.42%,
        65.45% 97.55%,
        56.57% 91.48%,
        50% 100%,
        43.43% 91.48%,
        34.55% 97.55%,
        30.93% 87.42%,
        20.61% 90.45%,
        20.3% 79.7%,
        9.55% 79.39%,
        12.58% 69.07%,
        2.45% 65.45%,
        8.52% 56.57%,
        0% 50%,
        8.52% 43.43%,
        2.45% 34.55%,
        12.58% 30.93%,
        9.55% 20.61%,
        20.3% 20.3%,
        20.61% 9.55%,
        30.93% 12.58%,
        34.55% 2.45%,
        43.43% 8.52%,
        50% 0%,
        56.57% 8.52%,
        65.45% 2.45%,
        69.07% 12.58%,
        79.39% 9.55%,
        79.7% 20.3%,
        90.45% 20.61%,
        87.42% 30.93%,
        97.55% 34.55%,
        91.48% 43.43%);
    animation: star-rotate 4s linear infinite;
    opacity: 0.1;
  }

  .special-button:hover::before {
    opacity: 1;
  }

  .special-button>div {
    padding: 2px;
    border-radius: 1rem;
    background-color: var(--blue);
    transform: translate(-4px, -4px);
    transition: all 150ms ease;
    box-shadow:
      0.5px 0.5px 0 0 var(--blue),
      1px 1px 0 0 var(--blue),
      1.5px 1.5px 0 0 var(--blue),
      2px 2px 0 0 var(--blue),
      2.5px 2.5px 0 0 var(--blue),
      3px 3px 0 0 var(--blue),
      0 0 0 2px var(--black),
      0.5px 0.5px 0 2px var(--black),
      1px 1px 0 2px var(--black),
      1.5px 1.5px 0 2px var(--black),
      2px 2px 0 2px var(--black),
      2.5px 2.5px 0 2px var(--black),
      3px 3px 0 2px var(--black),
      3.5px 3.5px 0 2px var(--black),
      4px 4px 0 2px var(--black),
      0 0 0 4px var(--white),
      0.5px 0.5px 0 4px var(--white),
      1px 1px 0 4px var(--white),
      1.5px 1.5px 0 4px var(--white),
      2px 2px 0 4px var(--white),
      2.5px 2.5px 0 4px var(--white),
      3px 3px 0 4px var(--white),
      3.5px 3.5px 0 4px var(--white),
      4px 4px 0 4px var(--white);
  }

  .special-button:hover>div {
    transform: translate(0, 0);
    box-shadow:
      0 0 0 0 var(--blue),
      0 0 0 0 var(--blue),
      0 0 0 0 var(--blue),
      0 0 0 0 var(--blue),
      0 0 0 0 var(--blue),
      0 0 0 0 var(--blue),
      0 0 0 2px var(--black),
      0 0 0 2px var(--black),
      0 0 0 2px var(--black),
      0 0 0 2px var(--black),
      0 0 0 2px var(--black),
      0 0 0 2px var(--black),
      0 0 0 2px var(--black),
      0 0 0 2px var(--black),
      0 0 0 2px var(--black),
      0 0 0 4px var(--white),
      0 0 0 4px var(--white),
      0 0 0 4px var(--white),
      0 0 0 4px var(--white),
      0 0 0 4px var(--white),
      0 0 0 4px var(--white),
      0 0 0 4px var(--white),
      0 0 0 4px var(--white),
      0 0 0 4px var(--white);
  }

  .special-button>div>div {
    position: relative;
    pointer-events: none;
    border-radius: calc(1rem - 2px);
    background-color: var(--black);
  }

  .special-button>div>div::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0.1;
    background-image: radial-gradient(rgb(255 255 255 / 80%) 20%,
        transparent 20%),
      radial-gradient(rgb(255 255 255 / 100%) 20%, transparent 20%);
    background-position:
      0 0,
      4px 4px;
    background-size: 8px 8px;
    mix-blend-mode: hard-light;
    box-shadow: inset 0 0 0 1px var(--black);
    animation: dots 0.4s infinite linear;
    transition: opacity 150ms ease;
  }

  .special-button>div>div>div {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    gap: 0.25rem;
    filter: drop-shadow(0 -1px 0 var(--black));
  }

  .special-button>div>div>div:hover {
    filter: drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.1));
  }

  .special-button>div>div>div:active {
    transform: translateY(2px);
  }

  @keyframes star-rotate {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  @keyframes dots {
    0% {
      background-position:
        0 0,
        4px 4px;
    }

    100% {
      background-position:
        8px 0,
        12px 4px;
    }
  }

  @media (prefers-color-scheme: dark) {

    .special-button:active,
    .special-button:focus-visible {
      outline-color: var(--blue);
    }
  }




  :root {
    --bule: #4388ff;
    --dark-bg: #434242;
    --gray-text: #b0b0b0;
  }

  /* تنظیم قاب مربع برای تصاویر */
  .image-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #222;
  }

  .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  /* طراحی کارت محصول */
  .product-card {
    background: var(--dark-bg);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(255, 140, 0, 0.4) !important;
  }

  .product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 12px 24px rgba(255, 140, 0, 0.6) !important, 0 0 15px rgba(255, 140, 0, 0.3) !important;
  }

  /* رنگ‌بندی متون */
  .text-orange {
    color: var(--bule) !important;
  }

  .text-gray {
    color: var(--gray-text) !important;
  }

  /* دکمه جذاب با رنگ نارنجی */
  .btn-orange {
    background: var(--bule) !important;
    color: white;
    border-radius: 8px;
    padding: 8px 15px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  }

  .btn-orange:hover {
    background: #d65a00 !important;
    transform: scale(1.05) !important;
  }


  /* انیمیشن‌های جدید */
  @keyframes float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }

    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
  }

  @keyframes glow {
    0% {
      text-shadow: 0 0 5px rgba(249, 115, 22, 0.5);
    }

    50% {
      text-shadow: 0 0 20px rgba(249, 115, 22, 0.8);
    }

    100% {
      text-shadow: 0 0 5px rgba(249, 115, 22, 0.5);
    }
  }

  /* استایل بخش ویژگی‌ها */
  #contact {
    background: linear-gradient(120deg, #4388ff 0%, #0047ff9e 100%);
    border-top: 3px solid var(--bule);
    border-bottom: 3px solid var(--bule);
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, #0013ff00 50%);
    animation: pulse 8s infinite alternate;
  }

  #contact h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    animation: glow 3s infinite;
    color: #fff;
  }

  #contact h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--bule);
    border-radius: 3px;
  }

  .feature-box {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 30px 20px;
    margin: 15px 0;
    transition: all 0.5s ease;
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .feature-box::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #4388ff, #000fff, #015eff);
    background-size: 200% 200%;
    border-radius: 15px;
    opacity: 0;
    transition: 0.5s;
    animation: gradient 3s ease infinite;
  }

  .feature-box:hover::before {
    opacity: 0.2;
  }

  .feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
    border-color: rgba(249, 115, 22, 0.6);
  }

  .feature-box i {
    animation: float 3s ease-in-out infinite;
    background: linear-gradient(45deg, #4388ff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem !important;
  }

  .feature-box h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    transition: all 0.3s;
  }

  .feature-box:hover h5 {
    color: var(--bule);
  }

  .feature-box p {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: all 0.3s;
  }

  .feature-box:hover p {
    color: white;
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  /* انیمیشن برای ظاهر شدن آیتم‌ها */
  .feature-box {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* تأخیر برای هر آیتم */
  .feature-box:nth-child(1) {
    animation-delay: 0.1s;
  }

  .feature-box:nth-child(2) {
    animation-delay: 0.3s;
  }

  .feature-box:nth-child(3) {
    animation-delay: 0.5s;
  }

  .feature-box:nth-child(4) {
    animation-delay: 0.7s;
  }

  .feature-box:nth-child(5) {
    animation-delay: 0.9s;
  }

  .feature-box:nth-child(6) {
    animation-delay: 1.1s;
  }

  :root {
    --bule: #4388ff;
    --black: #121212;
  }

  .bg-orange {
    background: var(--bule) !important;
  }

  .feature-box {
    background: var(--black);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  }

  .text-orange {
    color: var(--bule);
  }

  :root {
    --primary-color: #4388ff;
    --primary-light: #e6e9ff;
    --border-color: #e0e0e0;
    --background-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "DM Sans", sans-serif;
    letter-spacing: -0.02em;
  }

  body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .accordion .accordion-item {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .accordion .accordion-item:hover {
    box-shadow: var(--shadow-hover);
  }

  .accordion .accordion-item.open {
    border-color: var(--primary-color);
  }

  .accordion .accordion-item .accordion-item-description-wrapper hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0 16px;
    opacity: 0;
    transition: var(--transition);
  }

  .accordion .accordion-item.open .accordion-item-description-wrapper hr {
    opacity: 1;
  }

  .accordion .accordion-item .accordion-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
  }

  .accordion .accordion-item .accordion-item-header .accordion-item-header-title {
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition);
  }

  .accordion .accordion-item.open .accordion-item-header .accordion-item-header-title {
    color: var(--primary-color);
  }

  .accordion .accordion-item .accordion-item-header .accordion-item-header-icon {
    transition: var(--transition);
    color: var(--text-light);
  }

  .accordion .accordion-item.open .accordion-item-header .accordion-item-header-icon {
    transform: rotate(-180deg);
    color: var(--primary-color);
  }

  .accordion .accordion-item .accordion-item-description-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: var(--transition);
  }

  .accordion .accordion-item.open .accordion-item-description-wrapper {
    grid-template-rows: 1fr;
  }

  .accordion .accordion-item .accordion-item-description-wrapper .accordion-item-description {
    min-height: 0;
  }

  .accordion .accordion-item .accordion-item-description-wrapper .accordion-item-description p {
    padding: 0 20px 16px;
    line-height: 1.6;
    color: var(--text-light);
    font-size: 15px;
  }

  /* Animation for opening */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .accordion .accordion-item.open .accordion-item-description {
    animation: fadeIn 0.3s ease-out;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .faq-container {
      padding: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .faq-container {
      padding: 1rem;
    }

    .accordion .accordion-item .accordion-item-header {
      padding: 14px 16px;
    }

    .accordion .accordion-item .accordion-item-description-wrapper .accordion-item-description p {
      padding: 0 16px 14px;
      font-size: 14px;
    }
  }




  :root {
    --bule: #4388ff;
    --black: #262626;
  }

  .text-orange {
    color: var(--bule) !important;
  }

  .border-orange {
    border-color: var(--bule) !important;
  }

  .social-icon {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .social-icon:hover {
    color: var(--bule);
    transform: scale(1.2);
  }


  .fs-33 {
    font-size: 33px !important;
  }



  /* استایل پایه */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  min-width: 200px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  padding: 8px 20px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #ff7300;
}

/* برای نسخه RTL (راست به چپ) */
[dir="rtl"] .dropdown-menu {
  right: auto;
  left: 0;
  text-align: right;
}





.glass-container {
  display: flex;
  gap: 15px;
  padding: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.glass-box {
  position: relative;
  width: 250px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: white;
  transition: transform 0.3s;
}

.glass-box:hover {
  transform: translateY(-10px);
}

.glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--glow-color, rgba(0, 0, 0, 0.7));
  opacity: 0.3;
  z-index: -1;
  filter: blur(20px);
}

.stats {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 10px 0;
  color: #d65a00;
}

.sub-stats {

  color: #d65a00;
}

/* استایل‌های مخصوص موبایل */
@media (max-width: 768px) {
  .glass-container {
    gap: 10px;
    padding: 10px;
  }
  
  .glass-box {
    width: calc(50% - 15px); /* دو باکس در هر ردیف با فاصله */
    padding: 15px;
    min-width: 0; /* برای جلوگیری از overflow */
  }
  
  .stats {
    font-size: 1.5rem;
    margin: 8px 0;
    color: #d65a00;
  }
  .sub-stats {

    color: #d65a00;
  }
  

/* برای صفحه‌های خیلی کوچک */
@media (max-width: 480px) {
  .glass-box {
    width: calc(50% - 10px);
    padding: 12px;
  }
  
  .stats {
    font-size: 1.3rem;
  }
}