  /* --- Global Styles --- */
  :root {
      --primary-color: #0284c7;
      --dark-color: #0f172a;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --white: #ffffff;
      --cyan-accent: #06b6d4;
  }

  body {
      font-family: 'Vazirmatn', sans-serif;
      background-color: var(--bg-light);
      color: var(--dark-color);
  }

  .fs-7 {
      font-size: 0.875rem;
  }

  .fs-8 {
      font-size: 0.75rem;
  }

  /* --- Topbar --- */
  .topbar {
      background-color: var(--dark-color);
      color: #cbd5e1;
  }

  .topbar a {
      color: #cbd5e1;
      transition: color 0.3s;
  }

  .topbar a:hover {
      color: var(--white);
  }

  .social-links a {
      font-size: 1.1rem;
      margin-right: 12px;
  }

  /* --- Navbar --- */
  .header {
      background-color: var(--white);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  }

  .navbar-collapse .navbar-nav {
      padding: 0;
      justify-content: space-between;
      width: 100%;
  }

  .custom-nav .nav-link {
      font-weight: 500;
      color: var(--dark-color) !important;
      padding: 1rem 10px ;
      position: relative;
      transition: all 0.3s ease;
      font-size: 14px;
  }

  .custom-nav .nav-link:hover,
  .custom-nav .nav-link.active {
      color: var(--primary-color) !important;
  }

  .custom-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 5px;
      right: 50%;
      transform: translateX(50%);
      width: 0;
      height: 3px;
      background-color: var(--primary-color);
      border-radius: 5px;
      transition: width 0.3s ease;
  }

  .custom-nav .nav-link:hover::after,
  .custom-nav .nav-link.active::after {
      width: 40px;
  }

  .btn-outline-primary-custom {
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
      border-radius: 8px;
      font-weight: 500;
      transition: all 0.3s;
  }

  .btn-outline-primary-custom:hover {
      background-color: var(--primary-color);
      color: var(--white);
  }

  /* --- Hero Slider --- */
  .modern-hero {
      position: relative;
  }

  .hero-slider .item img {
      object-fit: cover;
      height: 600px;
      width: 100%;
  }

  .owl-theme .owl-nav,
  .owl-theme .owl-dots {
      display: none !important;
  }

  /* ====================================================
           طراحی جدید، شیک و متفاوت باکس مرکزی (Premium Box)
           ==================================================== */
  .smart-city-portal {
      position: relative;
      margin-top: -120px;
      z-index: 20;
      padding-bottom: 30px;
      display: flex;
      justify-content: center;
  }

  .premium-smart-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 30px;
      padding: 60px 50px 40px;
      text-align: center;
      text-decoration: none;
      position: relative;
      min-width: 380px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(6, 182, 212, 0.05);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  /* آیکن شناور بالای باکس */
  .floating-badge {
      position: absolute;
      top: -45px;
      left: 50%;
      transform: translateX(-50%);
      width: 90px;
      height: 90px;
      background: linear-gradient(135deg, var(--cyan-accent) 0%, var(--primary-color) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 6px solid #ffffff;
      box-shadow: 0 15px 35px rgba(2, 132, 199, 0.35);
      transition: all 0.4s ease;
  }

  .floating-badge svg {
      width: 40px;
      height: 40px;
      color: #ffffff;
      transition: transform 0.4s ease;
  }

  /* تایپوگرافی داخل باکس */
  .premium-smart-card h2 {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--dark-color);
      margin-bottom: 10px;
      letter-spacing: -0.5px;
      transition: color 0.3s ease;
  }

  /* خط جداکننده تزئینی */
  .decorative-line {
      width: 40px;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--cyan-accent), transparent);
      margin: 0 auto 15px;
      border-radius: 50px;
      transition: width 0.4s ease;
  }

  .premium-smart-card p {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text-muted);
      margin-bottom: 0;
  }

  /* افکت‌های هاور (وقتی موس روی باکس می‌رود) */
  .premium-smart-card:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 40px 70px rgba(0, 0, 0, 0.12), 0 0 60px rgba(6, 182, 212, 0.15);
      border: 1px solid rgba(6, 182, 212, 0.3);
  }

  .premium-smart-card:hover .floating-badge {
      transform: translateX(-50%) translateY(-5px);
      box-shadow: 0 20px 40px rgba(2, 132, 199, 0.5);
  }

  .premium-smart-card:hover .floating-badge svg {
      transform: scale(1.15) rotate(5deg);
  }

  .premium-smart-card:hover .decorative-line {
      width: 80px;
      background: linear-gradient(90deg, var(--cyan-accent), var(--primary-color));
  }

  @media (max-width: 991px) {
      .hero-slider .item img {
          height: 400px;
      }

      .custom-nav .nav-link {
          text-align: right;
          border-bottom: 1px solid #f1f5f9;
      }

      .custom-nav .nav-link::after {
          display: none;
      }

      .smart-city-portal {
          margin-top: -80px;
      }

      .premium-smart-card {
          min-width: 90%;
          padding: 50px 30px 30px;
          border-radius: 20px;
      }

      .floating-badge {
          width: 75px;
          height: 75px;
          top: -37px;
          border-width: 4px;
      }

      .floating-badge svg {
          width: 32px;
          height: 32px;
      }

      .premium-smart-card h2 {
          font-size: 1.3rem;
      }

      .premium-smart-card p {
          font-size: 1rem;
      }
  }

  /* --- تایتل: استایل مدرنِ Stripe --- */
  .section-title {
      position: relative;
      padding-right: 30px;
      margin-bottom: 45px;
  }

  /* تایتل اصلی */
  .section-title h4 {
      color: #0f172a;
      /* آبی بسیار تیره و عمیق (سرمه‌ای مدرن) */
      font-weight: 800;
  }

  /* متن کوچک زیر تایتل */
  .section-title p {
      color: #64748b;
      /* طوسی مایل به آبی (Slate) */
  }

  /* عنوان داخل باکس‌های سمت راست */
  .news-item h6 {
      color: #1e293b;
      /* آبی تیره برای خوانایی بهتر */
  }

  /* توضیحات کوچک داخل باکس‌ها */
  .news-item small {
      color: #94a3b8;
      /* طوسی روشن و ملایم برای عدم پرت کردن حواس */
  }

  /* در صورتی که می‌خواهید عنوان آیتم فعال رنگی باشد (اختیاری) */
  .news-item.active h6 {
      color: #2563eb;
      /* آبی برند شما برای تاکید */
  }

  .section-title::before {
      content: "";
      position: absolute;
      right: 0;
      top: 5px;
      width: 6px;
      height: 25px;
      background: #3b82f6;
      border-radius: 2px;
      /* خط دوم برای شیک‌تر شدن */
      box-shadow: 10px 0 0 rgba(59, 130, 246, 0.2);
  }

  /* --- باکس‌های اخبار: کارت‌های مدرن --- */
  .news-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .news-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 14px;
      border-radius: 20px;
      text-decoration: none;
      border: 1px solid transparent;
      transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
      background: #fff;
      position: relative;
  }

  .news-item:hover {
      border-color: #f1f5f9;
      background: #fcfdfe;
      transform: translateX(-5px);
  }

  .news-item img {
      width: 70px;
      height: 70px;
      border-radius: 16px;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  /* استایل Before اختصاصی برای هر باکس فعال */
  .news-item.active {
      border-color: #e2e8f0;
      box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1);
  }

  .news-item.active::before {
      content: "";
      position: absolute;
      right: -2px;
      top: 20%;
      height: 60%;
      width: 4px;
      background: #3b82f6;
      border-radius: 4px;
  }

  /* --- تصویر اصلی با فریم مدرن --- */
  .news-preview {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      border: 6px solid #fff;
      /* ایجاد فضای سفید بین عکس و کانتینر */
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  }

  .news-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* آرشیو شیک */
  .news-archive-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 18px;
      margin-top: 4px;
      border-radius: 18px;
      text-decoration: none;
      color: #fff;
      background: linear-gradient(135deg, #1f6feb, #4a90e2);
      box-shadow: 0 12px 30px rgba(47, 111, 237, 0.22);
      overflow: hidden;
      transition: all 0.3s ease;
      z-index: 1;
  }

  .news-archive-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg,
              transparent 0%,
              rgba(255, 255, 255, 0.18) 35%,
              rgba(255, 255, 255, 0.35) 50%,
              rgba(255, 255, 255, 0.18) 65%,
              transparent 100%);
      transform: translateX(100%);
      transition: transform 0.55s ease;
      z-index: -1;
  }

  .news-archive-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(47, 111, 237, 0.28);
      color: #fff;
  }

  .news-archive-btn:hover::before {
      transform: translateX(-100%);
  }

  .news-archive-btn span {
      font-weight: 700;
      font-size: 15px;
  }

  .news-archive-btn i {
      font-size: 14px;
      transition: transform 0.3s ease;
  }

  .news-archive-btn:hover i {
      transform: translateX(-4px);
  }

  /* --- استایل تب‌های مدرن --- */
  .custom-tabs-nav {
      background: #f1f5f9;
      padding: 6px;
      border-radius: 16px;
      display: inline-flex;
      margin-bottom: 30px;
      border: 1px solid #e2e8f0;
  }

  /* کلاس استایل دکمه آرشیو */
  .news-archive-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 20px;
      text-decoration: none;
      color: #2563eb;
      /* رنگ آبی سازمانی */
      background: #fff;
      border: 1px solid #dbe7f5;
      border-radius: 14px;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.35s ease;
      overflow: hidden;
      /* ضروری برای محبوس کردن افکت */
      z-index: 1;
  }

  /* افکت درخشش متحرک */
  .news-archive-link::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 0%, rgba(37, 99, 235, 0.05) 40%, rgba(37, 99, 235, 0.15) 50%, rgba(37, 99, 235, 0.05) 60%, transparent 100%);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
      z-index: -1;
  }

  /* وضعیت هاور */
  .news-archive-link:hover {
      color: #1d4ed8;
      border-color: #bfd3f0;
      box-shadow: 0 6px 15px rgba(37, 99, 235, 0.1);
  }

  .news-archive-link:hover::before {
      transform: translateX(100%);
  }

  .custom-tabs-nav .nav-link {
      color: #64748b;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 12px;
      transition: all 0.4s ease;
      border: none;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .custom-tabs-nav .nav-link i {
      font-size: 1.1rem;
  }

  /* رنگی کردن آیکون‌ها */
  .custom-tabs-nav .nav-link[data-bs-target="#tab-ostandari"] i {
      color: #2563eb;
  }

  .custom-tabs-nav .nav-link[data-bs-target="#tab-farmandari"] i {
      color: #8b5cf6;
  }

  .custom-tabs-nav .nav-link.active {
      background: #fff !important;
      color: #2563eb !important;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  /* --- استایل باکس‌های خبر (کارت) --- */
  .news-card {
      background: #fff;
      border-radius: 20px;
      padding: 20px;
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
      overflow: hidden;
      /* بسیار مهم: برای اینکه before از باکس بیرون نزند */
  }

  /* اصلاح دقیق قبل از باکس (قبل از باکس) */
  .news-card::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 4px;

      height: 100%;
      background: #e2e8f0;

      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
      transition: all 0.3s ease;
  }

  .news-section {
      position: relative;
      margin-bottom: 72px
  }

  .news-section .archive a {
      position: absolute;
      top: 0;
      left: 10%;
  }

  /* فعال شدن رنگ هنگام هاور */
  .news-card:hover::before {
      background: #2563eb;
  }

  .news-card:hover {
      border-color: #cbd5e1;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  /* تصویر داخل کارت */
  .news-card img {
      border-radius: 12px;
      margin-bottom: 15px;
      width: 100%;
  }

  .news-date {
      display: flex;
      align-items: center;
      color: #94a3b8;
      font-size: 0.85rem;
      margin-bottom: 10px;
  }

  .news-date i {
      color: #f59e0b;
      margin-left: 8px;
  }

  .card-title {
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 10px;
  }


  /* اصلاح کلی بخش */
  .tenders-section {
      padding-top: 0 !important;
  }

  /* تایتل مدرن */
  .section-header {
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .section-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: #1e293b;
      margin: 0;
  }
  /* =========================================================
   تب‌های اختصاصی مناقصات و مزایدات
   ========================================================= */

.custom-tender-tabs {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    margin: 0;
    list-style: none;
    background: transparent;
    border: 0;
}

/* حذف فاصله و استایل پیش‌فرض Bootstrap */
.custom-tender-tabs .nav-item {
    margin: 0;
    padding: 0;
}
.custom-tender-tabs .nav-item:not(:first-child) .nav-link::before {
    display: none;
}
.custom-tender-tabs .nav-item:not(:first-child) .nav-link::after {
    display: none;
}
.custom-tender-tabs .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 18px 0 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #0f376b;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.6;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none !important;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

/*
   دو نوار عمودی سمت راست عنوان
   نوار اصلی: سمت راست
   نوار کم‌رنگ: کمی دورتر از عنوان
*/
.custom-tender-tabs .nav-link::before,
.custom-tender-tabs .nav-link::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
    transition:
        background-color 0.25s ease,
        opacity 0.25s ease;
}

/* نوار اصلی */
.custom-tender-tabs .nav-link::before {
    right: 0;
    width: 4px;
    height: 25px;
    background-color: #1769d1;
}

/* نوار دوم و کم‌رنگ‌تر */
.custom-tender-tabs .nav-link::after {
    right: 7px;
    width: 3px;
    height: 18px;
    background-color: #78a9e8;
}

/* وضعیت هاور */
.custom-tender-tabs .nav-link:hover {
    color: #1769d1;
    transform: translateX(-2px);
}

/* وضعیت فعال */
.custom-tender-tabs .nav-link.active {
    color: #0f376b !important;
    background: transparent !important;
}

/* اطمینان از حفظ نوارها در وضعیت فعال */
.custom-tender-tabs .nav-link.active::before {
    background-color: #1769d1;
}

.custom-tender-tabs .nav-link.active::after {
    برای-color: #78a9e8;
}

/* در صورت نیاز: نوارها فقط برای تب فعال نمایش داده شوند */
/*
.custom-tender-tabs .nav-link:not(.active)::before,
.custom-tender-tabs .nav-link:not(.active)::after {
    opacity: 0;
}
*/


/* =========================================================
   لینک آرشیو
   ========================================================= */

.tender-archive-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    overflow: hidden;
    z-index: 1;

    color: #2563eb;
    background: #fff;
    border: 1px solid #dbe7f5;
    border-radius: 12px;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.35s ease;
}

