@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Estedad Font (for body) */
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-ExtraLight.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Black.ttf");
  font-weight: 800;
}
/* Ray Font (for titles) */
@font-face {
  font-family: "ray";
  src: url("./../Font/ray/Ray-Light.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "ray";
  src: url("./../Font/ray/Ray-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "ray";
  src: url("./../Font/ray/Ray-Bold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "ray";
  src: url("./../Font/ray/Ray-ExtraBold.ttf");
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ray";
}

html,
body {
  overflow-x: hidden;
  font-family: "estedad", sans-serif;
  background: #f7f9fc;
}

.page {
  margin: 0;
  display: flex;
  flex-direction: column;
  direction: rtl;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============ Tools (left rail) ============ */
.tools {
  position: fixed;
  left: 1px;
  top: 120px;
  z-index: 1200;
  display: grid;
  gap: 15px;
  padding: 15px;
  border-radius: 0 10px 10px 0;
  background: #56697b;
}

.tools__btn {
  cursor: pointer;
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-block: 18px;
  background: transparent;
}
.header__logo img {
  height: 48px;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 10px 15px;
  align-items: center;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid #ffffff;
  width: 70%;
}
@media (max-width: 992px) {
  .header__inner {
    width: 100%;
    justify-content: space-between;
  }
}
.header__burger {
  background-color: 0;
  border: 0;
}
@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 40px;
}
@media (min-width: 992px) {
  .nav {
    display: flex;
  }
}

.nav__link {
  font-size: 14px;
  color: #0a2540;
  text-decoration: none;
  white-space: nowrap;
}
.nav__link:hover {
  color: #111827;
}

.nav__link--btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111827;
}

.brand__logo {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
}

.brand__name {
  font-weight: 900;
  font-size: 1.02rem;
}

/* ===== Dropdown ===== */
.header-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 12px); /* فاصله زیر هدر */
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 1200;
}

.header-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.header-dropdown__item {
  display: inline-flex;
  padding: 10px 0;
  border-radius: 10px;
  text-decoration: none;
  color: #0a2540;
  font-size: 14px;
}
.header-dropdown__item:hover {
  color: #56697b;
}

/* حالت باز: روی خود header__inner کلاس می‌زنیم */
.header__inner.is-menu-open .header-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============ Main ============ */
.main {
  flex: 1; /* ✅ محتوا قد می‌کشد */
  min-height: 0;
  padding: 14px 0 28px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  height: 276px;
  border-radius: 15px;
  overflow: hidden;
  background-color: #cfe9f7;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* background image */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

/* content layer */
.hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
}

/* avatar */
.hero__avatar {
  margin-inline: auto;
  overflow: hidden;
}
.hero__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(31, 41, 55, 0.75);
}

/* =========================
   Services 
========================= */
.services {
  margin-top: 40px;
  padding: 30px;
  border-radius: 15px;
  background: #ebedf0;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.services__header {
  text-align: right;
  margin-bottom: 40px;
}
.services__title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #0a2540;
}
.services__subtitle {
  margin: 6px 0 0;
  font-size: 16px;
  color: #56697b;
}
.services__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
@media (max-width: 768px) {
  .services {
    padding: 15px;
  }
}

.service-card {
  height: 75px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  /* کرم */
  /* آبی روشن */
  /* سبز خاکستری */
  /* صورتی */
}
.service-card:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}
.service-card__icon {
  width: 56px;
  height: 100%;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
}
.service-card__label {
  flex: 1;
  padding: 0 14px;
  font-size: 16px;
  color: #0a2540;
  white-space: nowrap;
}
.service-card--cream .service-card__icon {
  background: #f3e7bf;
}
.service-card--aqua .service-card__icon {
  background: #cfe9ef;
}
.service-card--sage .service-card__icon {
  background: #d8decc;
}
.service-card--pink .service-card__icon {
  background: #ffc9c9;
}

/* =========================
   About Banner 
========================= */
.about-bg {
  background-color: #ebedf0;
  margin-top: 28px;
  padding: 26px;
}
@media (max-width: 768px) {
  .about-bg {
    padding: 30px 15px;
  }
}

.about-banner {
  display: grid;
  grid-template-columns: 160px 1fr 420px; /* media | content | title */
  gap: 26px;
  align-items: center;
}
.about-banner__media {
  height: 220px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
}
.about-banner__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 15px;
}
.about-banner__lead {
  margin-bottom: 40px;
  color: #56697b;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 400;
}
@media (max-width: 768px) {
  .about-banner__lead {
    font-size: 16px;
  }
}
.about-banner__titleWrap {
  text-align: right;
  width: 70%;
}
.about-banner__title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #0a2540;
  line-height: 1.25;
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-banner {
    grid-template-columns: 1fr;
    text-align: right;
    gap: 16px;
  }
  .about-banner__content {
    text-align: right;
  }
  .about-banner__titleWrap {
    order: 1;
  }
  .about-banner__content {
    order: 2;
  }
  .about-banner__media {
    order: 3;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .services__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
/* Features */
.topic-grid {
  margin-top: 60px;
  margin-bottom: 80px;
}
.topic-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-auto-rows: 330px;
  align-items: stretch;
}

