    body {
      margin: 0;
      font-family: 'Vazir', sans-serif;
      direction: rtl;
      background: #f5f5f5;
    }

    header {
      background: linear-gradient(90deg, #008f39, #006f2e);
      color: white;
      border-radius: 0 0 0px 0px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 12px 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .header-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .logo {
      font-size: 26px;
      font-weight: bold;
      letter-spacing: 1px;
      color: white;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      flex-shrink: 0;
      order: 1;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 28px;
      color: white;
      cursor: pointer;
      order: 2;
    }

    .main-nav {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: nowrap;
      flex-grow: 1;
      justify-content: flex-start;
      min-width: 0;
      order: 3;
    }

    .main-nav a {
      color: white;
      text-decoration: none;
      padding: 10px 12px;
      border-radius: 8px;
      transition: background-color 0.3s;
      white-space: nowrap;
    }

    .main-nav a:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      right: 0;
      background-color: #006f2e;
      border-radius: 12px;
      padding: 10px 0;
      margin-top: 10px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      width: 220px;
      z-index: 2000;
    }

    .dropdown-content a {
      display: block;
      padding: 10px 18px;
      color: white;
    }

    .dropdown-content a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .contact-btn {
      background-color: #05c88d38;
      color: white;
      padding: 10px 18px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      white-space: nowrap;
      transition: background-color 0.3s;
      flex-shrink: 0;
      order: 4;
    }

    .contact-btn:hover {
      background-color: #ff8800;
    }

    /* دسکتاپ - منو وسط، تماس سریع چپ */
    @media (min-width: 769px) {
      .main-nav {
        justify-content: center;
      }

      .contact-btn {
        margin-right: auto;
      }
    }

    /* موبایل */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: #007735;
        border-radius: 12px;
        padding: 10px 15px;
        margin-top: 10px;
        width: 100%;
      }

      .main-nav.show {
        display: flex;
      }

      .dropdown-content {
        position: static;
        background-color: transparent;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
        width: 100%;
      }

      .contact-btn {
        width: 89%;
        margin: 10px 0 0 0;
        text-align: center;
      }
    }
    .dropdown-content a img {
  width: 20px;
  height: auto;
  margin-left: 8px;
  vertical-align: middle;
  border-radius: 4px; /* اختیاری برای زیبایی */
}
  .blog-article {
    font-family: Vazir, sans-serif;
    background: #fff;
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
    line-height: 2;
  }

  .blog-article h1 {
    color: #008f39;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #008f39;
    padding-bottom: 0.5rem;
  }

  .city-card {
    background: #f0fdf4;
    border: 1px solid #c8e6c9;
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 143, 57, 0.15);
  }

  .city-card h2 {
    color: #006f2e;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .city-card ul {
    padding-right: 1.25rem;
    margin: 0;
    list-style-type: '✔ ';
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  thead {
    background: #d4edda;
  }

  th, td {
    padding: 0.75rem;
    border: 1px solid #c8e6c9;
    text-align: center;
  }

  th {
    color: #006f2e;
    font-weight: bold;
  }

  .highlight-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #eaf9ee;
    border: 2px dashed #008f39;
    border-radius: 16px;
    box-shadow: inset 0 0 10px rgba(0,143,57,0.05);
  }

  .highlight-box h3 {
    color: #008f39;
    margin-bottom: 1rem;
  }

  .highlight-box a {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 1rem;
  }

  .highlight-box a:hover {
    background: #e65c00;
  }
.city-image {
  width: 100%;          /* اندازه مناسب */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);  
  margin-right: auto;  /* عکس سمت چپ */
  margin-left: 0;
  margin-top: 10px;    /* فاصله از بالا */
  margin-bottom: 0rem;
  display: block;      /* اجتناب از مشکلات فاصله */
}
/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Tahoma', sans-serif;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  font-size: 24px;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
  color: #aaa;
}
.footer-section.brand h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  max-width: 350px;
}
/* ریسپانسیو */
@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .urgent-content {
    flex-direction: column;
  }
  .urgent-icon {
    font-size: 35px;
    margin-bottom: 15px;
    margin-top: 0;
  }
}
/* واکنش‌گرایی برای موبایل */
@media (max-width: 600px) {
  #document-requirements {
    padding: 35px 20px;
  }
  }
  /* ریسپانسیو */

@media (max-width: 480px) {
  .process-list li {
    padding: 15px 50px 15px 20px; /* padding-right: 50px; padding-left: 20px */
    margin-bottom: 15px;
  }

  .process-list li::before {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    right: 12px;  /* تغییر مشابه */
    left: auto;
  }
}
/* چت باکس */
#avesta-chat {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 320px;
  max-height: 480px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-family: 'Vazirmatn', sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  z-index: 9999;
}
.chatbox.closed {
  transform: scale(0);
  opacity: 0;
}
.chatbox.open {
  transform: scale(1);
  opacity: 1;
}
.chat-header {
  background-color: #1c8a53;
  color: white;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}
.chat-body {
  padding: 12px;
  height: 300px;
  overflow-y: auto;
  background-color: #f9f9f9;
}
.chat-msg {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 90%;
}
.chat-msg.bot {
  background-color: #e8f5e9;
  color: #2e7d32;
  align-self: flex-start;
}
.chat-msg.user {
  background-color: #dcedc8;
  color: #33691e;
  align-self: flex-end;
}
#chat-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #1c8a53;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transition: background 0.3s ease;
}

#chat-toggle:hover {
  background-color: #157a47;
}