.tender-archive-link span,
.tender-archive-link i {
    position: relative;
    z-index: 2;
}

.tender-archive-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.tender-archive-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(37, 99, 235, 0.05) 40%,
        rgba(37, 99, 235, 0.15) 50%,
        rgba(37, 99, 235, 0.05) 60%,
        transparent 100%
    );

    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tender-archive-link:hover {
    color: #1d4ed8;
    border-color: #bfd3f0;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.tender-archive-link:hover::before {
    transform: translateX(100%);
}

.tender-archive-link:hover i {
    transform: rotate(15deg) scale(1.1);
}


/* =========================================================
   جداکننده عنوان
   ========================================================= */

.title-divider {
    width: 40px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
}


/* =========================================================
   کارت مناقصه
   ========================================================= */

.tender-card {
    position: relative;
    overflow: hidden;

    padding: 20px 25px;
    margin-bottom: 15px;

    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* نوار رنگی سمت راست کارت */
.tender-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 6px;
    height: 100%;

    background: #2563eb;
    border-radius: 0 16px 16px 0;
}


/* =========================================================
   هدر کارت
   ========================================================= */

.tender-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}

.tender-title {
    margin: 0;

    color: #334155;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.tender-type {
    padding: 4px 10px;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 6px;

    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================================
   اطلاعات تکمیلی کارت
   ========================================================= */

.tender-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;

    color: #64748b;
    font-size: 0.8rem;
}


