<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'vazir','Tahoma', sans-serif ;
  direction: rtl;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Ù‡Ø¯Ø± Ø³Ø§ÛŒØª */
header {
  background-color: #0cdf09e3;
  color: rgb(132, 235, 107);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: rgb(18, 245, 18);
}

nav {
  display: flex;
  gap: 25px;
  align-items: center;
  position: relative;
  font-family: Vazir ,sans-serif;
  font: weight 600;
}

nav a, .dropbtn {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  transition:background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap:6px;
  user-select: none;
}
/* Ù‡Ø§ÙˆØ± Ùˆ ÙÙˆÚ©ÙˆØ³ Ø±ÙˆÛŒ Ù„ÛŒÙ†Ú©â€ŒÙ‡Ø§ */
nav a:hover, .dropbtn:hover, nav a:focus, .dropbtn:focus {
  background-color: #f0a500; /* Ø±Ù†Ú¯ Ù†Ø§Ø±Ù†Ø¬ÛŒ Ù…Ù„Ø§ÛŒÙ… */
  color: #222;
  outline: none;
}
.dropdown {
  position: relative;
}

/* Ù…Ø­ØªÙˆØ§ÛŒ Ø¯Ø±Ø§Ù¾â€ŒØ¯Ø§ÙˆÙ† (Ø²ÛŒØ±Ù…Ù†Ùˆ Ù…Ø®ÙÛŒ Ø¨Ù‡â€ŒØµÙˆØ±Øª Ù¾ÛŒØ´â€ŒÙØ±Ø¶) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 200px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  right: 0; /* Ø±Ø§Ø³Øª Ú†ÛŒÙ† */
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform:translateY(10px) ;
  transition:opacity 0.25s ease, transform 0.25s ease;
}
.dropdown-content a img {
  margin: 10px 8px 10px 8px;
  width: 20px;
  height: auto;
  margin-right: 2px;
  vertical-align: middle;
}

/* Ù†Ù…Ø§ÛŒØ´ Ø²ÛŒØ±Ù…Ù†Ùˆ Ù‡Ù†Ú¯Ø§Ù… Ù‡Ø§ÙˆØ± */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-content a {
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  text-align: right;
  font-weight: 500;
  transition:background-color 0.2s ease;
  text-align: right;
}
/* Ù‡Ø§ÙˆØ± Ø±ÙˆÛŒ Ù„ÛŒÙ†Ú©â€ŒÙ‡Ø§ÛŒ Ø²ÛŒØ±Ù…Ù†Ùˆ */
.dropdown-content a:hover {
  background-color: #f0a500;
  color: #222;
}
/* Ø¢ÛŒÚ©ÙˆÙ† caret Ú©ÙˆÚ†Ú©â€ŒØªØ± Ùˆ Ú©Ù…ÛŒ ÙØ§ØµÙ„Ù‡ Ø¨ÛŒØ´ØªØ± */
.dropbtn i.fa-caret-down {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}
/* Ú†Ø±Ø®Ø´ Ø¢ÛŒÚ©ÙˆÙ† Ù‡Ù†Ú¯Ø§Ù… Ø¨Ø§Ø² Ø´Ø¯Ù† Ù…Ù†Ùˆ */
.dropdown:hover .dropbtn i.fa-caret-down {
  transform: rotate(180deg);
}
.contact-btn {
  background-color: #f0a500;
  color: black;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
  background-color: #c17f00;
  color: white;
}
.translation-service {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 150, 136, 0.15);
  border: 1px solid #d1f3ee;
}

.translation-service h2 {
  font-size: 2rem;
  color: #00796b;
  border-right: 5px solid #009688;
  padding-right: 14px;
  margin-bottom: 10px;
}

.translation-service h3 {
  font-size: 1.4rem;
  color: #009688;
  margin-bottom: 20px;
}

.translation-service p {
  font-size: 1.05rem;
  line-height: 2;
  color: #444;
  margin-bottom: 20px;
}

.translation-service ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.translation-service ul li {
  background-color: #e0f7fa;
  padding: 12px 18px;
  margin-bottom: 10px;
  border-right: 4px solid #009688;
  border-radius: 10px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.translation-service ul li:hover {
  background-color: #b2ebf2;
}

.translation-service h4 {
  font-size: 1.2rem;
  color: #00695c;
  margin-top: 30px;
  margin-bottom: 10px;
}
  .needs-of-spanish-translation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    background: #fdfdfd;
    font-family: "IRANSans", sans-serif;
  }

  .needs-of-spanish-translation h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
  }

  .needs-of-spanish-translation .subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 16px;
    margin-bottom: 40px;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }

  .card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #3498db;
  }

  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: #3498db;
  }

  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
  }

  .card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
  }

  .cta {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    background: #ecf0f1;
    padding: 20px;
    border-radius: 12px;
    color: #2c3e50;
  }

  @media (max-width: 768px) {
    .needs-of-spanish-translation h2 {
      font-size: 22px;
    }

    .card h3 {
      font-size: 17px;
    }

    .card p {
      font-size: 14px;
    }
  }
    .documents-needed {
    max-width: 1200px;
    margin: auto;
    padding: 40px 24px;
    font-family: "IRANSans", sans-serif;
    background: #f9f9f9;
  }

  .documents-needed h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
  }

  .documents-needed .intro {
    text-align: center;
    color: #555;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .doc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .doc-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    text-align: center;
    border-top: 4px solid #3498db;
    transition: all 0.3s ease;
  }

  .doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .doc-icon {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 12px;
  }

  .doc-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
  }

  .doc-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
  }

  .cta-button {
    text-align: center;
    margin-top: 40px;
  }

  .consult-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #3498db;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
  }

  .consult-btn i {
    margin-left: 8px;
  }

  .consult-btn:hover {
    background: #2c80b4;
  }

  @media (max-width: 768px) {
    .documents-needed h2 {
      font-size: 24px;
    }

    .consult-btn {
      font-size: 15px;
      padding: 12px 20px;
    }
  }
  .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;
}
/* Ú†Øª Ø¨Ø§Ú©Ø³ */
#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;
}</pre></body></html>