/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Vazirmatn", sans-serif;
  background: #fff;
  color: #0f172a;
  overflow-x: hidden;
}
i {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ===========================
   GLOBAL HEADER (GLASS EFFECT)
=========================== */
.glassy-nav {
  /* backdrop-filter: blur(14px) saturate(180%); */
  /* -webkit-backdrop-filter: blur(14px) saturate(180%); */
  /* background: rgba(255, 255, 255, 0.25); */
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.35s ease;
  z-index: 1050;
}

/* On Scroll */
.glassy-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===========================
   BRAND
=========================== */
.brand-logo {
  height: 40px;
  width: auto;
  transition: opacity 0.25s ease;
}

/* ===========================
   NAV LINKS
=========================== */
.nav-link {
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  color: #fff !important;
  transition: color 0.25s ease;
}

/* Hover underline */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: #00a3ff;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Scroll → dark text */
.glassy-nav.scrolled .nav-link {
  color: #111 !important;
}

/* ===========================
   BUTTONS
=========================== */
.btn-outline-glass,
.btn-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 5px;
  white-space: nowrap;
}

/* Outline */
.btn-outline-glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.3s ease;
}
.btn-outline-glass:hover {
  background: rgba(0, 163, 255, 0.15);
  border-color: #00a3ff;
  color: white;
}

/* Scroll state */
.glassy-nav.scrolled .btn-outline-glass {
  color: #111;
  background: rgb(239, 239, 239);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Brand button */
.btn-brand {
  background: #00a3ff;
  color: #fff;
  transition: background 0.25s ease;
}
.btn-brand:hover {
  background: #0095ea;
}

/* ===========================
   NAVBAR TOGGLER
=========================== */
.navbar-toggler {
  border: none;
  /* color: #fff; */
}
.glassy-nav.scrolled .navbar-toggler {
  color: #111;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 991.98px) {
  .glassy-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
  }

  .nav-link {
    color: #222 !important;
    font-size: 1.1rem;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .brand-logo {
    height: 32px;
  }
}

/* Small icon utility (used elsewhere) */
.small-icons .icon-item {
  width: 50px;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}
/* ===========================
   MOBILE
=========================== */
@media (max-width: 991.98px) {
  .glassy-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }

  .nav-link {
    color: #111 !important;
    font-size: 1.05rem;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .brand-logo {
    height: 32px;
  }

  /* 🔹 دکمه Outline روی پس‌زمینه سفید */
  .glassy-nav .btn-outline-glass {
    background: #f3f4f6; /* خاکستری خیلی روشن */
    border-color: #d1d5db;
    color: #111;
  }

  .glassy-nav .btn-outline-glass:hover {
    background: #e5e7eb;
    border-color: #cbd5e1;
    color: #000;
  }

  /* 🔹 دکمه اصلی (برند) روی موبایل */
  .glassy-nav .btn-brand {
    background: #00a3ff;
    color: #fff;
    box-shadow: none;
  }

  .glassy-nav .btn-brand:hover {
    background: #0095ea;
    color: #fff;
  }
}

/* ///////////////// ABOUT US SECTION – Trendy Hero ////////////////// */

/* HERO WRAPPER */
.about-hero {
  position: relative;
  background: url("/src/img/eskanParsBgImage.jpg") center/cover no-repeat;
  color: #f9fafb;
  padding: clamp(6rem, 18vh, 9rem) 0 clamp(3rem, 10vh, 5rem); /* 🔼 پدینگ بالا بیشتر شد */
  overflow: hidden;
}

/* DARK + BLUE OVERLAY */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      160deg,
      rgba(15, 23, 42, 0.92),
      rgba(15, 23, 42, 0.82)
    ),
    radial-gradient(circle at 10% 0%, rgba(93, 173, 236, 0.35), transparent 60%);
  z-index: 1;
}

/* CONTENT LAYER */
.about-hero__content {
  position: relative;
  z-index: 2;
}

/* GLOW UNDER HERO */
.about-hero__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 54px;
  background: radial-gradient(
    140% 60% at 50% -10%,
    rgba(93, 173, 236, 0.4),
    transparent 65%
  );
  z-index: 1;
  pointer-events: none;
}

/* BADGE (درباره اسکان پارس) */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  color: #e5f3ff;
}