.topic-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.topic-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}
.topic-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}
.topic-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
}
.topic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.38) 100%);
  pointer-events: none;
  z-index: 1;
}
.topic-card__icon {
  position: absolute;
  top: 30px;
  inset-inline-start: 30px;
  display: grid;
  place-items: center;
  z-index: 3;
}
.topic-card__title {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 65%, rgba(0, 0, 0, 0.08) 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  width: 100%;
  padding: 30px;
  font-size: 24px;
  font-family: "ray";
  font-weight: 500;
  transition: opacity 160ms ease, transform 160ms ease;
}
@media (max-width: 768px) {
  .topic-card__title {
    padding: 15px;
  }
}
.topic-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 65%, rgba(0, 0, 0, 0.08) 100%);
}
.topic-card__overlay::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 80%;
  height: 100%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.topic-card__overlay-inner {
  position: absolute;
  inset-inline-end: 16px;
  inset-inline-start: 16px;
  bottom: 14px;
  display: grid;
  gap: 8px;
}
.topic-card__overlay-title {
  font-size: 24px;
  font-family: "ray";
  font-weight: 500;
}
.topic-card__overlay-text {
  font-size: 16px;
  line-height: 1.7;
  color: #ebedf0;
  font-weight: 400;
}
.topic-card__overlay-list {
  display: grid;
  gap: 4px;
  font-size: 16px;
  line-height: 1.7;
  color: #ebedf0;
  font-weight: 400;
}
.topic-card__overlay-list > span {
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: #ebedf0;
  font-weight: 200;
}
.topic-card:hover .topic-card__overlay, .topic-card:focus-visible .topic-card__overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s;
}
.topic-card:hover .topic-card__title, .topic-card:focus-visible .topic-card__title {
  opacity: 0;
  transform: translateY(6px);
}
@media (hover: none) {
  .topic-card:active .topic-card__overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s;
  }
  .topic-card:active .topic-card__title {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .topic-card {
    transition: none;
  }
  .topic-card__title, .topic-card__overlay {
    transition: none;
  }
}

.topic-card--a {
  grid-column: span 1;
} /* wide */
.topic-card--b {
  grid-column: span 2;
} /* narrow */
.topic-card--c {
  grid-column: span 2;
} /* narrow */
.topic-card--d {
  grid-column: span 1;
} /* wide */
/* Responsive: موبایل یک ستونه */
@media (max-width: 992px) {
  .topic-grid__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .topic-card--a,
  .topic-card--b,
  .topic-card--c,
  .topic-card--d {
    grid-column: auto;
  }
}
/* ============ Responsive ============ */
@media (max-width: 992px) {
  .cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about {
    grid-template-columns: 1fr;
  }
  .tools {
    display: none;
  } /* اگر در موبایل نمی‌خواهی */
  .header__inner {
    border-radius: 16px;
  }
  .nav {
    gap: 12px;
  }
}
.contact__top {
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 180px;
  background-color: #ebedf0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 10px;
}
.contact__media {
  margin: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact__media {
    border-radius: 15px 0 0 15px;
  }
}
.contact__img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .contact__img {
    border-radius: 15px 0 0 15px;
  }
}
.contact__content {
  padding: 28px 34px;
  display: grid;
  align-content: center;
  gap: 10px;
}
.contact__title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #0a2540;
}
.contact__desc {
  color: #56697b;
  font-size: 16px;
  line-height: 1.9;
  max-width: 62ch;
}
.contact__meta {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.contact__metaLabel {
  color: #0a2540;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: "ray";
}
.contact__metaValue {
  color: #56697b;
  text-decoration: none;
  font-size: 14px;
}
.contact__metaValue:hover {
  text-decoration: underline;
}

.contact__bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background-color: #ebedf0;
  border: 1px solid #e0e0e0;
  margin-top: 50px;
  margin-bottom: 150px;
  border-radius: 10px;
}

.contact-social {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 22px;
  text-decoration: none;
}
.contact-social:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  inset-inline-end: 0;
  width: 1px;
  background: rgba(15, 23, 42, 0.1);
}
.contact-social:hover {
  background: rgba(15, 23, 42, 0.03);
}

.contact-social__icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-social__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.contact-social__label {
  font-size: 18px;
  color: #0a2540;
  font-family: "ray";
  font-weight: 600;
}