/* =========================================================
   گرید تاریخ‌ها
   ========================================================= */

.tender-dates {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;

    padding: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
}

.date-box {
    display: flex;
    flex-direction: column;
    gap: 6px;

    color: #64748b;
    font-size: 0.75rem;
}

.date-label {
    color: #64748b;
    font-size: 0.82rem;
}

.date-value,
.date-box span {
    margin-top: 2px;

    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 700;
}


/* =========================================================
   ریسپانسیو
   ========================================================= */

@media (max-width: 768px) {
    .section-header {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .custom-tender-tabs {
        width: 100%;
        gap: 18px;
        flex-wrap: wrap;
    }

    .custom-tender-tabs .nav-link {
        padding-right: 16px;
        font-size: 0.98rem;
    }

    .tender-archive-link {
        width: 100%;
        justify-content: center;
    }

    .tender-header {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .tender-meta {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .tender-dates {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 420px) {
    .custom-tender-tabs {
        gap: 14px;
    }

    .custom-tender-tabs .nav-link {
        font-size: 0.9rem;
    }

    .tender-card {
        padding: 18px 20px;
    }
}

  /*======================
        Footer
======================*/
.modern-list{
        padding-right: 0;
}
.modern-list li{
    list-style-type: none;
}
  .site-footer {
      background: #0f172a;
      color: #cbd5e1;
      margin-top: 60px;
      position: relative;
      padding-bottom: 0;
  }

  /* موج */
  .wave-container {
      width: 100%;
      height: 100px;
      position: absolute;
      top: -99px;
      left: 0;
      overflow: hidden;
  }

  .wave-container svg {
      width: 100%;
      height: 100%;
  }

  /* بخش اصلی */
  .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
      padding: 60px 0;
  }

  .footer-title {
      color: #fff;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 20px;
      padding-right: 12px;
      border-right: 4px solid #d4af37;
  }

  .footer-col p {
      color: #94a3b8;
      line-height: 2;
      font-size: .95rem;
  }

  .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li {
      margin-bottom: 12px;
  }

  .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: .3s;
  }

  .footer-links a:hover {
      color: #fff;
      padding-right: 6px;
  }

  /*======================
      Bottom Bar
======================*/

  .footer-bottom-bar {

      background: #0b1627;

      border-top: 1px solid rgba(255, 255, 255, .08);

      padding: 18px 0;

  }

  .footer-bottom-content {

      display: flex;

      justify-content: space-between;

      align-items: center;

      gap: 20px;

      flex-wrap: wrap;

  }

  .copyright {

      color: #94a3b8;

      font-size: .9rem;

  }

  .footer-legal-links {

      display: flex;

      align-items: center;

      gap: 12px;

      flex-wrap: wrap;

  }

  .footer-legal-links a {

      color: #94a3b8;

      text-decoration: none;

      transition: .3s;

  }

  .footer-legal-links a:hover {

      color: #fff;

  }

  .footer-legal-links span {

      color: #475569;

  }

  .itshams {

      color: #38bdf8 !important;

      font-weight: 600;

  }

  /*======================
      Responsive
======================*/

  @media(max-width:768px) {

      .footer-grid {

          grid-template-columns: 1fr;

          text-align: center;

          gap: 35px;

      }

      .footer-title {

          display: inline-block;

          border-right: none;

          border-bottom: 3px solid #d4af37;

          padding: 0 0 10px;

      }

      .footer-bottom-content {

          flex-direction: column;

          text-align: center;

      }

      .footer-legal-links {

          justify-content: center;

      }

      .wave-container {

          height: 50px;

          top: -49px;

      }

  }