/* TITLE + TEXT */
.about-hero h1 {
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

.about-hero .lead {
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  color: #e5e7eb;
  line-height: 1.9;
  max-width: 40rem;
}

/* TEXT ALIGNMENT – MOBILE FIRST */
@media (max-width: 991.98px) {
  .about-hero {
    text-align: center;
  }
  .about-hero .col-lg-6 {
    text-align: center !important;
  }
}

/* ========== STATS ========== */

.about-stats {
  margin-top: clamp(2rem, 4vh, 3rem);
}

/* GLASS STAT BOX */
.about-stats .stat-box {
  background: radial-gradient(
    circle at 0% 0%,
    rgba(93, 173, 236, 0.35),
    rgba(15, 23, 42, 0.85)
  );
  border: 1px solid rgba(148, 189, 240, 0.45);
  padding: 1.1rem 0.9rem;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Hover / motion */
.about-stats .stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(93, 173, 236, 0.45);
  border-color: #5dadec;
}

/* STAT VALUE */
.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 0.25rem;
}

/* STAT LABEL */
.stat-label {
  font-size: 0.9rem;
  color: #e5edf7;
  opacity: 0.95;
}

/* MOBILE / SMALLER SCREENS */
@media (max-width: 575.98px) {
  .about-hero {
    padding: 5.5rem 0 3.5rem;
  }

  .about-hero .lead {
    font-size: 0.9rem;
  }

  .about-stats .stat-box {
    padding: 0.95rem 0.7rem;
  }

  .stat-value {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.82rem;
  }
}
/* ///////////////// ABOUT INTRO – What We Do (Trendy) ///////////////// */

.about-intro {
  background: radial-gradient(
      circle at 0% 0%,
      rgba(93, 173, 236, 0.09),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(15, 23, 42, 0.05),
      transparent 55%
    ),
    #ffffff;
  padding: clamp(3.5rem, 8vh, 5rem) 0;
}

/* TEXT CARD */
.intro-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(
      circle at 0% 0%,
      rgba(49, 143, 227, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff, #f9fcff);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

/* خط آبی باریک کنار کارت – حس برَندینگ */
.intro-card::before {
  content: "";
  position: absolute;
  inset-block: 18px;
  inset-inline-start: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #318fe3, #5dadec);
}

/* TITLE */
.intro-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: #0f172a;
}

/* TEXT */
.intro-card p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: #4b5563;
}

/* تصویر سمت راست */
.intro-figure {
  text-align: center;
}

.intro-figure img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* افکت hover روی دسکتاپ */
@media (hover: hover) {
  .intro-figure img:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(49, 143, 227, 0.35);
  }
}

/* ---------- RESPONSIVE ---------- */