.contact-social__value {
  font-size: 14px;
  color: #56697b;
  text-decoration: underline;
  text-underline-offset: 3px;
  unicode-bidi: plaintext;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact__top {
    grid-template-columns: 1fr;
  }
  .contact__media {
    height: 200px;
  }
  .contact__content {
    padding: 22px 18px;
  }
  .contact__meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact__bottom {
    grid-template-columns: 1fr;
  }
  .contact-social:not(:last-child)::after {
    display: none;
  }
  .contact-social {
    border-top: 1px solid rgba(15, 23, 42, 0.1);
  }
  .contact-social:first-child {
    border-top: 0;
  }
}
.about-card {
  background: #ebedf0;
  border-radius: 15px;
  padding: 30px 26px;
}
.about-card__title {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #0a2540;
}
.about-card__text {
  margin: 30px auto 0;
  max-width: 760px;
  text-align: center;
  line-height: 1.95;
  font-size: 20px;
  color: #56697b;
}
.about-card__text--sm {
  font-size: 13.5px;
  line-height: 2;
}

/* ============== Video Preview ============== */
.video-preview {
  display: block;
  width: min(520px, 92%);
  margin: 35px auto 0;
  overflow: hidden;
  position: relative;
  background: #e9edf1;
  text-decoration: none;
  isolation: isolate;
  border-radius: 15px;
  aspect-ratio: 16/9;
}
.video-preview__video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-preview__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.01);
}
.video-preview__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18), 0 0 0 10px rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.video-preview:hover .video-preview__play {
  transform: scale(1.06);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), 0 0 0 12px rgba(255, 255, 255, 0.12);
}
.video-preview:focus-visible {
  outline: 3px solid rgba(24, 119, 242, 0.35);
  outline-offset: 4px;
}

/* ============== Responsive tweaks ============== */
@media (max-width: 576px) {
  .about-card {
    padding: 24px 18px;
  }
  .about-card__text {
    max-width: 100%;
  }
  .video-preview {
    width: 100%;
    aspect-ratio: 16/8;
  }
}
.news-articles {
  padding-block: 4rem;
}
.news-articles__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-articles__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}
.news-articles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-articles__news-carousel {
  display: none;
}
@media (max-width: 576px) {
  .news-articles {
    padding-block: 3rem;
  }
  .news-articles .news-articles__news-carousel .news-articles__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-articles__news-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .news-articles__news-carousel {
    display: block;
  }
}

.news-article {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 5px;
}
.news-article::before, .news-article::after {
  content: "";
  position: absolute;
  background: #d1d1cd;
}
.news-article::before {
  top: 0;
  bottom: 8px;
  width: 1px;
  right: 0;
}
.news-article::after {
  top: 0;
  bottom: 8px;
  width: 1px;
  left: 0;
}
.news-article .news-article__body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background: #d1d1cd;
}
.news-article__image {
  height: 200px;
  overflow: hidden;
}
.news-article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.news-article__read-more {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 12px;
}
.news-article:hover .news-article__image img {
  transform: scale(1.05);
  filter: brightness(60%);
}
.news-article:hover .news-article__read-more {
  opacity: 1;
  transform: translateY(0);
}
.news-article__body {
  position: relative;
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-article__date {
  font-size: 14px;
  font-weight: 400;
}
.news-article__headline {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-block: 15px;
}
.news-article__excerpt {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 50px;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .news-articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 577px) {
  .news-articles__grid {
    display: none;
  }
}
.back-link-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.back-link-wrapper .link-icon {
  color: #0a2540;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.back-link-wrapper .link-icon__pill {
  width: 42px;
  height: 21px;
  border-radius: 999px;
  border: 2px solid #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.back-link-wrapper .link-icon__arrow {
  transition: transform 0.25s ease;
}
.back-link-wrapper .link-icon:hover .link-icon__arrow {
  animation: arrow-loop 0.8s ease-in-out;
}
@keyframes arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-50px);
    opacity: 0;
  }
  60% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .back-link-wrapper .back-link-wrapper {
    justify-content: end;
  }
}

.footer-container {
  margin-top: auto;
}

