@font-face {
  font-family: "Rubik";
  src:
    url("/fonts/Rubik-Regular.woff2") format("woff2"),
    url("/fonts/Rubik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src:
    url("/fonts/Rubik-Light.woff2") format("woff2"),
    url("/fonts/Rubik-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src:
    url("/fonts/Vazirmatn-Regular.woff2") format("woff2"),
    url("/fonts/Vazirmatn-Regular.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zain";
  src:
    url("/fonts/Zain-Regular.woff2") format("woff2"),
    url("/fonts/Zain-Regular.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
body {
  padding: 0px;
  margin: 0px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}
.header {
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background-color: #87ceeb;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  color: white;
}
.brand-name {
  color: white;
  font-family: Vazirmatn, sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.banner {
  font-family: Vazirmatn, sans-serif;
  font-size: 12px;
  color: #ffffff;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 190px;
}
nav a {
  color: white;
  font-family: Vazirmatn, sans-serif;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
}
nav a:hover {
  transition: 0.3s ease;
  color: #1e3a5f;
}

.phone {
  z-index: 1000;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.phone:hover {
  transition: 0.3s ease;
  color: #1e3a5f;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 72px;
    background: #87ceeb;
    flex-direction: column;
    padding: 12px 20px;
    margin-left: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    z-index: 90;
  }

  nav.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav a {
    padding: 14px 0;
  }
  .banner {
    font-size: 11px;
  }

  nav a:last-child {
    border-bottom: none;
  }

  .phone {
    display: none;
  }
  .phone:hover {
    transition: 0.3s;
    color: #1e3a5f;
  }
  .menu-toggle {
    display: block;
    color: white;
  }

  .menu-toggle:hover {
    opacity: 0.7;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 425px) {
  nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 72px;
    background: #87ceeb;
    flex-direction: column;
    padding: 12px 20px;
    margin-left: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    z-index: 90;
  }

  nav.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav a {
    padding: 14px 0;
  }

  nav a:last-child {
    border-bottom: none;
  }
  .banner {
    font-size: 11px;
  }

  .phone {
    display: none;
  }
  .phone:hover {
    transition: 0.3s;
    color: #1e3a5f;
  }
  .menu-toggle {
    display: block;
    color: white;
  }

  .menu-toggle:hover {
    opacity: 0.7;
  }

  body.menu-open {
    overflow: hidden;
  }
}
@media (max-width: 425px) {
  nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 72px;
    background: #87ceeb;
    flex-direction: column;
    padding: 12px 20px;
    margin-left: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    z-index: 90;
  }

  nav.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav a {
    padding: 14px 0;
  }

  nav a:last-child {
    border-bottom: none;
  }
  .banner {
    font-size: 9.7px;
  }

  .phone {
    display: none;
  }
  .phone:hover {
    transition: 0.3s;
    color: #1e3a5f;
  }
  .menu-toggle {
    display: block;
    color: white;
  }

  .menu-toggle:hover {
    opacity: 0.7;
  }

  body.menu-open {
    overflow: hidden;
  }
  .hero-content .hero-lead {
    text-align: center;
  }
}
.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  padding: 90px 8%;
  background: linear-gradient(90deg, #e9f4fb, #f6f9fc);
  align-items: center;
}

.hero-content h1 {
  font-family: Zain, sans-serif;
  font-size: 38px;
  margin-bottom: 24px;
  color: #123461;
}

.hero-content p {
  font-family: Vazirmatn, sans-serif;
  font-size: 16.5px;
  line-height: 1.95;
  color: #4b5563;
  margin-bottom: 14px;
}

.hero-content p:not(.hero-lead) {
  text-align: center;
  max-width: 70ch;
}
.hero-content .hero-lead {
  max-width: 70ch;
  font-size: 18px;
  font-weight: 500;
  color: #334155;
}

.hero-image img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 22px;
}

@media (max-width: 900px) {
  .hero {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 6%;
  }

  .hero-image {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p,
  .hero-content .hero-lead {
    max-width: 100%;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-image img {
    max-height: 320px;
  }
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

.flow {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.flow-block {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.flow-block.reverse {
  direction: ltr;
}

.flow-block.reverse .text {
  direction: rtl;
}

.index {
  font-family: Vazirmatn, sans-serif;
  font-size: 52px;
  font-weight: bold;
  color: #c7dff1;
}

.text h2 {
  font-family: Zain, sans-serif;
  margin: 0 0 12px 0;
  font-size: 24px;
}

.text p {
  font-family: Vazirmatn, sans-serif;
  margin: 0;
  line-height: 1.8;
  color: #4b5563;
}

.media img {
  width: 100%;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .flow-block {
    grid-template-columns: 1fr;
  }

  .index {
    font-size: 36px;
  }
}

.footer {
  background: #87ceeb;
  color: #fff;
  padding: 40px 20px 10px;
  margin-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #1565c0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-col h3,
.footer-col h4 {
  font-family: Zain;
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin: 7px 0;
  font-family: Vazirmatn, sans-serif;
  transition: 0.25s;
}

.footer-col a:hover {
  color: #1e3a5f;
}
.footer-col .footer-p {
  font-family: Vazirmatn, sans-serif;
}
.footer-bottom {
  text-align: center;
  padding-top: 18px;
  font-family: Vazirmatn, sans-serif;
  color: #ffff;
  font-size: 14px;
}

@media (max-width: 768px) {
  .contact-map .map img {
    width: 100%;
    height: 100%;
  }
  .footer {
    padding: 30px 15px 10px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col a {
    font-size: 14px;
  }
  .flow-block.reverse {
  direction: rtl;
}

  
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col h3,
  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-col a {
    margin: 5px 0;
  }

  .footer-bottom {
    font-size: 13px;
    padding-top: 14px;
  }
}

.contact-map {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 80px 8%;
  background: #eef6fb;
  border-radius: 20px;
  align-items: start;
}

.contact-info h2 {
  direction: rtl;
  text-align: right;
  font-family: Zain, sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-info p {
  direction: rtl;
  text-align: right;
  font-family: Vazirmatn, sans-serif;
  font-size: 16px;
  margin: 6px 0;
  color: #4b5563;
}
.contact-info .contact-tel {
  font-family: Vazirmatn, sans-serif !important;
}

.contact-map .map img {
  border-radius: 20px;
}

@media (max-width: 900px) {
  .contact-map {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 24px;
  }
}