/* موبایل / تبلت: متن وسط‌چین و فاصله‌ها نرم‌تر */
@media (max-width: 991.98px) {
  .about-intro {
    padding: 3rem 0;
  }

  .intro-card {
    margin-top: 0.5rem;
    text-align: center;
  }

  .intro-card::before {
    inset-inline-start: auto;
    inset-inline: 40% 40%;
    inset-block-end: 0;
    height: 3px;
    width: auto;
    background: linear-gradient(90deg, #318fe3, #5dadec);
  }
}

/* خیلی کوچک‌ها */
@media (max-width: 575.98px) {
  .intro-card {
    padding: 1.5rem 1.3rem !important;
    border-radius: 16px;
  }

  .intro-card h2 {
    font-size: 1.25rem;
  }

  .intro-card p {
    font-size: 0.9rem;
  }

  .intro-figure img {
    border-radius: 16px;
  }
}
/* ///////////////// ABOUT VALUES – Trendy Cards ///////////////// */

.about-values {
  background: radial-gradient(
      circle at 0% 0%,
      rgba(49, 143, 227, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(15, 23, 42, 0.05),
      transparent 55%
    ),
    #ffffff;
  padding: clamp(3.5rem, 7vh, 5rem) 0;
}

/* عنوان و خط کنار آن */
.about-values h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: #0f172a;
}

/* خط آبی کنار تیتر */
.title-accent {
  display: inline-block;
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #318fe3, #5dadec);
}

/* VALUE CARD BASE */
.value-card {
  position: relative;
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(
      circle at 0% 0%,
      rgba(49, 143, 227, 0.09),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff, #f9fcff);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* hover effect */
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(49, 143, 227, 0.25);
  border-color: rgba(49, 143, 227, 0.8);
}

/* ICON WRAP */
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: radial-gradient(
    circle at 30% 20%,
    #ffffff,
    rgba(49, 143, 227, 0.2)
  );
  color: #318fe3;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.value-icon i {
  font-size: 1.6rem;
}

/* TEXTS */
.value-card h5 {
  font-size: 1rem;
  color: #0f172a;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #4b5563;
}

/* ---------- RESPONSIVE ---------- */

/* بین موبایل و تبلت */
@media (max-width: 991.98px) {
  .about-values {
    padding: 3rem 0;
  }

  .about-values .d-flex.align-items-center {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .about-values h2 {
    font-size: 1.4rem;
  }
}

/* موبایل کوچک */
@media (max-width: 575.98px) {
  .about-values {
    padding: 2.75rem 0;
  }

  .value-card {
    padding: 1.4rem 1.1rem;
    border-radius: 16px;
  }

  .value-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .value-icon i {
    font-size: 1.4rem;
  }

  .value-card h5 {
    font-size: 0.95rem;
  }

  .value-card p {
    font-size: 0.86rem;
  }
}

/* ////////////////////// ABOUT STORY – Timeline Style ////////////////////// */

.about-story {
  background: radial-gradient(
      circle at 0% 0%,
      rgba(49, 143, 227, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(15, 23, 42, 0.05),
      transparent 55%
    ),
    #ffffff;
  padding: clamp(3.5rem, 7vh, 5rem) 0;
  position: relative;
}

/* تیتر اصلی */
.about-story h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: #0f172a;
}

/* خط تایم‌لاین (فقط دسکتاپ/تبلت) */
.about-story::before {
  content: "";
  position: absolute;
  top: 6.5rem;
  bottom: 2rem;
  /* چون RTL هست، خط سمت راست بیاد */
  right: clamp(1.25rem, 4vw, 2.5rem);
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(148, 163, 184, 0.4),
    rgba(148, 163, 184, 0.1)
  );
  pointer-events: none;
}

/* بلاک‌های داستان */
.about-block {
  position: relative;
  margin-right: clamp(2.3rem, 5vw, 3.2rem); /* از خط فاصله بگیره */
  padding: 1.4rem 1.4rem 1.4rem 1.1rem;
  background: linear-gradient(180deg, #ffffff, #f9fcff);
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* دایره‌های تایم‌لاین کنار هر بلاک */
.about-block::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  right: calc(-1.15rem); /* روی خط تایم‌لاین بنشیند */
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid #318fe3;
  box-shadow: 0 0 0 4px rgba(49, 143, 227, 0.25);
}

/* افکت هاور برای کارت‌ها */
.about-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(49, 143, 227, 0.2);
  border-color: rgba(49, 143, 227, 0.85);
}

/* تیترهای داخلی */
.about-block h5 {
  font-size: 1rem;
  color: #0f172a;
}

/* متن داخلی */
.about-block p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 0;
}

/* رنگ آبی تم (اگر قبلاً تعریف نشده) */
.text-primary-blue {
  color: #318fe3 !important;
}

/* ---------- ریسپانسیو ---------- */

/* تبلت و پایین‌تر: خط تایم‌لاین حذف، کارت‌ها فول‌عرض و نفس‌کش‌تر */
@media (max-width: 991.98px) {
  .about-story::before {
    display: none;
  }

  .about-block {
    margin-right: 0;
    border-radius: 16px;
  }
}

/* موبایل کوچک */
@media (max-width: 575.98px) {
  .about-story {
    padding: 2.75rem 0;
  }

  .about-story h2 {
    font-size: 1.3rem;
  }

  .about-block {
    padding: 1.2rem 1rem;
  }

  /* .about-block::before {
    right: 0.75rem;
  } */

  .about-block h5 {
    font-size: 0.95rem;
  }

  .about-block p {
    font-size: 0.86rem;
  }
}

/* ////////////////////// ABOUT CTA – Trendy Glass ////////////////////// */

.about-cta {
  background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(15, 23, 42, 0.18),
      transparent 60%
    ),
    linear-gradient(135deg, #5dadec, #3c8bc6);
  color: #ffffff;
  padding: clamp(3.5rem, 7vh, 5rem) 0;
}