.footer {
  background: rgba(191, 191, 191, 0.12);
  border-radius: 15px;
  border: 1px solid #ffffff;
  color: #444;
  padding: 20px;
  margin-bottom: 10px;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.footer .footer-right {
  flex: 1 1 200px;
  text-align: right;
}
.footer .footer-right .footer-logo {
  width: 100px;
  margin-bottom: 0.5rem;
}
.footer .footer-right .footer-desc {
  font-size: 0.9rem;
  padding-top: 8px;
}
.footer .footer-center {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 15px;
  border-top: 1px solid #c6ccd2;
}
.footer .footer-center .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  font-size: 14px;
  justify-content: center;
  gap: 30px;
}
.footer .footer-center .footer-menu a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer .footer-center .footer-menu li a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer .footer-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.footer .footer-left .trust-logos {
  display: flex;
  gap: 0.8rem;
}
.footer .footer-left .trust-logos .trust-logos-container {
  height: 80px;
  width: 80px;
}
.footer .footer-left .trust-logos .trust-logos-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.footer .footer-left .trust-logos__box img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.footer .socials {
  display: flex;
  gap: 20px;
  font-size: 1.3rem;
}
.footer .socials a {
  color: #333;
  transition: color 0.2s;
}
.footer .socials-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer .footer-center-mobile {
    align-items: flex-start;
  }
  .footer .footer-center {
    display: grid;
    justify-content: start !important;
    gap: 1.5rem;
  }
  .footer .footer-center .footer-menu {
    display: grid;
    gap: 25px;
  }
  .footer .footer-right {
    flex: 0 0 auto;
    width: auto;
  }
  .footer .footer-left .trust-logos {
    justify-content: center;
  }
  .footer .footer-left .trust-logos .trust-logos-container {
    height: 80px;
    width: 60px;
  }
  .footer .footer-left .trust-logos .trust-logos-container img {
    height: 100%;
    width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media (max-width: 480px) {
  .footer .footer-menu {
    font-size: 0.85rem;
  }
  .footer .footer-bottom {
    padding-inline: 0;
  }
  .footer .socials {
    font-size: 1.1rem;
  }
}

.footer-bottom {
  font-size: 13px;
}
.footer-bottom .footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  flex-wrap: wrap;
}
.footer-bottom .dev {
  margin-top: 0.3rem;
}
.footer-bottom .dev a {
  text-decoration: underline;
}
.footer-bottom .dev a:hover {
  text-decoration: underline;
}
@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
  }
}

.news-detail__title {
  font-size: 28px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 8px;
}
.news-detail__date {
  font-size: 14px;
  color: #475766;
}
.news-detail__description {
  font-size: 16px;
  color: #0a2540;
  line-height: 1.6;
  padding-block: 32px;
}

.ig-banner {
  padding-block: 18px;
}
.ig-banner__inner {
  border-radius: 15px;
  margin-block: 30px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.ig-banner__grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 28px;
}
.ig-banner__media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-inline-start: 8px;
  padding-block-start: 40px;
}
.ig-banner__phone {
  width: min(240px, 100%);
  height: auto;
  display: block;
}
.ig-banner__content {
  text-align: start;
  padding-inline: 20px;
}
.ig-banner__title {
  margin-bottom: 20px;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #0a2540;
}
.ig-banner__text {
  line-height: 1.95;
  font-size: 16px;
  color: #56697b;
}
@media (max-width: 768px) {
  .ig-banner__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 16px;
  }
  .ig-banner__media {
    order: 2;
    justify-content: center;
    padding: 0;
  }
  .ig-banner__content {
    order: 1;
  }
  .ig-banner__phone {
    width: min(260px, 92%);
  }
}

.mobile-offcanvas .offcanvas {
  background: #f7f9fc;
  width: 90%;
  border-radius: 20px 0 0 20px;
}
.mobile-offcanvas .offcanvas-header {
  margin-bottom: 20px;
}
.mobile-offcanvas .offcanvas-header .btn-close {
  position: absolute;
  left: 12px;
  top: 20px;
}
.mobile-offcanvas .mobile-nav {
  display: grid;
  gap: 0;
}
.mobile-offcanvas .mobile-nav__link {
  display: block;
  padding: 20px 0;
  text-decoration: none;
  color: #0a2540;
  font-weight: 500;
  font-size: 15px;
  border-top: 1px solid #e0e0e0;
}
.mobile-offcanvas .mobile-nav__acc.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: #0f172a;
  background: transparent !important;
}
.mobile-offcanvas .mobile-nav__acc .accordion-item {
  background: transparent;
  border: 0;
  border-radius: 0;
}
.mobile-offcanvas .mobile-nav__acc .accordion-button {
  background: transparent !important;
  padding: 20px 0;
  color: #0a2540;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  box-shadow: none;
  font-family: "estedad";
  padding-left: 24px;
}
.mobile-offcanvas .mobile-nav__acc .accordion-button::after {
  position: absolute;
  left: 0;
  margin-left: 0;
  margin-right: 0;
  width: 18px;
  height: 18px;
  transform: rotate(0deg);
  opacity: 0.85;
}
.mobile-offcanvas .mobile-nav__acc .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.mobile-offcanvas .mobile-nav__acc .accordion-body {
  padding: 6px 0 10px;
  background: transparent;
}
.mobile-offcanvas .mobile-nav__sublink {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}/*# sourceMappingURL=portal.css.map */