body {
  direction: rtl;
  background: #f9f9fb;
}

.head {
  background: linear-gradient(90deg, #3d8bfd, #6f42c1);
}

.navbar .nav-link {
  color: #fff !important;
  margin: 0 6px;
}
.navbar .nav-link:hover {
  color: #ffd43b !important;
}

/* کارت‌ها */
.hover-card {
  transition: all 0.3s ease;
  border-radius: 12px;
}
.hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* اسلایدر */
.carousel img {
  height: 420px;
  object-fit: cover;
}

/* فوتر */
.footer {
  background-color: #2c2c54;
}
.footer h5 {
  font-weight: bold;
  margin-bottom: 15px;
}
.afooter {
  color: #f1c40f;
  text-decoration: none;
}
.afooter:hover {
  color: #fff;
}

/* موبایل */
@media (max-width: 768px) {
  h3 { font-size: 20px; }
  .carousel img { height: 220px; }
  .card img { max-height: 180px; object-fit: cover; }
}

/* فقط تصویر بدون فضای سفید زیر کارت‌ها */
.image-only-cards .card {
  border: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 12px;
  /* اگر h-100 باعث سفیدی شده بود، ارتفاع کارت را آزاد کن */
  height: auto !important;
}

/* خود تصویر: پرکننده کارت با برش تمیز */
.image-only-cards .card > img,
.image-only-cards .card .card-img-top {
  display: block;
  width: 100%;
  height: 200px;          /* ارتفاع یکدست */
  object-fit: cover;      /* بدون کشیدگی */
  border-radius: 12px;
  transition: transform 0.35s ease;
}

/* افکت هاور شیک */
.image-only-cards .hover-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.image-only-cards .hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.image-only-cards .hover-card:hover img {
  transform: scale(1.06);
}

/* موبایل: ارتفاع کمتر برای تناسب بهتر */
@media (max-width: 768px) {
  .image-only-cards .card > img,
  .image-only-cards .card .card-img-top {
    height: 160px;
  }
}

/* بخش محصولات - بدون تداخل با ایندکس */
.products-section {
  background: #f9f9fb;
}

.products-section .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.products-section .product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain; /* تصویر بدون بریدگی */
  transition: transform 0.4s ease;
}

.products-section .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.products-section .product-card:hover img {
  transform: scale(1.05);
}

/* موبایل */
@media (max-width: 768px) {
  .products-section .product-card img {
    height: 150px;
  }
}

/* لوگو کنار متن برند */
.logo-img {
  height: 55px;        /* کمی بزرگ‌تر */
  width: 55px;
  border-radius: 50%;  /* گرد کامل */
  object-fit: cover;   /* برش دقیق داخل دایره */
}

/* فاصله بین لوگو و متن */
.navbar-brand .me-3 {
  margin-left: 12px;   /* فاصله بیشتر از متن */
}

/* موبایل */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
    width: 40px;
  }
}

/* بخش درباره ما */
.about-section {
  margin-top: 80px; /* فاصله از هدر فیکس */
}

.about-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  color: #3d8bfd;
}

.about-title::after {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #3d8bfd, #6f42c1);
  margin-top: 6px;
  border-radius: 3px;
}

.about-text {
  text-align: justify;
  line-height: 1.9;
  font-size: 17px;
  color: #333;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-img {
  max-width: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

/* موبایل */
@media (max-width: 768px) {
  .about-title {
    font-size: 22px;
  }
  .about-text {
    font-size: 15px;
  }
  .about-img {
    border-radius: 12px;
  }
}

  