/* کارت داخل CTA */
.cta-wrap {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 55%
    ),
    linear-gradient(150deg, rgba(15, 23, 42, 0.46), rgba(15, 23, 42, 0.18));
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.45);
  position: relative;
  overflow: hidden;
  gap: 1.5rem;
}

/* نوار نور نرم گوشه کارت */
.cta-wrap::before {
  content: "";
  position: absolute;
  inset-inline-end: -40%;
  inset-block-start: -40%;
  width: 65%;
  height: 65%;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(93, 173, 236, 0.5),
    transparent 60%
  );
  opacity: 0.6;
  pointer-events: none;
}

/* متن داخل CTA */
.about-cta h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  margin-bottom: 0.5rem;
}

.about-cta p {
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 620px;
  color: #e5f2ff;
}

/* دکمه گفت‌وگو با ما */
.cta-btn {
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  font-weight: 700;
  padding: 0.65rem 1.6rem;
  border-radius: 999px; /* قرصی و ترندی */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.18);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.4);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease,
    box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta-btn i {
  font-size: 1.1rem;
}

/* Hover */
.cta-btn:hover {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.5);
}

/* ------------- ریسپانسیو ------------- */

@media (max-width: 991.98px) {
  .cta-wrap {
    text-align: center;
    flex-direction: column;
    align-items: center !important;
  }

  .about-cta p {
    margin-inline: auto;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 575.98px) {
  .about-cta {
    padding: 2.8rem 0;
  }

  .cta-wrap {
    border-radius: 14px;
    padding: 1.6rem 1.4rem !important;
    gap: 1.1rem;
  }

  .about-cta h3 {
    font-size: 1.1rem;
  }

  .about-cta p {
    font-size: 0.88rem;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 0.55rem 1.2rem;
  }
}
/* ////////////////////////FOOTER */

.soft-footer {
  background: radial-gradient(
    circle at top,
    #f9fafb 0,
    #f2f3f5 45%,
    #e5e7eb 100%
  );
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  color: #4b5563;
  font-size: 0.9rem;
}

/* روی هر چیزی داخل فوتر، رنگ متن را کنترل می‌کنیم */
.soft-footer * {
  color: inherit;
}

/* عنوان هر ستون */
.soft-footer-title {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: #111827;
}

/* لینک‌ها */
.soft-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.soft-footer-links li {
  margin-bottom: 0.45rem;
}

.soft-footer-links a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
}

.soft-footer-links a:hover {
  color: #111827;
  transform: translateX(-2px);
}

/* لوگو و شبکه اجتماعی */
.soft-footer .col:first-child p {
  color: #6b7280;
}

/* آیکن شبکه اجتماعی در دایره ملایم */
.footer-social-icon {
  font-size: 1.4rem;
  color: #4b5563;
  transition: color 0.2s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #e5e7eb;
}

.footer-social-icon:hover {
  color: #000;
  transform: translateY(-1px);
}

/* دکمه دانلود اپ */
.soft-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.6rem;
  background: #3490e3;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(52, 144, 227, 0.3);
  width: auto;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.soft-download-btn i {
  font-size: 1rem;
}

.soft-download-btn:hover {
  background: #2677c6;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(52, 144, 227, 0.4);
}

/* پایین فوتر */
.soft-footer-bottom {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.8;
}

/* خط بالای بخش پایینی کمی ملایم‌تر */
.soft-footer-bottom.border-top {
  border-color: #e5e7eb !important;
}

/* ========= Responsive Tweaks ========= */

/* تراز بهتر روی تبلت و موبایل */
@media (max-width: 991.98px) {
  .soft-footer .row > .col {
    text-align: center;
  }

  .soft-footer img[alt="لوگو"] {
    margin: 0 auto 0.75rem;
    display: block;
  }

  .soft-footer .col:nth-child(4) img {
    max-width: 120px;
    margin: 0 auto;
    display: block;
  }

  .soft-download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* موبایل خیلی کوچک */
@media (max-width: 575.98px) {
  .soft-footer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .soft-footer-title {
    margin-top: 0.5rem;
  }

  .soft-footer .row {
    row-gap: 1.5rem;
  }
}
