@font-face {
  font-family: "Peyda";
  src: url("/portal/nd/fonts/Peyda-Thin.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Peyda";
  src: url("/portal/nd/fonts/Peyda-ExtraLight.ttf") format("truetype");
  font-weight: 200;
}

@font-face {
  font-family: "Peyda";
  src: url("/portal/nd/fonts/Peyda-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Peyda";
  src: url("/portal/nd/fonts/Peyda-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Peyda";
  src: url("/portal/nd/fonts/Peyda-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Peyda";
  src: url("/portal/nd/fonts/Peyda-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Peyda";
  src: url("/portal/nd/fonts/Peyda-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Peyda";
  src: url("/portal/nd/fonts/Peyda-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

@font-face {
  font-family: "Peyda";
  src: url("/portal/nd/fonts/Peyda-Black.ttf") format("truetype");
  font-weight: 900;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

body,
button,
a,
span {
  font-family: "Peyda", sans-serif !important;
}

.description a{
  color: #303030 !important;
  font-weight: 700;
}
/* ساختار کلی هدر */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.6);

  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* کانتینر داخلی هدر */
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

/* دکمه مشاوره */
.btn-call {
  background-color: #26aab7;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.btn-call div {
  background-color: #26AAB7;
}

.btn-call .btn-call-white {
  background-color: #fff;
  color: #081853;
  padding: 20px 25px;
  border-radius: 50px 0 0 50px;
  border: 1px solid #081853;
  border-radius: 50px;
}


.btn-call i {
  background-color: #26aab7;
  padding: 10px 15px;
  border-radius: 0 50px 50px 0;
  color: #fff;
}

.btn-call:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* لوگو وسط */
.logo img {
  height: 80px;
  transition: transform 0.3s ease;
}

/* منو سمت چپ */
.menu-btn {
  background-color: #07174e;
  color: #fff;
  padding: 20px 25px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 50px;
  gap: 5px;
}

.menu-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.menu-btn:hover {
  background-color: #0c1b31;
}

/* افکت کوچک شدن هنگام اسکرول */
header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* آیکن سرچ موبایل */
.search-btn-mobile {
  display: none;
  background: #fff;
  border: none;
  color: #0c1b31;
  font-size: 1.5rem;
  cursor: pointer;
  border: 1px solid #0c1b31;
  padding: 15px 16px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  align-items: center;
  justify-content: center;
}

/* مودال جستجو */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 23, 78, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 20000;
  justify-content: center;
  align-items: center;
}

.search-modal.active {
  display: flex;
}

.search-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  width: 80%;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.search-content input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 10px;
  border-radius: 8px;
  background: #f3f3f3;
}

.search-content button {
  background: #07174e;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== منوی کشویی سمت راست ===== */
.sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: rgba(7, 23, 78, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #fff;
  z-index: 1000;
  transition: right 0.4s ease;
  padding: 60px 25px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.25);
}

/* وقتی باز شد */
.sidebar.active {
  right: 0;
}

/* دکمه بستن منو */
.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

/* لینک‌ها در منو */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: right;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #26aab7;
}

/* --- باکس بازشونده کشورها در منوی کناری --- */
.dropdown {
  position: relative;
}

.dropdown-box {
  position: absolute;
  right: 100%;
  top: 0;
  background: #ffffff;
  color: #000;
  width: 250px;
  border-radius: 12px;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  padding: 15px;
  z-index: 1200;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.dropdown-box a {
  color: #0c1b31 !important;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.3s;
  padding-right: 10px;
}

.dropdown-box a:hover {
  background: #f0f4ff;
  color: #0077b6;
}

/* نمایش باکس در هاور */
.dropdown:hover .dropdown-box {
  display: flex;
}

/* انیمیشن نرم باز شدن */
.dropdown-box {
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-box {
  opacity: 1;
  transform: translateX(0);
}

.image-container {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: 100px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
}

/* عکس اصلی */
.main-image {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  /* عکس بالای مربع‌ها */
  filter: grayscale(100%);
  object-fit: cover;
}

/* مربع‌ها */
.square {
  position: absolute;
  width: 255px;
  height: 255px;
  background-color: #07174e;
  z-index: 1;
  /* زیر عکس */
  border-radius: 15px;
}

/* موقعیت پایین چپ */
.square.bottom-left {
  bottom: -25px;
  left: -25px;
}

/* موقعیت بالا راست */
.square.top-right {
  top: -25px;
  right: -25px;
}

.visa-types {
  padding: 60px 0;
  background-color: #fff;
  padding-bottom: 30px;
}
.visa-types .title {
  font-weight: 900;
  font-size: 3rem;
  color: #303030;
  margin-bottom: 10px;
}

.visa-types .subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.visa-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.visa-btn {
  border: 1.5px solid #ddd;
  border-radius: 40px;
  padding: 7px 19px;
  background: transparent;
  color: #0c1b31;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.visa-btn i {
  font-size: 1rem;
}

/* حالت hover */
.visa-btn:hover {
  border-color: #26aab7;
  color: #26aab7;
}

/* دکمه فعال */
.visa-btn.active {
  background: #26aab7;
  color: #fff;
  border-color: #26aab7;
}

.visa-btn.active:hover {
  opacity: 0.9;
}

.study-destinations {
  padding: 36px 0;
  padding-top: 0;
}
/* چینش دو ستونه */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* بخش تصویر */
.image-area {
  flex: 0 0 35%;
  /* عرض 35 درصد */
  display: flex;
  justify-content: center;
}

.image-area img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* بخش متن */
.text-area {
  flex: 1;
  color: #333;
}

.text-area h2 {
  font-weight: 700;
  font-size: 1.8rem;
  color: #303030;
  margin-bottom: 15px;
  line-height: 1.6;
}

.text-area h2 span {
  color: #26aab7;
}

.text-area p {
  line-height: 2;
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}

.more-link {
  color: #26aab7;
  text-decoration: none;
  font-weight: 600;
}

.more-link:hover {
  color: #0c1b31;
}

/* دکمه‌های کشورها */
.country-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.country-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid #ddd;
  border-radius: 40px;
  background: #fff;
  color: #0c1b31;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.country-btn img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.country-btn:hover {
  border-color: #26aab7;
  color: #26aab7;
}

.country-btn.active {
  background: #07174e;
  color: #fff;
  border-color: #07174e;
}

.ztc-footer {
  background-color: #07174e;
  color: #fff;
  padding: 70px 0 0px;
  direction: rtl;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

/* بخش تماس */
.footer-contact {
  background-color: #fff;
  color: #0c1b31;
  border-radius: 20px;
  padding: 25px 30px;
  flex: 0 0 30%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-contact h4 {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 15px;
  line-height: 36px;
}

.footer-contact span {
  color: #26aab7;
}

.phone-box {
  background: #26aab7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
  gap: 10px;
  margin-right: 15px;
}

.phone-box i {
  font-size: 1rem;
}

.phone-number {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.address {
  font-size: 0.9rem;
  text-align: center;
  color: #333;
  direction: rtl;
  font-weight: 600;
}

.address i {
  color: #26aab7;
  margin-left: 5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  color: #07174e;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #26aab7;
}

/* لینک‌های مفید */
.footer-links {
  display: flex;
  gap: 60px;
  flex: 0 0 35%;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 100;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 2.2;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #26aab7;
}

/* توضیح مجموعه */
.footer-about {
  flex: 0 0 30%;
}

.footer-about h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #A1F6FF;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #dce1f1;
}

/* پایین فوتر */
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 50px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #37B7C4;
  background: #fff;
  padding: 18px;
  margin-bottom: 0;
  border-radius: 25px 25px 0px 0px;
  margin-right: 107px !important;
  font-weight: 600;
}

.trigle {
  position: fixed;
  bottom: 45px;
  right: 25px;
  cursor: pointer;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.trigle:hover {
  background-color: #26aab7;
  transform: translateY(-5px);
}

.trigle img {
  height: auto;
  transition: transform 0.3s ease;
  width: 60px;
  height: 60px;
  -webkit-transition:;
  -moz-transition:;
  -ms-transition:;
  -o-transition:;
}

.trigle:hover img {
  transform: translateY(-3px);
}

/* ===== دکمه تماس ثابت پایین صفحه (سمت چپ) ===== */
.contact-float-btn {
  position: fixed;
  bottom: 47px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  background-color: #26aab7;
  color: #fff;
  padding: 22px;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.contact-float-btn i {
  font-size: 1.1rem;
}

.contact-float-btn:hover {
  background-color: #0c1b31;
  transform: translateY(-4px);
}

/* ===== فقط در موبایل نمایش بده ===== */
@media (min-width: 769px) {
  .contact-float-btn {
    display: none;
  }
}

/* واکنش‌گرا */
@media (max-width: 991px) {
  .content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .image-area {
    flex: 0 0 100%;
  }

  .text-area {
    flex: 0 0 100%;
  }

  .country-buttons {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-contact {
    flex: 0 0 100%;
  }

  .footer-about {
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 768px) {
  .btn-call {
    border-radius: 100%;
    padding: 11px 7px;
  }

  .visa-types {
    padding: 0px 0;
  }

  .visa-types .title {
    font-size: 2rem;
  }

  .study-destinations {
    padding: 20px 0;
  }

  .text-area h2 {
    font-size: 1.3rem;
  }

  .visa-buttons {
    gap: 10px;
  }

  .visa-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .menu-btn span {
    display: none;
  }

  .menu-btn i {
    margin-right: 0px;
    font-size: 1.2rem;
  }

  .btn-call span {
    display: none;
  }

  .menu-btn {
    border-radius: 100%;
    padding: 20px 22px;
  }

  .image-container {
    width: 90%;
  }

  .square {
    width: 60px;
    height: 60px;
  }

  .square.bottom-left {
    bottom: -15px;
    left: -15px;
  }

  .square.top-right {
    top: -15px;
    right: -15px;
  }

  .image-container {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 31px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Landings By Mim */

.page-hero {
  background: #fff;
  direction: rtl;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* تصویر سمت چپ */
.hero-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.image-wrapper img:first-child {
  width: 100%;
  display: block;
}

.flag-icon {
  position: absolute;
  top: 25px;
  left: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* متن سمت راست */
.hero-text {
  flex: 0 0 55%;
  color: #0c1b31;
}

.subtitle {
  font-size: 45px;
  font-weight: 300;
  color: #081853;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.7;
  color: #081853;
  margin-bottom: 15px;
}


.description {
  color: #444;
  line-height: 2;
  font-size: 1rem;
  margin-bottom: 30px;
}

/* دکمه CTA */
.cta-btn {
  background: #26aab7;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #0c1b31;
}

.requirements-section {
  background: #fff;
  padding: 20px 0;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #303030;
  margin-bottom: 15px;
}

.section-title span {
  color: #303030;
  background: rgba(38, 170, 183, 0.4);
  padding: 0 5px;
  border-radius: 6px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1rem;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* گرید کارت‌ها */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.req-card {
  background: #fff;
  border: 1px solid #e1e4ec;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.req-card:hover {
  border-color: #26aab7;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
}

.req-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c1b31;
  margin-bottom: 10px;
}

.req-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* سکشن کلی */
.study-conditions {
  background-color: #fff;
  padding: 46px 0;
  direction: rtl;
}

.conditions-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* متن سمت راست */
.conditions-text {
  flex: 0 0 45%;
}

.conditions-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0c1b31;
  margin-bottom: 15px;
}

.conditions-text p {
  color: #555;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 30px;
}

/* آکاردئون */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border: 1px solid #e3e6ef;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  border-radius: 35px !important;
}

.accordion-header {
  background: #fff;
  color: #0c1b31;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 25px;
  width: 100%;
  text-align: right;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #f6f8fb;
}

.accordion-header i {
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header {
  color: #26aab7;
  border-bottom: 1px solid #d9edf2;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 15px 25px;
  color: #444;
  line-height: 1.9;
  font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
  display: block;
  background: #f9fbfc;
  border-top: 1px solid #e6f2f4;
}

.conditions-image {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 550px;
  aspect-ratio: 16/9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  display: block;
  background: #000;
}

/* دکمه پلی */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #07174e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: #26aab7;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.study-benefits {
  background: #fff;
  padding: 46px 0;
  text-align: center;
  padding-top: 0;
}

.study-benefits h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #303030;
  margin-bottom: 15px;
  text-align: right;
}

.study-benefits p {
  color: #303030;
  margin: 0 auto 40px;
  line-height: 2;
  font-size: 1rem;
  text-align: right;
}

.benefits-box {
  background: #E4FDFF;
  border-radius: 25px;
  padding: 40px 50px;
  text-align: right;
  position: relative;
  direction: rtl;
}

.benefits-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 40px;
}

.benefits-box li {
  color: #303030;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.9;
  break-inside: avoid;
}
.benefits-box li span{
  color: #246E76;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.9;
  break-inside: avoid;
}


.benefits-box li::before {
  content: "✔";
  color: #246E76;
  margin-left: 8px;
  font-weight: bold;
}

.cta-btn {
  display: inline-block;
  background: #26aab7;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #0c1b31;
}

.top-universities {
  direction: rtl;
  padding: 38px 0;
  background-color: #fff;
  padding-top: 0;
}

.top-universities .text-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #081853;
  margin-bottom: 20px;
}

.top-universities .text-content h2 span {
  color: #26aab7;
}

.top-universities .text-content p {
  color: #555;
  line-height: 2;
  margin-bottom: 25px;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  background: none;
  border: 1px solid #d9d9d9;
  color: #0c1b31;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-controls button:hover {
  background: #26aab7;
  color: #fff;
  border-color: #26aab7;
}

/* --- کارت‌ها --- */
.universities-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 15px;
}

.university-card {
  position: relative;
  min-width: 280px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: grab;
  transition: transform 0.3s ease;
}

.university-card:hover {
  transform: translateY(-5px);
}

.university-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.overlay {
  backdrop-filter: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 84%;
  padding: 11px;
  background: rgba(109, 108, 108, 0.6);
  color: #fff;
  text-align: center;
  border-radius: 20px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  margin-left: 23px;
  margin-bottom: 10px;
}
.overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#more-text-startup{
  display: none;
}

.rank-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.rank-tags span {
  background: #fff;
  color: #0c1b31;
  border-radius: 25px;
  padding: 5px 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

.apply-steps {
  background-color: #fff;
  text-align: center;
  padding-bottom: 50px;
}

.apply-steps h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0c1b31;
  margin-bottom: 0px;
}


.steps-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-btn {
  display: inline-block;
  background: #26aab7;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #0c1b31;
}

.apply-deadlines {
  background-color: #fff;
}

.deadline-box {
  background: #F8F8F8;
  border: 2px solid #cfcfcf;
  border-radius: 25px;
  padding: 50px 60px;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  direction: rtl;
}

.deadline-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #081853;
  text-align: right;
  margin-bottom: 25px;
}

.deadline-box p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: justify;
}

.deadline-box ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.deadline-box li {
  position: relative;
  margin-bottom: 20px;
  color: #0c1b31;
  font-size: 1rem;
  line-height: 2;
  background: rgba(38, 170, 183, 0.03);
  border-radius: 12px;
  padding: 15px 20px;
  transition: background 0.3s ease;
}

.deadline-box li:hover {
  background: rgba(38, 170, 183, 0.08);
}

.deadline-box li::before {
  content: "•";
  color: #26aab7;
  font-weight: bold;
  margin-left: 10px;
}

.deadline-box strong {
  color: #26aab7;
}

.success-stories {
  background-color: #fff;
  padding: 37px 0;
  text-align: center;
  direction: rtl;
}

.section-header {
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0c1b31;
  margin-bottom: 15px;
}

.section-header p {
  color: #444;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 25px;
}

.section-header .btn-outline {
  display: inline-block;
  border: 2px solid #26aab7;
  color: #26aab7;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.section-header .btn-outline:hover {
  background-color: #26aab7;
  color: #fff;
}

/* گرید ویدیوها */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: start;
}

/* کارت ویدیو */
.video-card {
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* خود ویدیو */
.video-card video {
  width: 100%;
  height: 320px;
  border-radius: 25px;
  object-fit: cover;
  display: block;
}

/* کنترل‌ها ساده‌تر در موبایل */
video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.4);
}

.education-system {
  direction: rtl;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  color: #0c1b31;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.section-header p {
  color: #555;
  line-height: 1.9;
  font-size: 1rem;
}

/* گرید باکس‌ها */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.edu-card {
  border: 1.5px solid #7CA7FD;
  border-radius: 25px;
  padding: 25px 30px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  transition: all 0.3s ease;
}

.edu-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

/* شماره‌ها */
.edu-number {
  font-weight: 800;
  color: #081853;
  border: 2px solid #081853;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: #fff;
  flex-shrink: 0;
}

.edu-text h3 {
  font-size: 1.05rem;
  color: #081853;
  margin-bottom: 8px;
  font-weight: 700;
}

.edu-text p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

.scholarships-section {
  direction: rtl;
  padding: 100px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: #0c1b31;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.section-header p {
  color: #555;
  line-height: 1.9;
  margin: 0 auto;
  text-align: right;
}

/* کادر اصلی */
.scholarship-box {
  background: #f9fbfc;
  border: 1.5px solid #e2ebef;
  border-radius: 30px;
  padding: 40px;
  margin-top: 50px;
}

/* گرید بورسیه‌ها */
.scholarship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* کارت بورسیه */
.scholarship-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  padding: 25px;
  transition: all 0.3s ease;
}

.scholarship-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}

/* عنوان بورسیه */
.scholarship-card .title {
  background: #26aab7;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 35px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
/* توضیحات */
.scholarship-card p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

.scholarship-card a {
  color: #26aab7;
  font-weight: 500;
  text-decoration: none;
}

.scholarship-card a:hover {
  text-decoration: underline;
}

.readmore {
  color: #26aab7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.readmore:hover {
  color: #0c1b31;
}

.more-text {
  color: #555;
}

.faq-section {
  direction: rtl;
  padding: 100px 0;
  padding-top: 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-weight: 800;
  color: #081853;
  margin-bottom: 10px;
  text-align: right;
}

.section-header p {
  color: #303030;
  font-size: 0.95rem;
}
.section-header2 h2 {
  font-weight: 800;
  color: #303030;
  margin-bottom: 10px;
  text-align: center;
}

.section-header2 p {
  color: #303030;
  font-size: 0.95rem;
  text-align: center;
}

/* ساختار کلی */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 20px;
  width: 100%;
}

.faq-content {
  max-height: 238px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 20px;
}

.show-more-btn {
    background: #26AAB7;
    color: #fff;
    font-weight: 600;
    border-radius: 35px;
    padding: 10px 25px;
    text-decoration: none;
    border: 1px solid #26AAB7;
    transition: all 0.3s ease;
    margin-top: 25px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}
.show-more-btn :hover {
    background: #fff;
    color: #0C1B31;
    border-color: #0C1B31;
}
.show-more-btn:focus {
  outline: none;
}

.faq-item {
  border: 1.5px solid #e2ebef;
  border-radius: 35px;
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
}

.faq-item.active {
  border-color: #7CA7FD;
  background: #f9fbfc;
}

/* سوال */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: right;
  font-weight: 600;
  color: #0c1b31;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #333;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #7CA7FD;
}

/* پاسخ */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 25px 25px;
}

.faq-answer p {
  color: #555;
  line-height: 1.9;
  font-size: 0.95rem;
}

.readmore-section {
  direction: rtl;
  text-align: center;
  padding: 60px 0;
  background: #fff;
}

.readmore-content {
  max-width: 900px;
  margin: 0 auto;
  color: #555;
  line-height: 2;
  font-size: 0.95rem;
}

/* انیمیشن باز و بسته شدن متن */
#extra-text {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#extra-text.show {
  display: inline;
  opacity: 1;
}

.readmore-content p {
  text-align: justify;
}

.readmore-btn {
  margin-top: 25px;
}

.readmore-btn button {
  background: #26aab7;
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.readmore-btn button:hover {
  background: #0c1b31;
}

/* واکنش‌گرا */
@media (max-width: 991px) {
  .apply-steps h2 {
    font-size: 1.2rem;
  }

  .steps-wrapper img {
    max-width: 100%;
  }

  .video-wrapper {
    max-width: 100%;
    aspect-ratio: 16/9;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    flex: 0 0 100%;
    order: 1;
  }

  .hero-text {
    flex: 0 0 100%;
    order: 2;
  }

  .flag-icon {
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
  }

  .conditions-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .conditions-text,
  .conditions-image {
    flex: 0 0 100%;
  }

  .accordion-item {
    border-radius: 15px;
  }

  .video-content iframe {
    height: 300px;
  }

  .benefits-box ul {
    columns: 1;
  }

  .study-benefits p {
    font-size: 0.95rem;
  }
}

/* ===== حالت موبایل ===== */
@media (max-width: 768px) {
  .sidebar {
    width: 220px;
    padding-right: 12px !important;
  }

  .dropdown-box {
    width: 209px;
  }

  .search-btn-mobile {
    display: flex;
    /* نمایش آیکن سرچ */
  }

  header .container {
    justify-content: space-between;
  }

  .btn-call {
    border: none;
    display: none;
  }

  .btn-call {
    border: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .scholarship-box {
    padding: 30px 20px;
  }

  .scholarship-grid {
    grid-template-columns: 1fr;
  }

  .education-system {
    direction: rtl;
    background-color: #fff;
    padding: 0px 0;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }

  .edu-card {
    flex-direction: column;
    text-align: right;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .deadline-box {
    padding: 30px 25px;
  }

  .deadline-box h2 {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .deadline-box p,
  .deadline-box li {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .req-card {
    padding: 20px;
  }

  .top-universities {
    padding: 30px 0;
  }

  .benefits-box {
    padding: 20px 21px;
  }
}


.breadcrumb-section {
  direction: rtl;
  background: #fff;
  padding: 10px 0;
  color: #666;
}

.breadcrumb-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.breadcrumb-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.breadcrumb-right a {
  text-decoration: none;
  color: #0C1B31;
  transition: color 0.3s ease;
}

.breadcrumb-right a:hover {
  color: #26AAB7;
}

.breadcrumb-right span {
  color: #aaa;
}

.current-page {
  color: #666;
  font-weight: 500;
}

.breadcrumb-left {
  font-size: 0.9rem;
  color: #999;
}



.article-page {
  direction: rtl;
}

.article-hero img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.audio-player {
  margin-bottom: 25px;
  text-align: center;
}

.article-div {
  border: 1px solid #D7D7D7;
  padding: 25px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  margin: 20px 0;
}

.article-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0C1B31;
  line-height: 1.8;
  margin-bottom: 15px;
}

.article-list span {
  font-weight: 700;
  color: #0C1B31;
  /* رنگ تیره برای تاکید */
}

.article-text {
  color: #555;
  line-height: 2;
  margin-bottom: 25px;
}

.article-list {
  list-style: none;
  padding: 0;
  line-height: 2;
  color: #444;
}


/* سایدبار */
.sidebar12 {
  border-right: 1px solid #E2EBEF;
  padding-right: 25px;
}

.share-box {
  background: #F7FBFC;
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.share-icons a {
  color: #26AAB7;
  margin: 0 8px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.share-icons a:hover {
  color: #0C1B31;
}

.toc-box,
.countries-box {
  background: #fff;
  border: 1px solid #E2EBEF;
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 25px;
}

.toc-box h4,
.countries-box h4 {
  color: #0C1B31;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #26AAB7;
  display: inline-block;
  padding-bottom: 5px;
}

.toc-box ul,
.countries-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-box ul li {
  padding-bottom: 10px;
}

/* مخصوص فهرست کشورها */
.countries-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
  padding: 0;
  margin: 0;
}

.countries-box li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid #E2EBEF;
  border-radius: 50px;
  padding: 10px 18px;
  color: #0C1B31;
  font-size: 0.9rem;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.countries-box li a {
  color: #303030;
}

.countries-box li img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

/* افکت هاور */
.countries-box li:hover {
  background-color: #0C1B31;
  color: #fff;
  border-color: #0C1B31;
}

.countries-box li:hover a {
  color: #fff;

}

.countries-box li:hover img {
  border: 1px solid #fff;
}

/* لینک‌ها داخل toc-box */
.toc-box a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.toc-box a:hover {
  color: #26AAB7;
}


.cta-bar {
  direction: rtl;
  background: linear-gradient(90deg, #2856A4 0%, #0C1B31 100%);
  border-radius: 30px;
  padding: 15px 25px;
  color: #fff;
  margin: 40px 0;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


.cta-btn {

  background: #26AAB7;

  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  padding: 10px 25px;
  text-decoration: none;
  border: 1px solid #26AAB7;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #26AAB7;
  border-color: #26AAB7;
}
.cta-btn2 {

  background:  #fff;

  color: #26AAB7;
  font-weight: 600;
  border-radius: 25px;
  padding: 10px 25px;
  text-decoration: none;
  border: 1px solid #26AAB7;
  transition: all 0.3s ease;
}

.cta-btn2:hover {
  background: #26AAB7;
  color: #fff;
  border-color: #26AAB7;
}



.cta-right p {
  margin: 0;
  font-size: 0.9rem;
  color: #D6E6F2;
}

.cta-phone {
  display: inline-block;
  margin-top: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-phone i {
  margin-left: 6px;
  color: #26AAB7;
}


#methods {
  direction: rtl;
}

.steps-section {
  text-align: right;
  direction: rtl;
}

.steps-section h3 {
  color: #0C1B31;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.steps-section .intro {
  color: #555;
  line-height: 2;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step-card {
  background: #E9F7F9;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #CFE9EC;
}

.step-card:hover {
  background: #DFF3F5;
}

.step-card h4 {
  font-size: 1.1rem;
  color: #0C1B31;
  margin-bottom: 12px;
}

.step-card p {
  color: #333;
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 10px;
}

.step-card .more-text {
  display: none;
}

.step-card .readmore {
  display: inline-block;
  color: #26AAB7;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.step-card .readmore:hover {
  color: #0C1B31;
}


.consultation-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;

}

.form-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.form-image {
  position: relative;
  max-width: 100%;
  width: 50%;
}

.form-image img {
  width: 100%;
  border-radius: 10px;
}

.session-count {
  position: absolute;
  bottom: -16px;
  left: -50px;
  background-color: #07174E;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.form-content {
  width: 50%;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;

}

.form-content h2 {
  color: #0c1b31;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.consultation-form label {
  font-size: 0.95rem;
  color: #333;
}

.consultation-form input {
  padding: 15px;
  font-size: 1rem;
  border: 1px solid #e2ebef;
  border-radius: 25px;
  width: 100%;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.consultation-form .consultation-type {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

.consultation-form .consultation-type input {
  margin-right: 5px;
}

.consultation-form button {
  background-color: #26aab7;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.consultation-form button:hover {
  background-color: #0c1b31;
}

/* واکنش‌گرا */
@media (max-width: 992px) {
  .main-content {
    margin-bottom: 40px;
  }

  .sidebar {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .form-wrapper {
    flex-direction: column;
  }

  .form-content,
  .form-image {
    width: 100%;

  }

  .form-content h2 {
    color: #0c1b31;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .consultation-section {
    padding: 9px 0;
  }

  .session-count {
    font-size: 1rem;
    bottom: 15px;
    left: 15px;
  }

  .breadcrumb-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .breadcrumb-left {
    font-size: 0.85rem;
  }

  /* افکت هاور */
  .countries-box li:hover {
    background-color: #0C1B31;
    color: #fff;
    border-color: #0C1B31;
  }

  .article-title {
    font-size: 1.3rem;
  }

  .article-div {
    padding: 15px;
  }

  .article-text {
    text-align: justify;
  }

  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-right {
    text-align: center;
  }

  .cta-btn {
    display: inline-block;
  }
}


/* Landings By Mim */


/*S Work Landing By mim */

.job-section {
  background: #e9e9e9;
  padding: 10px 24px;
  border-radius: 60px;
  width: 100%;
  display: block;
  direction: rtl;
  text-align: right;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.job-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}


.job-sub {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}


.nav-tabs-custom {
  list-style: none;
  padding: 0px;
  margin: 0;
  display: flex;
  direction: rtl;
  border: 1px solid #081853;
  border-radius: 40px;
  overflow: hidden;
  margin: 30px 0;
}

.nav-tabs-custom li {
  flex: 1;
  text-align: center;
  border-left: 1px solid #d5d5d5;
}

.nav-tabs-custom li:first-child {
  border-left: none;
}

.nav-tabs-custom li a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: #081853;
  font-size: 16px;
  font-weight: 500;
}

.nav-tabs-custom li.active a {
  background: #071a52;
  color: #fff;
}

.nav-tabs-custom li:not(.active) a:hover {
  background: #f5f5f5;
}


html {
  scroll-behavior: smooth;
}



.visa-cards-wrapper {
  display: flex;
  gap: 30px;
  direction: rtl;
  justify-content: space-between;
  padding: 20px 0;
}


.visa-card {
  width: 33.33%;
  background: #fff;
  border: 2px solid #9ddcf4;
  border-radius: 25px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  padding: 0 25px;
  padding-top: 150px;
}






.visa-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  color: #000;
  text-align: right;
}


.visa-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 0;
  text-align: right;
}


.success-stories-work {
  direction: rtl;
  background-color: #fff;
  text-align: center;
}

.section-header-work {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.two-column-list {
  display: flex;
  justify-content: space-between;
  direction: rtl;
  gap: 40px;
}

.two-column-list ul {
  list-style: disc;
  padding-right: 20px;
  margin: 0;
  text-align: right;
}

.two-column-list li {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 8px;
  color: #333;
}




.info-section {
  direction: rtl;
}

.info-block {
  margin-bottom: 28px;
}


.info-title {
  position: relative;
  display: inline-block;
  padding-left: 60px;
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: #081853;
  margin-right: 30px;
}


.info-title::before {
  content: "";
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 8px;
  border-radius: 4px;
  background-color: #081853;
}

.info-block p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #333333;
}


.contact-strip {
  direction: rtl;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-radius: 40px;
  color: #ffffff;
  background: #071a52 url('/image/call-bg.png') center/cover no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}


.contact-left {
  display: flex;
  align-items: center;
  gap: 14px;
}


.social-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
  font-size: 18px;
}

.social-circle:hover {
  background-color: #ffffff;
  color: #071a52;
}


.phone-btn {
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.phone-btn i {
  font-size: 16px;
}

.phone-btn:hover {
  background-color: #f3f3f3;
  color: #07174E;
}


.contact-right h3 {
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 700;

}

.contact-right p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.9;
}

.cta-video-work {
  background: #fff;
  color: #26AAB7;
  font-weight: 600;
  border-radius: 25px;
  padding: 10px 25px;
  text-decoration: none;
  border: 1px solid #26AAB7;
  transition: all 0.3s ease;
}

.cta-video-work:hover {
  background: #26AAB7;
  color: #fff;
  border-color: #26AAB7;
}

.steps-section {
  background-color: #e9fbff;
  font-family: inherit;
  border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  -ms-border-radius: 17px;
  -o-border-radius: 17px;
}

.steps-grid2 .step-item {
  position: relative;
  padding: 32px 40px 24px;
  min-height: 170px;
}


.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #081853;
  margin-bottom: 0.75rem;
  text-align: right;
  margin-right: 30px;
}

.step-text {
  font-size: 0.9rem;
  color: #4b5c6b;
  margin: 0;
  line-height: 1.8;
  text-align: right;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 4px;
  inset-inline-end: 26px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #00bcd4;
  color: #00bcd4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: #f7feff;
}




/* نسخه موبایل */
@media screen and (max-width:768px) {
  .steps-grid2 .col-12:not(:last-child) .step-item {
    border-bottom: 1px solid #d9f3fa;
  }

  .nav-tabs-custom li a {
    font-size: 12px;
  }

  .visa-cards-wrapper {
    flex-direction: column;
  }

  .visa-card {
    width: 100%;
  }

  .two-column-list {
    flex-direction: column;
  }

  .contact-strip {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .contact-right {
    width: 100%;
  }

  .contact-left {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .steps-grid2 .col-md-6 {
    border-bottom: 1px solid #cdeff6;
  }


  .steps-grid2 .col-md-6:nth-child(n + 4) {
    border-bottom: none;
  }


  .steps-grid2 .col-lg-4:nth-child(3n + 1),
  .steps-grid2 .col-lg-4:nth-child(3n + 2) {
    border-left: 1px solid #cdeff6;
  }
}



/* طراحی عمومی */
.contact-usDiv {
  display: flex;
  justify-content: space-between;
  padding: 20px;
gap: 20px;
}

.contact-usDiv-one .contact-image {
  width: 100%;
  height: auto;
}

.contact-usDiv-two {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-usDiv-three {
  width: 30%;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-usDiv-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 5px;
  border: 1px solid #37B7C4;
  padding: 15px;
  border-radius: 25px;
}

.contact-usDiv-box a {
  color: #222;
  font-size: 18px;
  transition: all 0.5s ease;
}

.contact-usDiv-box a:hover {
  color: #37B7C4;
}

.contact-usDiv-three button {
  padding: 10px;
  background-color: #26aab7;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 15px;
}

.contact-usDiv-three button:hover {
  background-color: #1f8a99;
}

.contact-usDiv p {
  margin-bottom: 0;
}

.contact-usDiv-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}

.contact-usDiv-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-usDiv-form input,
.contact-usDiv-form textarea {
  width: 100%;
  border: 1px solid #37B7C4;
  padding: 15px;
  border-radius: 15px;
  margin: 10px 0;
}

/* Media Queries برای ریسپانسیو شدن */
@media (max-width: 1024px) {
  .contact-usDiv {
    flex-direction: column;
    align-items: center;
  }

  .contact-usDiv-one,
  .contact-usDiv-two,
  .contact-usDiv-three {
    width: 80%;
    /* عرض به 80% تغییر می‌کند */
    margin-bottom: 20px;
  }

  .contact-usDiv-two {
    width: 80%;
    /* تغییر در اندازه برای ستون دوم */
  }

  .contact-usDiv-box {
    width: 100%;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .faq-content {
    grid-template-columns: repeat(1, 1fr);
}
  .footer-bottom p {
    padding: 8px;
    margin-right: 0px !important;
  }

  .contact-usDiv-one,
  .contact-usDiv-two,
  .contact-usDiv-three {
    width: 100%;
    /* همه ستون‌ها به عرض کامل می‌آیند */
  }

  .contact-usDiv-box {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
  }

  .contact-usDiv-three button {
    padding: 8px;
  }

  .contact-usDiv-form input,
  .contact-usDiv-form textarea {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .contact-usDiv {
    padding: 10px;
  }

  .contact-usDiv-one,
  .contact-usDiv-two,
  .contact-usDiv-three {
    width: 100%;
    margin-bottom: 15px;
  }

  .contact-usDiv-box {
    padding: 8px;
  }

  .contact-usDiv-box a {
    font-size: 16px;
  }
}

/*F Work Landing By mim */


























































/* ---------- Offcanvas پایه ---------- */
.ztcNav {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  font-family: inherit;
}

.ztcNav.is-open {
  pointer-events: auto;
}

.ztcNav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  transition: opacity .18s ease;
}

.ztcNav.is-open .ztcNav__backdrop {
  opacity: 1;
}

/* ---------- پنل اصلی ---------- */
.ztcNav__header {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 680px);
  height: 56px;
  background: #fbfbfb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-top-left-radius: 18px;
  transform: translateX(110%);
  transition: transform .22s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  border-radius: 35px 35px 0 0;
}
.ztcNav.is-open .ztcNav__header {
  transform: translateX(0);
}

.ztcNav__title {
  font-size: 16px;
  font-weight: 700;
}

.ztcNav__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .18);
  color: #26AAB7;
  cursor: pointer;
}

.ztcNav__body {
  position: absolute;
  top: 55px;
  right: 0;
  width: min(77vw, 680px);
  height: calc(82vh - 56px);
  background: #fff;
  border-bottom-left-radius: 18px;
  overflow: hidden;
  display: flex;
  transform: translateX(110%);
  transition: transform .22s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  border-radius: 0 0 35px 35px;
}
.ztcNav.is-open .ztcNav__body {
  transform: translateX(0);
}

/* ---------- ستون راست (دسته‌ها) ---------- */
.ztcNav__cats {
  width: 27%;
  min-width: 200px;
  border-left: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 0px;
  background: #fbfbfb;
}

.ztcNav__cat {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
  padding: 21px 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #1B1B1B;
  transition: background .15s ease, border-color .15s ease;
}

.ztcNav__cat:hover {
  background: #2aa7b3;
  color: #fff;
  border-color: #dedede;
}

.ztcNav__cat.is-active {
  border-color: #37B7C4;
  background-color: #37B7C4;
  color: #fff;
}

.ztcNav__chev {
  color: #1B1B1B;
  transition: transform .18s ease;
}

.ztcNav__cat.is-active .ztcNav__chev {
  transform: rotate(90deg);
  color: #fff;
}

.ztcNav__link {
  border: none;
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
  padding: 21px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #1B1B1B;
  text-decoration: none;
}

.ztcNav__link:hover {
  background: #2aa7b3;
  color: #fff;
}

/* ---------- ستون چپ (کشورها) ---------- */
.ztcNav__panel {
  width: 70%;
  padding: 14px;
  background: #fff;
}
.ztcNav__panelTitle {
  font-size: 15px;
  font-weight: 800;
  color: #1B1B1B;
  margin-bottom: 12px;
}

.ztcNav__grid {
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: start;
}

.ztcNav__grid.is-show {
  display: flex;
}

.ztcNav__pill {
  width: calc(32% - 5px);
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 999px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: start;
  text-decoration: none;
  color: #1B1B1B;
  font-weight: 700;
  font-size: 13px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
  gap: 5px;
}
.ztcNav__pill:hover {
  transform: translateY(-1px);
  border-color: #081853;
  background: #081853;
  color: #fff;
}

.ztcNav__flag {
  font-size: 18px;
  line-height: 1;
}

/* ---------- ریسپانسیو ---------- */
@media (max-width: 520px) {
  .ztcNav__cats {
    width: 46%;
    min-width: 180px;
  }

  .ztcNav__panel {
    width: 54%;
  }

  .ztcNav__pill {
    width: 100%;
  }
}




/* دکمه مشاوره */
.btn-call {
  background-color: #26AAB7;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  overflow: hidden;

}


.btn-call div {
  background-color: #26AAB7;
}

.btn-call .btn-call-white {
  background-color: #fff;
  color: #0C1B31;
  padding: 20px 25px;
  border-radius: 50px 0 0 50px;
  border: 1px solid #0C1B31;
  border-radius: 50px;
}


/* فقط موبایل */
@media (min-width: 769px) {

  .ztcMNav,
  .ztcMNav-trigger {
    display: none !important;
  }
}

.ztcMNav {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  font-family: inherit;
}

.ztcMNav.is-open {
  pointer-events: auto;
}

.ztcMNav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  transition: opacity .18s ease;
}

.ztcMNav.is-open .ztcMNav__backdrop {
  opacity: 1;
}

.ztcMNav__sheet {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  bottom: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
  height: 515px;
}

.ztcMNav.is-open .ztcMNav__sheet {
  transform: translateY(0);
  opacity: 1;
}

/* Top Bar */
.ztcMNav__top {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #efefef;
  background: #fff;
}

.ztcMNav__search {
  flex: 1;
  position: relative;
}

.ztcMNav__searchIcon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #777;
  font-size: 14px;
}

.ztcMNav__searchInput {
  width: 100%;
  height: 40px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  padding: 0 38px 0 12px;
  outline: none;
  font-size: 13px;
  background: #fbfbfb;
}

.ztcMNav__close {
  width: 40px;
  height: 40px;
  border: 1px solid #e6e6e6;
  border-radius: 989px;
  background: #fff;
  cursor: pointer;
}

.ztcMNav__content {
  padding: 0;
  height: calc(100% - 65px);
  overflow: auto;
}

/* Accordion */
.ztcMNav__acc {
/*   border: 1px solid #ededed; */
  background: #fff;
  overflow: hidden;
}

.ztcMNav__accBtn {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  color: #111;
}

.ztcMNav__accIcon {
  transition: transform .18s ease;
  color: #666;
}

/* Panel (animated via max-height) */
.ztcMNav__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
  border-top: 1px solid #f0f0f0;
  background: #fff;
  padding: 10px;
  padding-top: 0;
    padding-bottom: 0;
}

.ztcMNav__acc.is-open .ztcMNav__panel {
  max-height: 560px;
  /* کافی برای چند ردیف */
}

.ztcMNav__acc.is-open .ztcMNav__accIcon {
  transform: rotate(180deg);
}

/* Country rows */
.ztcMNav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  text-decoration: none;
  color: #111;
  border-top: 1px solid #f4f4f4;
  font-size: 13px;
  font-weight: 700;
}

.ztcMNav__row:first-child {
  border-top: 0;
}

.ztcMNav__code {
  min-width: 44px;
  height: 28px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  color: #111;
  background: #fbfbfb;
}

.ztcMNav__txt {
  flex: 1;
  text-align: right;
  padding-right: 12px;
}

/* Flat links */
.ztcMNav__flatLink {
  display: block;
  border: 1px solid #ededed;
  padding: 14px 14px;
  text-decoration: none;
  color: #111;
  font-weight: 800;
  font-size: 14px;
  background: #fff;
}


/* پنل کشورها: دو ستون در موبایل */
.ztcMNav__panelGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

/* وقتی پنل بسته است، گرید هم باید بسته بماند */
.ztcMNav__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
  border-top: 1px solid #f0f0f0;
  background: #fff;

}

/* وقتی آکاردئون باز است */
.ztcMNav__acc.is-open .ztcMNav__panel {
  max-height: 600px;
  /* بسته به تعداد آیتم‌ها */
}

/* کارت هر کشور (به جای ردیف تمام‌عرض) */
.ztcMNav__panelGrid .ztcMNav__row {
  border: 1px solid #ededed;
  border-radius: 37px;
  padding: 12px 12px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

/* حذف خط جداکننده‌ی قبلی (برای حالت لیستی بود) */
.ztcMNav__panelGrid .ztcMNav__row {
  border-top: 0 !important;
}

/* کد کشور */
.ztcMNav__panelGrid .ztcMNav__code {
  min-width: 44px;
}

/* متن کشور */
.ztcMNav__panelGrid .ztcMNav__txt {
  text-align: center;
}

/* خیلی کوچک: تک ستون */
@media (max-width: 360px) {
  .ztcMNav__panelGrid {
    grid-template-columns: 1fr;
  }
}
















.ztcReqSwiper { width: 100%; }
.ztcReqSwiper .swiper-slide { height: auto; }
.ztcReqSwiper .req-card { height: 100%; }

/* .benefits-box  span{
  color: #303030;
  font-weight: 600;
}
 */