@import url('theme-vars.css');

html,
body {
  font-size: 62.5%;
  font-family: Poppins, Nunito, Inter, 'Sans-serif';
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

/* =========================common========================= */

a {
  text-decoration: none;
  color: #000;
}

.btn-primary {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  min-width: 166px;
  max-height: 36px;
  height: 36px;
  background-color: var(--primary-color);
  border-radius: 2.8rem;
  color: white;
  outline: none;
  border: none;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 1.6rem;
}

.btn-primary-decoration {
  outline: 2px solid var(--primary-color);
  outline-offset: 1px;
}

/* Hero-specific button size override — tránh bị max-height: 36px ép */
.btn__hero {
  height: 5rem !important;
  max-height: none !important;
  padding: 0 3rem !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  background: #ffffff !important;
  color: #0a1628 !important;
  outline: none !important;
  transition: all 0.25s ease !important;
}

.btn__hero:hover {
  background: #e8f0fe !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18) !important;
}

.btn-primary:hover {
  opacity: 90%;
  transition: all 300ms;
}

.title {
  font-family: Inter;
  font-weight: 700;
  font-style: bold;
  font-size: 5.2rem;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp);
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}

.btn-link {
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
  text-decoration: none;
  color: var(--primary-color);
}

.btn-link:hover {
  text-decoration: underline;
}

.desc {
  color: #5a5858;
  font-family: Inter;
  font-weight: 400;
  font-style: Medium;
  font-size: 1.8rem;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 3);
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

main {
  min-height: 100%;
}

/* ========================= POST CARD (Common) ========================= */
.post-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
  box-shadow: 0px 10px 36px -20px #00000040;
}

.post-card:hover {
  border-color: #c0c0c0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.post-card__img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--white, #ffffff);
  transition: opacity 0.3s ease;
  display: block;
}

.post-card:hover .post-card__img {
  opacity: 0.9;
}

.post-card__body {
  padding: 2.4rem 2rem 2.8rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.2rem 0;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 2);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #555555;
  margin: 0 0 2.4rem 0;
  line-height: 1.6;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__link {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary-color, var(--primary-color));
  text-decoration: none;
  margin-top: auto;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s ease;
}

.post-card__link:hover {
  color: var(--secondary-color, #1d4ed8);
  text-decoration: underline;
}

/* ========================= FOOTER ========================= */
.footer {
  background-color: #526277;
  color: #dbe3ec;
  padding: 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 6rem 0 4.8rem;
}

/* ── Brand Column ──────────────────────────────────────────── */
.footer__col--brand {
  padding-right: 1rem;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 2rem;
}

.footer__logo {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.footer__logo:hover {
  opacity: 1;
}

.footer__brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-size: bold;
  line-height: 1.7;
  color: #d1dae5;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
  max-width: 280px;
}

/* ── Social Links ─────────────────────────────────────────── */
.footer__social {
  display: flex;
  gap: 1.2rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #eef3f8;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__social-link:hover {
  background: color-mix(in srgb, var(--primary-color) 15%, transparent);
  color: #fff;
  border-color: color-mix(in srgb, var(--primary-color) 30%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ── Columns ──────────────────────────────────────────────── */
.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #f2f5f9;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__list li {
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer__list a {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #e3eaf2;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
  line-height: 1.5;
  position: relative;
}

.footer__list a:hover {
  color: #f2f5f9;
  padding-left: 4px;
}

.footer__list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: color-mix(in srgb, var(--primary-color) 60%, #fff);
  transition: width 0.25s ease;
}

.footer__list a:hover::after {
  width: 100%;
}

/* ── Contact Column ───────────────────────────────────────── */
.footer__list--contact li {
  align-items: flex-start;
}

.footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: color-mix(in srgb, var(--primary-color) 70%, #fff);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer__list--contact a {
  color: #eef3f8;
}

.footer__list--contact a:hover {
  color: #f2f5f9;
}

.footer__list--contact span {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #d8e1eb;
  line-height: 1.5;
}

/* ── Bottom Bar ───────────────────────────────────────────── */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.4rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #ccd5df;
  margin: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 2.4rem;
}

.footer__bottom-links a {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #ccd5df;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__bottom-links a:hover {
  color: #c9d3df;
}

/* ── Footer Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer__brand-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer__container {
    padding: 0 1.6rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    padding: 4.8rem 0 3.2rem;
  }

  .footer__col--brand {
    padding-right: 0;
  }

  .footer__heading {
    margin-bottom: 1.6rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .footer__bottom-links {
    gap: 1.6rem;
  }
}

@media (max-width: 480px) {
  .footer__container {
    padding: 0 1.2rem;
  }

  .footer__grid {
    padding: 3.2rem 0 2.4rem;
    gap: 2.8rem;
  }

  .footer__logo {
    height: 36px;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .footer__bottom {
    padding: 2rem 0;
  }
}

/* =========================Swiper========================= */
.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  /* prevent slides from causing horizontal scroll */
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide.hero__slide {
  opacity: 100%;
}

.hero .swiper-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-button-next.swiper__btn {
  transform: translateX(50px) !important;
}

.swiper-button-prev.swiper__btn {
  transform: translateX(-50px) !important;
}

/* =========================Header========================= */

header {
  /* height: 62px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  height: var(--header-height);
}
.header__logo-link img {
  scale: 1.2;
}
header nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav-right {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: Inter;
  font-weight: 400;
  font-style: medium;
  font-size: 1.6rem;
}

.header__nav {
  display: flex;
  margin: 0 auto;
}

.header__nav > li {
  position: relative;
  display: inline-block;
  margin: 0 1.2rem;
  /* padding: 0 8px; */
}

.header__nav > li > a {
  display: inline-block;
  padding: 14px;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--primary-color, var(--primary-color));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
  z-index: 50;
}

.submenu > li {
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.submenu > li:last-child {
  border-bottom: none;
}

.submenu > li > a {
  display: block;
  padding: 1.2rem 1.6rem;
  color: #333333;
  text-decoration: none;
  font-size: 1.5rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.submenu > li > a:hover {
  background-color: var(--primary-color, var(--primary-color));
  color: #ffffff;
}

@media (min-width: 992px) {
  .header__nav > li:hover .submenu,
  .header__nav > li:focus-within .submenu,
  .header__nav > li .submenu:hover {
    display: block;
  }
}

.header__nav > li::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  top: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 500ms;
}

.header__nav > li:hover::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  height: 2px;
  background: var(--primary-color);
}

/* =========================Hero========================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
}

/* 
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 32, 0.18);
  z-index: 1;
} */

.hero .swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eef2f6;
  z-index: 0;
}

.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .swiper-pagination {
  z-index: 3 !important;
  position: absolute !important;
  pointer-events: all !important;
}

.hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero .swiper-pagination-bullet-active {
  background: #ffffff;
  width: 28px;
  opacity: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
}

.hero__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
  width: min(100%, 68rem);
  padding: 4rem 4.4rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 219, 229, 0.95);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 40, 0.08);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 3.2rem;
  padding: 0 1.2rem;
  background: #f3f6f9;
  border: 1px solid #dfe5ec;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38506b;
}

.hero__title {
  margin: 0;
  color: #0a1628;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: left;
}

.hero__title span {
  color: var(--primary-color);
}

.hero__desc {
  margin: 0;
  color: #5a6474;
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
  max-width: 56rem;
}

.btn__hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  height: 4.6rem;
  /* margin-top: 0.8rem; */
  padding: 0 2.4rem;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero__info {
    width: min(100%, 60rem);
    padding: 3.2rem 3.4rem;
  }

  .hero__title {
    font-size: 4.6rem;
  }

  .hero__desc {
    font-size: 1.7rem;
  }
}

@media (max-width: 767px) {
  .hero__inner {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .hero__info {
    width: 100%;
    padding: 2.6rem 2.2rem;
  }

  .hero__title {
    font-size: 3.6rem;
  }

  .hero__desc {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero__info {
    padding: 2.2rem 1.8rem;
    border-radius: 10px;
  }

  .hero__eyebrow {
    font-size: 1.1rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__desc {
    font-size: 1.5rem;
  }

  .btn__hero {
    width: 100%;
  }
}

/* ========================= About / Mission ========================= */
.about {
  padding: 10rem 0 8rem;
  /* background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); */
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Section Header ── */
.about__header {
  text-align: center;
  margin-bottom: 5.6rem;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 8px 22px;
  background: color-mix(in srgb, var(--primary-color) 7%, transparent);
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 2rem;
  position: relative;
}

.about__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}

.about__title {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #0a1628;
  margin-bottom: 1.8rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.75;
  color: #5a6474;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Cards Grid ── */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}

/* ── Mission Card ── */
.about__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3.6rem 3.2rem 3.2rem;
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about__card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.about__card:hover .about__card-accent {
  transform: scaleX(1);
}

.about__card:hover .about__card-icon {
  transform: scale(1.1);
}

.about__card:hover .about__card-title {
  color: var(--primary-color);
}

/* ── Icon Container ── */
.about__card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.4rem;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease;
  flex-shrink: 0;
  position: relative;
}

.about__card-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about__card-icon--blue {
  background: color-mix(in srgb, var(--primary-color) 8%, transparent);
}

.about__card-icon--blue::after {
  border: 2px solid color-mix(in srgb, var(--primary-color) 12%, transparent);
}

.about__card-icon--indigo {
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
}

.about__card-icon--indigo::after {
  border: 2px solid color-mix(in srgb, var(--primary-color) 14%, transparent);
}

.about__card-icon--navy {
  background: color-mix(in srgb, var(--primary-color) 12%, transparent);
}

.about__card-icon--navy::after {
  border: 2px solid color-mix(in srgb, var(--primary-color) 16%, transparent);
}

.about__card:hover .about__card-icon::after {
  opacity: 1;
}

.about__card-icon-img {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

/* ── Card Body ── */
.about__card-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
}

.about__card-title {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: #0a1628;
  line-height: 1.35;
  margin: 0;
  transition: color 0.3s ease;
}

.about__card-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #636c78;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about {
    padding: 7rem 0 6rem;
  }

  .about__header {
    margin-bottom: 4rem;
  }

  .about__title {
    font-size: 3.2rem;
  }

  .about__desc {
    font-size: 1.6rem;
  }

  .about__grid {
    gap: 2rem;
  }

  .about__card {
    padding: 2.8rem 2.4rem 2.4rem;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 5rem 0 4rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__title {
    font-size: 2.6rem;
  }

  .about__card {
    padding: 2.4rem 2rem;
  }

  .about__card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 2rem;
  }

  .about__card-icon-img {
    width: 28px;
    height: 28px;
  }

  .about__card-title {
    font-size: 1.7rem;
  }

  .about__card-desc {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 4rem 0 3rem;
  }

  .about__header {
    margin-bottom: 3.2rem;
  }

  .about__badge {
    font-size: 1.1rem;
    padding: 6px 16px;
    margin-bottom: 1.6rem;
  }

  .about__title {
    font-size: 2.2rem;
  }

  .about__desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .about__card {
    padding: 2rem 1.6rem;
    border-radius: 20px;
  }

  .about__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 1.6rem;
  }

  .about__card-icon-img {
    width: 24px;
    height: 24px;
  }

  .about__card-title {
    font-size: 1.5rem;
  }

  .about__card-desc {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

/* =========================Industries========================= */
.industries {
  padding: 8rem 0;
  background: #ffffff;
}

.industries__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Section Header ── */
.industries__header {
  text-align: left;
  margin-bottom: 4.8rem;
}

.industries__title {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  color: #0a1628;
  margin: 0 0 1.6rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
}

.industries__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #5a6474;
  text-align: left;
  max-width: 760px;
  margin: 0;
}

/* ── Cards Grid ── */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

/* ── Industry Card ── */
.industries__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 240px;
  background: #ffffff;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  cursor: pointer;
  padding: 2.8rem;
  transition:
    box-shadow 0.25s ease,
    border-color 0.35s ease;
  box-shadow: none;
}

.industries__card:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 40, 0.06);
  border-color: #c6d0db;
}

.industries__card:hover .industries__card-title {
  color: var(--primary-color);
}

.industries__card-head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
  width: 100%;
}

/* ── Icon Container ── */
.industries__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f3f6f9;
}

.industries__card-icon i {
  font-size: 2.2rem;
  color: var(--primary-color);
}

/* ── Card Body ── */
.industries__card-title {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0a1628;
  margin: 0;
  transition: color 0.3s ease;
}

.industries__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
  color: #636c78;
  margin: 0;
}

/* ── CTA Button ── */
.industries__cta {
  text-align: center;
  margin-top: 5.6rem;
}

.industries__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 48px;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 2.4rem;
  border-radius: 100px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.industries__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px
    color-mix(in srgb, var(--primary-color) 20%, transparent);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .industries {
    padding: 6rem 0;
  }

  .industries__header {
    margin-bottom: 4rem;
  }

  .industries__title {
    font-size: 3.2rem;
  }

  .industries__desc {
    font-size: 1.6rem;
  }

  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .industries__card {
    min-height: 220px;
    padding: 2.4rem;
  }

  .industries__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }

  .industries__card-icon i {
    font-size: 2rem;
  }

  .industries__card-title {
    font-size: 1.7rem;
  }

  .industries__card-text {
    font-size: 1.4rem;
  }

  .industries__cta {
    margin-top: 4rem;
  }
}

@media (max-width: 767px) {
  .industries {
    padding: 5rem 0;
  }

  .industries__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .industries__title {
    font-size: 2.6rem;
  }

  .industries__card {
    min-height: auto;
    padding: 2.2rem 1.8rem;
  }

  .industries__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .industries__card-icon i {
    font-size: 1.9rem;
  }

  .industries__card-title {
    font-size: 1.6rem;
  }

  .industries__card-text {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .industries {
    padding: 4rem 0;
  }

  .industries__header {
    margin-bottom: 3.2rem;
  }

  .industries__title {
    font-size: 2.2rem;
  }

  .industries__desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .industries__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .industries__card {
    padding: 2rem 1.6rem;
    border-radius: 12px;
  }

  .industries__card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .industries__card-icon i {
    font-size: 1.8rem;
  }

  .industries__card-title {
    font-size: 1.5rem;
  }

  .industries__card-text {
    font-size: 1.3rem;
    line-height: 1.7;
  }

  .industries__cta-btn {
    min-width: auto;
    width: 100%;
    font-size: 1.4rem;
  }
}

/* =========================Customers========================= */

/* =========================Customers========================= */
.customers {
  padding: 10rem 0 8rem;
}

.customers__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.customers__header {
  text-align: center;
  margin-bottom: 5.6rem;
}

.customers__title {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #0a1628;
  margin-bottom: 1.8rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.customers__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.75;
  color: #5a6474;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Customer Card ── */
.customer-card {
  display: flex;
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
}

.customer-card__photo {
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
}

.customer-card__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 3.6rem;
}

.customer-card__logo {
  display: block;
  width: auto;
  max-width: 120px;
  height: auto;
  margin-bottom: 2rem;
}

.customer-card__name {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 1.6rem;
  line-height: 1.3;
}

.customer-card__quote {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: #3a4355;
  margin: 0 0 2rem;
  padding: 0;
  border: none;
}

.customer-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #636c78;
  margin: 0;
  line-height: 1.4;
}

.customers .swiper {
  padding-bottom: 5rem;
}

.customers .swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 0.6;
  width: 10px;
  height: 10px;
}

.customers .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

.customers .swiper-button-prev,
.customers .swiper-button-next {
  color: color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.customers .swiper-button-next.swiper__btn {
  transform: translateX(0) !important;
  right: 20px;
}

.customers .swiper-button-prev.swiper__btn {
  transform: translateX(0) !important;
  left: 20px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .customers {
    padding: 7rem 0 6rem;
  }

  .customers__header {
    margin-bottom: 4rem;
  }

  .customers__title {
    font-size: 3.2rem;
  }

  .customers__desc {
    font-size: 1.6rem;
  }

  .customer-card {
    min-height: 300px;
  }

  .customer-card__content {
    padding: 3rem;
  }

  .customer-card__name {
    font-size: 1.8rem;
  }

  .customer-card__quote {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .customers {
    padding: 5rem 0 4rem;
  }

  .customers__header {
    margin-bottom: 3.2rem;
  }

  .customers__title {
    font-size: 2.6rem;
  }

  .customers__desc {
    font-size: 1.5rem;
  }

  .customer-card {
    flex-direction: column;
    min-height: auto;
  }

  .customer-card__photo {
    width: 100%;
    height: 240px;
  }

  .customer-card__content {
    padding: 2.4rem 2rem;
  }

  .customer-card__logo {
    max-width: 100px;
    margin-bottom: 1.6rem;
  }

  .customer-card__name {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }

  .customer-card__quote {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }

  .customer-card__role {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .customers {
    padding: 4rem 0 3rem;
  }

  .customers__title {
    font-size: 2.2rem;
  }

  .customers__desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .customer-card {
    border-radius: 12px;
  }

  .customer-card__photo {
    height: 200px;
  }

  .customer-card__content {
    padding: 2rem 1.6rem;
  }

  .customer-card__logo {
    max-width: 80px;
    margin-bottom: 1.2rem;
  }

  .customer-card__name {
    font-size: 1.5rem;
  }

  .customer-card__quote {
    font-size: 1.3rem;
    line-height: 1.7;
  }

  .customer-card__role {
    font-size: 1.2rem;
  }
}

/* =========================Message from us========================= */
.message {
  padding: 10rem 0;
  /* background: #f4f6f9; */
}

.message__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Section Header ── */
.message__header {
  text-align: center;
  margin-bottom: 5.6rem;
}

.message__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 8px 22px;
  background: color-mix(in srgb, var(--primary-color) 7%, transparent);
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 2rem;
  position: relative;
}

.message__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}

.message__title {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #0a1628;
  margin-bottom: 1.8rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.message__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  font-style: italic;
  line-height: 1.75;
  color: #4a5568;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Features Grid ── */
.message__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

/* ── Feature Item ── */
.message__item {
  text-align: center;
  padding: 3.2rem 2.4rem 2.8rem;
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  transition:
    box-shadow 0.25s ease,
    border-color 0.35s ease;
}

.message__item:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 40, 0.06);
  border-color: #c6d0db;
}

.message__item:hover .message__item-title {
  color: var(--primary-color);
}

.message__item-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #f3f6f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: transform 0.3s ease;
}

.message__item:hover .message__item-icon {
  transform: scale(1.08);
}

.message__item-icon i {
  font-size: 2.4rem;
  color: var(--primary-color);
}

.message__item-title {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.3;
  margin: 0 0 1rem;
  transition: color 0.3s ease;
}

.message__item-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  color: #636c78;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .message {
    padding: 7rem 0;
  }

  .message__header {
    margin-bottom: 4rem;
  }

  .message__title {
    font-size: 3.2rem;
  }

  .message__desc {
    font-size: 1.6rem;
  }

  .message__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .message__item {
    padding: 2.8rem 2rem 2.4rem;
  }
}

@media (max-width: 767px) {
  .message {
    padding: 5rem 0;
  }

  .message__header {
    margin-bottom: 3.2rem;
  }

  .message__title {
    font-size: 2.6rem;
  }

  .message__desc {
    font-size: 1.5rem;
  }

  .message__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .message__item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2.4rem 2rem;
  }

  .message__item-icon {
    margin: 0 0 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .message__item-icon i {
    font-size: 2rem;
  }

  .message__item-title {
    display: none;
    font-size: 1.6rem;
  }

  .message__item-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .message {
    padding: 4rem 0;
  }

  .message__badge {
    font-size: 1.1rem;
    padding: 6px 16px;
    margin-bottom: 1.6rem;
  }

  .message__title {
    font-size: 2.2rem;
  }

  .message__desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .message__item {
    padding: 2rem 1.6rem;
    gap: 1.4rem;
  }

  .message__item-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .message__item-icon i {
    font-size: 1.8rem;
  }

  .message__item-title {
    display: none;
    font-size: 1.5rem;
  }

  .message__item-text {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}

/* ========================= Services Hero ========================= */
/* ╔══════════════════════════════════════════════════════════════╗
   ║  DEPRECATED: Old services page styles below.               ║
   ║  Replaced by new svc-* classes at end of file.              ║
   ║  Safe to remove after verifying new design in production.  ║
   ╚══════════════════════════════════════════════════════════════╝ */

.services-hero {
  margin: 56px 0 88px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(239, 247, 255, 0.98) 100%
    ),
    radial-gradient(
      circle at top right,
      rgba(113, 174, 255, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at left bottom,
      rgba(17, 101, 196, 0.08),
      transparent 28%
    ),
    linear-gradient(135deg, #ffffff 0%, #f3f8ff 52%, #e6f0fb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(14, 73, 136, 0.08),
    0 18px 40px rgba(12, 53, 97, 0.08);
}

.services-hero::before,
.services-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.services-hero::before {
  inset: auto auto -150px -90px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(83, 148, 230, 0.16) 0%,
    transparent 72%
  );
}

.services-hero::after {
  top: -190px;
  right: -90px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(140, 194, 255, 0.34) 0%,
    transparent 70%
  );
}

.services-hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 83, 158, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 83, 158, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 86%);
  opacity: 0.24;
}

.services-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4.8rem;
  min-height: 260px;
  padding: 4.8rem 0 5.2rem;
}

.services-hero__breadcrumb-wrapper {
  width: 28rem;
  max-width: 100%;
  flex-shrink: 0;
}

.services-hero__breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 2.4rem;
  display: grid;
  gap: 1.1rem;
  position: relative;
}

.services-hero__breadcrumb-list::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(13, 76, 134, 0.06) 0%,
    rgba(13, 76, 134, 0.24) 18%,
    rgba(13, 76, 134, 0.18) 82%,
    rgba(13, 76, 134, 0.06) 100%
  );
}

.services-hero__breadcrumb-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
}

.services-hero__breadcrumb-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 50%;
  width: 0.9rem;
  height: 0.9rem;
  background: #1f6ab1;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
}

.services-hero__breadcrumb-link,
.services-hero__breadcrumb-current {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.services-hero__breadcrumb-link {
  color: #6a8096;
  transition: color 0.2s ease;
}

.services-hero__breadcrumb-link:hover {
  color: #0d4c86;
  transform: none;
}

.services-hero__breadcrumb-current {
  color: #08345b;
  font-weight: 700;
}

.services-hero__heading {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  flex: 1;
  margin-left: auto;
  max-width: 72rem;
  padding-left: 3.2rem;
  border-left: 1px solid rgba(13, 76, 134, 0.12);
}

.services-hero__page-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d4c86;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.services-hero__page-icon svg {
  width: 2.6rem;
  height: 2.6rem;
}

.services-hero__copy {
  display: grid;
  gap: 0.9rem;
}

.services-hero__title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.2rem, 4.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #08345b;
  text-wrap: balance;
  text-shadow: none;
}

.services-hero__subtitle {
  margin: 0;
  max-width: 58ch;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #58728d;
}

.services-hero__line {
  position: relative;
  height: 0.5rem;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-color) 70%, white) 0%,
    color-mix(in srgb, var(--primary-color) 30%, white) 28%,
    transparent 100%
  );
}

.services-hero__line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24rem;
  height: 1.4rem;
  background: radial-gradient(
    circle,
    rgba(62, 138, 214, 0.28) 0%,
    transparent 72%
  );
  transform: translateY(-50%);
  filter: blur(8px);
}

@media (prefers-reduced-motion: reduce) {
  .services-hero__breadcrumb-link {
    transition: none;
  }
}

.service__wrap {
  border-top: 2px solid var(--third-color);
  padding-top: 2rem;
}

/* Services Grid */
.services-grid {
  padding: 8rem 0;
  background-color: white;
}

/* Software Development Section */
.services-software {
  padding: 10rem 0;
  background-color: #f8fafd;
}

.services__anchor {
  position: relative;
}

.services-software__header {
  text-align: center;
  margin-bottom: 6rem;
}

.services-software__title {
  font-size: 4.8rem;
  color: #1a1c1e;
  margin-bottom: 2.4rem;
}

.services-software__title span {
  color: var(--secondary-color);
}

.services-software__desc {
  font-size: 1.8rem;
  max-width: 90rem;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.software-card {
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 0.8rem;
  border: 1px solid #f9f9f9;
  text-align: center;
  height: 100%;
  box-shadow: 0px 10px 36px -20px #00000040;

  transition: box-shadow 0.3s ease;
}

.software-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.software-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.software-card__icon img {
  width: 48px;
  height: 48px;
}

.software-card__title {
  color: var(--primary-color);
  margin-bottom: 1.6rem;
  font-family: Nunito;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 1.8rem;
  line-height: 100%;
  text-align: center;
}

.service-card__desc {
  font-family: Poppins;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
  color: #7a7a7e;
}

.service-card__link {
  color: var(--secondary-color);
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
}

/* Value Section */
.services-value {
  padding: 10rem 0;
  background-color: #ffffff;
}

.services-value__header {
  text-align: center;
  margin-bottom: 8rem;
}

.services-value__title {
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 2.4rem;
}

.services-value__grid {
  position: relative;
}

.services-value__connector {
  content: '';
  display: inline-block;
  position: absolute;
  top: calc(3.2rem + 3rem);
  /* 3.2m (nửa icon) + 3rem (margin-top của row g-5) */
  left: 16.666%;
  right: 16.666%;
  height: 1px;
  background-image: linear-gradient(
    to right,
    color-mix(in srgb, var(--primary-color) 20%, transparent) 50%,
    transparent 50%
  );
  background-size: 20px 1px;
  z-index: 1;
}

@media (min-width: 768px) {
  .services-value__connector {
    display: block;
  }
}

.value-step {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
}

.value-step__icon {
  width: 6.4rem;
  height: 6.4rem;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.4rem;
  border: 1px solid color-mix(in srgb, var(--primary-color) 10%, transparent);
}

.value-step__icon img {
  width: 32px;
  height: 32px;
}

.value-step__title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.6rem;
}

.value-step__desc {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* Results section */
.services-results {
  padding: 20rem 0;
  background-color: #f8fafd;
  border-top: 1px solid #f3f3f6;
}

.services-results__header {
  text-align: center;
  margin-bottom: 6rem;
}

.services-results__title {
  font-size: 4rem;
  color: var(--primary-color);
  font-style: italic;
}

.results-box {
  background-color: #ffffff;
  padding: 4.8rem;
  border-radius: 0.8rem;
  box-shadow: 0px 10px 36px -20px #00000040;
}

.results-stat {
  text-align: left;
  padding: 1rem 2rem;
}

.results-stat:not(:first-child) {
  border-left: 1px solid #f3f3f6;
}

.results-stat__number {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-family: Nunito;
  font-weight: 700;
  font-style: bold;
  font-size: 3.2rem;
  text-align: center;
}

.results-stat__number span {
  font-size: 2.4rem;
}

.results-stat__desc {
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
}

@media (max-width: 768px) {
  .results-stat:not(:first-child) {
    border-left: none;
    border-top: 1px solid #f3f3f6;
    padding-top: 2rem;
    margin-top: 1rem;
  }
}

/* ========================= Company ========================= */
.company {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.company__header {
  text-align: center;
  margin-bottom: 6rem;
}

.company__header-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  color: #000;
}

.company__timeline-wrapper {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.company__timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-image: linear-gradient(
    var(
        --primary-color,
        color-mix(in srgb, var(--primary-color) 40%, transparent)
      )
      50%,
    transparent 50%
  );
  background-size: 2px 14px;
  z-index: 1;
}

.company__timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: var(--primary-color, var(--primary-color));
  border-radius: 50%;
  z-index: 2;
}

.company__item {
  position: relative;
  z-index: 3;
  margin-bottom: 10rem;
}

.company__item:last-child {
  margin-bottom: 0;
}

.company__thumbnails {
  width: 100%;
  max-width: 44rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Push image to right when in right column */
.col-md-6.order-md-2 .company__thumbnails {
  margin-left: auto;
}

/* Push image to left when in left column */
.col-md-6:not(.order-md-2) .company__thumbnails {
  margin-right: auto;
}

.company__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 44rem;
}

.company__info--left {
  margin-right: auto;
  padding-right: 2rem;
}

.company__info--right {
  margin-left: auto;
  padding-left: 2rem;
}

.company__number {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 0.4rem;
}

.company__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.company__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

@media (max-width: 767.98px) {
  .company__timeline-line {
    display: none;
  }

  .company__timeline-dot {
    display: none;
  }

  .company__item {
    margin-bottom: 6rem;
  }

  .company__info--left,
  .company__info--right {
    padding: 0;
    margin-top: 2.4rem;
    text-align: left;
  }

  .company__thumbnails,
  .col-md-6.order-md-2 .company__thumbnails {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    border-radius: 8px;
  }

  .company__title {
    font-size: 2.2rem;
  }

  .company__desc {
    font-size: 1.6rem;
  }
}

/* ========================= Partners ========================= */
.partners {
  margin-top: 8.4rem;
  padding: 8rem 0;
  /* background: #f9fafb; */
  overflow: hidden;
  position: relative;
}

.partners__badge {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.6rem;
  border-radius: 100px;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.6rem;
}

.partners__header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.partners__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 3.6rem;
  color: #111827;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.partners__desc {
  font-size: 1.6rem;
  color: #4b5563;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.partners__track-wrapper {
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  padding: 1rem 0;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.partners__track-wrapper--reverse {
  margin-bottom: 0;
}

.partners__track {
  display: flex;
  width: max-content;
}

.partners__track--forward {
  animation: partners-scroll-forward 28s linear infinite;
}

.partners__track--reverse {
  animation: partners-scroll-reverse 34s linear infinite;
}

.partners__track:hover {
  animation-play-state: paused;
}

@keyframes partners-scroll-forward {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes partners-scroll-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.partners__slide {
  flex-shrink: 0;
  width: auto;
  padding: 0.5rem;
}

.partners__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-width: 200px;
  padding: 2.4rem 2.8rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.partners__card:hover {
  transform: translateY(-4px);
  border-color: #d1d5db;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.06),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

/* Color variants for Row 2 — subtle accent on hover */
.partners__card--violet {
  border-color: rgba(139, 92, 246, 0.2);
}

.partners__card--violet:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow:
    0 20px 25px -5px rgba(139, 92, 246, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.partners__card--blue {
  border-color: rgba(59, 130, 246, 0.2);
}

.partners__card--blue:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow:
    0 20px 25px -5px rgba(59, 130, 246, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.partners__card--cyan {
  border-color: rgba(6, 182, 212, 0.2);
}

.partners__card--cyan:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow:
    0 20px 25px -5px rgba(6, 182, 212, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.partners__card--amber {
  border-color: rgba(245, 158, 11, 0.2);
}

.partners__card--amber:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow:
    0 20px 25px -5px rgba(245, 158, 11, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.partners__card--emerald {
  border-color: rgba(16, 185, 129, 0.2);
}

.partners__card--emerald:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow:
    0 20px 25px -5px rgba(16, 185, 129, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.partners__card--rose {
  border-color: rgba(244, 63, 94, 0.2);
}

.partners__card--rose:hover {
  border-color: rgba(244, 63, 94, 0.4);
  box-shadow:
    0 20px 25px -5px rgba(244, 63, 94, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.partners__logo {
  max-width: 140px;
  max-height: 5rem;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: all 0.3s ease;
}

.partners__card:hover .partners__logo {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

.partners__name {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.partners__card:hover .partners__name {
  color: #111827;
}

.partners__icon {
  font-size: 2.4rem;
  transition: transform 0.3s ease;
}

.partners__card--violet .partners__icon {
  color: #8b5cf6;
}

.partners__card--blue .partners__icon {
  color: var(--primary-color);
}

.partners__card--cyan .partners__icon {
  color: #06b6d4;
}

.partners__card--amber .partners__icon {
  color: #f59e0b;
}

.partners__card--emerald .partners__icon {
  color: #10b981;
}

.partners__card--rose .partners__icon {
  color: #f43f5e;
}

.partners__card:hover .partners__icon {
  transform: scale(1.08);
}

.partners__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #4b5563;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.partners__card:hover .partners__label {
  color: #111827;
}

@media (max-width: 768px) {
  .partners {
    padding: 5rem 0;
  }

  .partners__title {
    font-size: 2.8rem;
  }

  .partners__desc {
    font-size: 1.4rem;
  }

  .partners__card {
    min-width: 160px;
    padding: 1.8rem 1.6rem;
  }

  .partners__track--forward {
    animation-duration: 22s;
  }

  .partners__track--reverse {
    animation-duration: 26s;
  }
}

/* ========================= News & Insights — Modern Corporate Minimalism ========================= */
.news {
  position: relative;
  padding: 6rem 0 8rem;
  /* background: #f9fafb; */
}

.news__inner {
  position: relative;
}

.news__header {
  text-align: center;
  margin-bottom: 4rem;
}

.news__badge {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.6rem;
  border-radius: 100px;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.6rem;
}

.news__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 3.6rem;
  color: #111827;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.news__desc {
  font-size: 1.6rem;
  color: #4b5563;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Carousel layout */
.news__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.news__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.news__nav:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.news__nav:active {
  transform: scale(0.95);
}

.news__nav--prev {
  margin-left: -8px;
}

.news__nav--next {
  margin-right: -8px;
}

.news__track-viewport {
  flex: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}

.news__track {
  display: flex;
  gap: 3.2rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card */
.news__card {
  flex: 0 0 calc(33.333% - 2.2rem);
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.news__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.06),
    0 8px 10px -6px rgba(0, 0, 0, 0.03);
  border-color: #d1d5db;
}

.news__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news__card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
}

.news__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news__card:hover .news__card-img {
  transform: scale(1.05);
}

.news__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  transition: background 0.3s ease;
}

.news__card:hover .news__card-overlay {
  background: rgba(0, 0, 0, 0.08);
}

.news__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0;
  margin-top: auto;
  width: fit-content;
  transition: all 0.3s ease;
}

.news__card-btn .fa-solid {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.news__card:hover .news__card-btn {
  color: var(--secondary-color);
}

.news__card:hover .news__card-btn .fa-solid {
  transform: translateX(3px);
}

.news__card-body {
  padding: 2rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8rem;
}

.news__card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.news__card-meta-category {
  display: inline-block;
  color: var(--secondary-color);
  background: #eff6ff;
  padding: 0.2rem 0.8rem;
  border-radius: 1px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.news__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.news__card:hover .news__card-title {
  color: var(--secondary-color);
}

.news__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination dots */
.news__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
}

.news__dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news__dot--active {
  width: 24px;
  background: var(--primary-color);
}

/* Post card base (kept for other pages) */
.post-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
  box-shadow: 0px 10px 36px -20px #00000040;
}

.post-card:hover {
  border-color: #c0c0c0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.post-card__img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--white, #ffffff);
  transition: opacity 0.3s ease;
  display: block;
}

.post-card:hover .post-card__img {
  opacity: 0.9;
}

.post-card__body {
  padding: 2.4rem 2rem 2.8rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.2rem 0;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 2);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #555555;
  margin: 0 0 2.4rem 0;
  line-height: 1.6;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__link {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary-color, var(--primary-color));
  text-decoration: none;
  margin-top: auto;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s ease;
}

.post-card__link:hover {
  color: var(--secondary-color, #1d4ed8);
  text-decoration: underline;
}

/* DEPRECATED: Old Contact CTA — replaced by svc-cta & svc-contact */
/* Contact CTA Section */
.contact-cta__top {
  position: relative;
}

.contact__input {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  font-size: 1.4rem;
  color: #495057;
  transition: all 0.3s ease;
  width: 100%;
  background-color: #fff;
}

.contact__input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--secondary-color);
  outline: none;
}

.contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23adb5bd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  background-size: 1.2rem;
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__textarea-resize-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  pointer-events: none;
  background-image: linear-gradient(
    135deg,
    transparent 50%,
    var(--primary-color) 50%
  );
  background-size: 4px 4px;
  opacity: 0.8;
}

.contact__link:hover {
  text-decoration: none !important;
}

@media (max-width: 1024px) {
  .news__card {
    flex: 0 0 calc(50% - 1.6rem);
  }

  .news__track {
    gap: 3.2rem;
  }
}

@media (max-width: 768px) {
  .news {
    padding: 4rem 0 5rem;
  }

  .news__title {
    font-size: 2.8rem;
  }

  .news__desc {
    font-size: 1.4rem;
  }

  .news__header {
    margin-bottom: 3.2rem;
  }

  .news__card {
    flex: 0 0 100%;
  }

  .news__track {
    gap: 2.4rem;
  }

  .news__nav {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .news__card-body {
    padding: 2rem;
  }

  .news__carousel {
    gap: 0.8rem;
  }

  .news__card-title {
    font-size: 1.6rem;
  }

  .news__card-desc {
    font-size: 1.3rem;
  }

  .news__pagination {
    margin-top: 2.4rem;
    padding-top: 1.6rem;
  }
}

/* DEPRECATED: Old Application section — replaced by svc-* */
/* ========================= Application ========================= */
.applications {
  margin-bottom: 4rem;
}

.application__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  box-shadow:
    0 1px 3px rgba(0, 44, 90, 0.08),
    0 1px 2px rgba(0, 44, 90, 0.06);
  border: 1px solid #ebeef1;
}

.application__card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 20px 40px rgba(0, 44, 90, 0.12),
    0 8px 16px rgba(0, 44, 90, 0.08);
  border-color: rgba(56, 93, 161, 0.2);
}

.application__card-left {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
  background: #ffffff;
}

.application__card-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-color) 70%, black),
    color-mix(in srgb, var(--primary-color) 40%, black)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.application__card:hover .application__card-left::before {
  opacity: 1;
}

.application__card-left > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.application__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.application__card:hover .application__icon {
  transform: scale(1.08);
}

.application__card__title {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
  color: color-mix(in srgb, var(--primary-color) 70%, black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  letter-spacing: -0.01em;
}

.application__card__desc {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #424750;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.application__card-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.application__card-left ul > li {
  position: relative;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #424750;
  padding-left: 18px;
  margin-bottom: 6px;
}

.application__card-left ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-color) 40%, black);
}

.application__card-right {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f7fafd 0%, #f1f4f7 100%);
  border-left: 1px solid #ebeef1;
  position: relative;
  overflow: hidden;
}

.application__card-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.4) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.application__card__img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.application__card:hover .application__card__img {
  transform: scale(1.05);
}

.application-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid #ebeef1;
  background: #ffffff;
  gap: 12px;
  flex-shrink: 0;
  margin-top: auto;
}

.application-wrap .btn-application {
  background: color-mix(in srgb, var(--primary-color) 70%, black);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.application-wrap .btn-application:hover {
  background: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 44, 90, 0.25);
}

.application-wrap .btn-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--primary-color) 40%, black);
  text-decoration: none;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.application-wrap .btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.application-wrap .btn-link:hover {
  color: color-mix(in srgb, var(--primary-color) 70%, black);
}

.application-wrap .btn-link:hover::after {
  transform: translateX(4px);
}

/* Service Card Category Badge - Material Design 3 Style */
.service__category-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(56, 93, 161, 0.1);
  color: color-mix(in srgb, var(--primary-color) 40%, black);
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* Featured card style for first item */
.application__card.featured {
  grid-column: span 2;
}

.application__card.featured .application__card__title {
  font-size: 1.5rem;
}

.application__card.featured .application__card__desc {
  font-size: 1rem;
  -webkit-line-clamp: 4;
}

@media (max-width: 991px) {
  .application__card.featured {
    grid-column: span 1;
  }

  .application__card.featured .application__card__title {
    font-size: 1.15rem;
  }
}

.btn-application {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  height: 34px;
  padding: 0 16px;
  font-size: 1.3rem;
  white-space: nowrap;
}

.btn-link {
  font-size: 1.3rem;
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.btn-link:hover {
  color: var(--primary-color);
}

/* Responsive — Tablet */
@media (max-width: 991px) {
  .application__card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .application__card:hover {
    transform: translateY(-2px) scale(1.005);
  }

  .application__card-right {
    border-left: none;
    border-top: 1px solid #ebeef1;
  }

  .application__card__img {
    height: 220px;
    min-height: 220px;
  }

  .application__card__title {
    font-size: 1.15rem;
  }

  .application__card-left {
    padding: 24px 20px;
  }

  .application__icon {
    width: 40px;
    height: 40px;
  }
}

/* Responsive — Mobile small */
@media (max-width: 575px) {
  .application__card {
    border-radius: 12px;
  }

  .application__card-left {
    padding: 20px 16px;
    gap: 10px;
  }

  .application__card-left::before {
    height: 3px;
  }

  .application__card__title {
    font-size: 1.1rem;
  }

  .application__card__desc {
    font-size: 0.8125rem;
    -webkit-line-clamp: 2;
  }

  .application__card__img {
    height: 180px;
    min-height: 180px;
  }

  .application-wrap {
    flex-direction: row;
    gap: 8px;
    padding: 14px 16px;
  }

  .application-wrap .btn-application,
  .application-wrap .btn-link {
    font-size: 0.6875rem;
  }
}

.application__card:hover {
  transform: translateY(-2px);
}

.application__card-right {
  border-left: none;
  border-top: 1px solid #f1f5f9;
}

.application__card__img {
  height: 240px;
  min-height: 240px;
}

.application__card__title {
  font-size: 1.8rem;
}

.application__card-left {
  padding: 24px 20px;
}

.application__icon {
  width: 42px;
  height: 42px;
}

/* Responsive — Mobile small */
@media (max-width: 575px) {
  .application__card-left {
    padding: 20px 16px;
  }

  .application__card-left::before {
    height: 3px;
  }

  .application__card__title {
    font-size: 1.6rem;
  }

  .application__card__desc {
    font-size: 1.35rem;
    -webkit-line-clamp: 2;
  }

  .application__card__img {
    height: 200px;
    min-height: 200px;
  }

  .application-wrap {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 16px;
  }

  .application-wrap .btn-application,
  .application-wrap .btn-link {
    width: 100%;
    text-align: center;
  }

  .application__icon {
    width: 38px;
    height: 38px;
  }

  .application__card-left ul > li {
    font-size: 1.3rem;
    padding-left: 18px;
    margin-bottom: 6px;
  }

  .application__card-left ul > li::before {
    width: 5px;
    height: 5px;
    top: 7px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING CONTACT WIDGET — Professional Minimal Design
   ═══════════════════════════════════════════════════════════════ */
.floating-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

/* ── Main toggle button ─────────────────────────────────────── */
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.15),
    0 1px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  outline: none;
}

@keyframes floatingPulse {
  0%,
  100% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.15),
      0 0 0 0 color-mix(in srgb, var(--primary-color) 30%, transparent);
  }

  50% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.15),
      0 0 0 8px color-mix(in srgb, var(--primary-color) 0%, transparent);
  }
}

.floating-btn i {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease;
}

.floating-widget.active .floating-btn,
.floating-widget.chat-open .floating-btn,
.floating-widget.topics-open .floating-btn {
  background: #64758b;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Icon swap - headset <-> xmark */
.floating-btn .fa-headset {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  position: relative;
}

.floating-btn .fa-xmark {
  opacity: 0;
  position: absolute;
  transform: scale(0.5) rotate(-45deg);
}

.floating-widget.active .floating-btn .fa-headset,
.floating-widget.chat-open .floating-btn .fa-headset,
.floating-widget.topics-open .floating-btn .fa-headset {
  opacity: 0;
  transform: scale(0.5) rotate(45deg);
}

.floating-widget.active .floating-btn .fa-xmark,
.floating-widget.chat-open .floating-btn .fa-xmark,
.floating-widget.topics-open .floating-btn .fa-xmark {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.floating-widget.active .floating-btn:hover,
.floating-widget.chat-open .floating-btn:hover,
.floating-widget.topics-open .floating-btn:hover {
  transform: scale(1.08);
}

/* ── Contact Card Panel (replaces floating-social circles) ──── */
.floating-social {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 300px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  transform-origin: bottom right;
  z-index: 1;
}

.floating-widget.active .floating-social {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Contact card header */
.floating-social-header {
  background: #64758b;
  padding: 16px 18px 14px;
  color: white;
}

.floating-social-header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.floating-social-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.floating-social-brand {
  flex: 1;
}

.floating-social-brand strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #f1f5f9;
}

.floating-social-brand span {
  display: block;
  font-size: 1.15rem;
  opacity: 0.6;
  margin-top: 2px;
  color: #94a3b8;
}

.floating-social-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.15rem;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}

.floating-social-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: statusPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

/* Contact items list */
.floating-social-list {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1e293b;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.floating-item:hover {
  background: #f8fafc;
  border-color: #e8ecf2;
  transform: translateX(-2px);
  text-decoration: none;
}

.floating-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.floating-item:hover .floating-item-icon {
  transform: scale(1.1);
}

.floating-item-text strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.floating-item-text span {
  display: block;
  font-size: 1.15rem;
  color: #64748b;
  margin-top: 1px;
  font-weight: 400;
}

.floating-item-arrow {
  margin-left: auto;
  color: #94a3b8;
  font-size: 11px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.floating-item:hover .floating-item-arrow {
  transform: translateX(3px);
  color: var(--primary-color);
}

.floating-item.zalo .floating-item-icon {
  background: #eff6ff;
  color: #0068ff;
}

.floating-item.facebook .floating-item-icon {
  background: #eff6ff;
  color: #0084ff;
}

.floating-item.phone .floating-item-icon {
  background: #ecfdf5;
  color: #16a34a;
}

.floating-item.chat .floating-item-icon {
  background: #fff7ed;
  color: var(--primary-color);
}

/* Divider between social items */
.floating-social-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 4px 12px;
}

.chat-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 380px;
  height: 76vh;
  max-height: 620px;
  background-color: #f8fafc;
  border-radius: 16px;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  transform-origin: bottom right;
}

.floating-widget.chat-open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  background: #64758b;
  color: white;
  padding: 0;
  display: block;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.chat-header-main {
  padding: 16px 18px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.chat-header-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--primary-color);
}

.chat-header-info {
  flex: 1;
  min-width: 0;
}

.chat-header-info strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f1f5f9;
}

.chat-header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.chat-header-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: statusPulse 2s ease-in-out infinite;
}

.chat-header-status-text {
  font-size: 1.2rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #94a3b8;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.05);
}

.chat-body {
  flex: 1;
  background-color: #f1f5f9;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Form (Step 1) ──────────────────────────────────────────── */
.chat-form-container {
  padding: 20px 18px 24px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.chat-form-intro {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.chat-form-intro-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary-color) 10%, white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.chat-form-intro-text strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.chat-form-intro-text p {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.chat-form-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-form-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 2px;
  flex-shrink: 0;
}

.chat-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
}

.chat-form-group {
  margin-bottom: 14px;
}

.chat-form-group:last-child {
  margin-bottom: 0;
}

.chat-form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 7px;
}

.chat-form-label .required {
  color: #ef4444;
  font-size: 1.1rem;
}

.chat-form-input,
.chat-form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.35rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background-color: #f8fafc;
  transition: all 0.22s ease;
  color: #1e293b;
  outline: none;
  font-family: inherit;
  line-height: 1.4;
}

.chat-form-input::placeholder {
  color: #94a3b8;
}

.chat-form-input:focus,
.chat-form-select:focus {
  border-color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.chat-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.chat-support-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-color) 4%, white),
    color-mix(in srgb, var(--primary-color) 8%, white)
  );
  border: 1px solid color-mix(in srgb, var(--primary-color) 20%, white);
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.chat-support-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.chat-support-info-body strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--primary-color) 70%, black);
  margin-bottom: 4px;
}

.chat-support-info-body a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1.2rem;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 2px;
}

.chat-support-info-body a:hover {
  text-decoration: underline;
}

.chat-form-btn {
  width: 100%;
  padding: 13px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.2px;
}

.chat-form-btn i {
  font-size: 1.3rem;
}

.chat-form-btn:hover {
  background: color-mix(in srgb, var(--primary-color) 85%, black);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-form-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.chat-form-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ── Chat Room ──────────────────────────────────────────────── */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}

.chat-message-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 88%;
  animation: messageAppear 0.28s ease-out forwards;
}

@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message-wrapper.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-message-wrapper.support {
  align-self: flex-start;
  flex-direction: row;
}

.chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.chat-message-wrapper.user .chat-avatar {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.chat-message-wrapper.support .chat-avatar {
  background: #fff;
  color: var(--primary-color);
  border: 1.5px solid color-mix(in srgb, var(--primary-color) 12%, white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.chat-msg-bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 1.35rem;
  line-height: 1.55;
  position: relative;
  word-break: break-word;
  max-width: 100%;
}

.chat-message-wrapper.user .chat-msg-bubble {
  background: var(--primary-color);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-message-wrapper.support .chat-msg-bubble {
  background: #fff;
  color: #1e293b;
  border: 1px solid #e8edf5;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.chat-msg.system,
.chat-msg.error {
  align-self: center;
  background: rgba(100, 116, 139, 0.1);
  border-radius: 20px;
  padding: 5px 14px;
  color: #64748b;
  font-size: 1.15rem;
  max-width: 82%;
  margin: 2px 0;
  text-align: center;
}

.chat-inline-links {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #dbeafe;
}

.chat-inline-links-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
}

.chat-inline-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-inline-links-extra {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.chat-inline-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.chat-inline-link:hover {
  color: color-mix(in srgb, var(--primary-color) 85%, black);
}

.chat-inline-links-toggle {
  margin-top: 10px;
  padding: 0;
  border: none;
  background: transparent;
  color: #475569;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.chat-inline-links-toggle:hover {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Chat Footer ────────────────────────────────────────────── */
.chat-footer {
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid #e8edf5;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.04);
}

.chat-footer input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-radius: 22px;
  padding: 12px 18px;
  font-size: 1.35rem;
  outline: none;
  background: #f8fafc;
  transition: all 0.22s ease;
  font-family: inherit;
  color: #1e293b;
}

.chat-footer input::placeholder {
  color: #94a3b8;
}

.chat-footer input:focus {
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.chat-footer button#btnSendChatMessage {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.chat-footer button#btnSendChatMessage i {
  font-size: 1.5rem;
  transform: translateX(1px);
}

.chat-footer button#btnSendChatMessage:hover {
  background: color-mix(in srgb, var(--primary-color) 85%, black);
  transform: scale(1.06);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chat-footer button#btnSendChatMessage:active {
  transform: scale(0.96);
}

/* ── AI Typing Indicator (3 animated dots) ──────────────────── */
.typing-bubble {
  padding: 12px 18px !important;
  min-width: 60px;
  display: flex;
  align-items: center;
}

.typing-dot-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: inline-block;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    background-color: var(--primary-color);
    opacity: 0.45;
  }

  30% {
    transform: translateY(-8px);
    background-color: var(--primary-color);
    opacity: 1;
  }
}

/* ── Markdown Prose Styling for AI Chat Bubbles ─────────────── */
.chat-msg-markdown {
  font-size: 1.35rem;
  line-height: 1.7;
}

.chat-msg-markdown p {
  margin: 0 0 8px 0;
}

.chat-msg-markdown p:last-child {
  margin-bottom: 0;
}

.chat-msg-markdown ul,
.chat-msg-markdown ol {
  margin: 6px 0 8px 0;
  padding-left: 20px;
}

.chat-msg-markdown li {
  margin-bottom: 4px;
}

.chat-msg-markdown strong,
.chat-msg-markdown b {
  font-weight: 700;
  color: #0f172a;
}

.chat-msg-markdown em {
  font-style: italic;
}

.chat-msg-markdown code {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 1.2rem;
  font-family: 'Courier New', monospace;
  color: #e11d48;
}

.chat-msg-markdown pre {
  background: #1e293b;
  border-radius: 8px;
  padding: 12px;
  overflow-x: auto;
  margin: 8px 0;
}

.chat-msg-markdown pre code {
  background: transparent;
  border: none;
  color: #e2e8f0;
  font-size: 1.2rem;
  padding: 0;
}

.chat-msg-markdown a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.chat-msg-markdown h1,
.chat-msg-markdown h2,
.chat-msg-markdown h3 {
  font-weight: 700;
  margin: 10px 0 6px 0;
  color: #0f172a;
  line-height: 1.3;
}

.chat-msg-markdown h1 {
  font-size: 1.6rem;
}

.chat-msg-markdown h2 {
  font-size: 1.5rem;
}

.chat-msg-markdown h3 {
  font-size: 1.4rem;
}

.chat-msg-markdown blockquote {
  border-left: 3px solid var(--primary-color);
  padding-left: 12px;
  margin: 6px 0;
  color: #64748b;
  font-style: italic;
}

.chat-msg-markdown hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 10px 0;
}

/* ── Stream cursor (blinking caret for typewriter effect) ── */
.stream-cursor {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1;
  vertical-align: text-bottom;
  animation: blinkCursor 0.7s step-start infinite;
  user-select: none;
}

@keyframes blinkCursor {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── Language Switcher ──────────────────────────────────────── */
.header__lang-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}

.header__lang-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 40px;
  padding: 6px 30px 6px 16px;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: inherit;
  color: #334155;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header__lang-select:hover,
.header__lang-select:focus {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 4px 12px
    color-mix(in srgb, var(--primary-color) 10%, transparent);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23004281' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.header__lang-select option {
  font-weight: 500;
  color: #1e293b;
}

/* ── Floating Topics Menu ───────────────────────────────────── */
.floating-topics-menu {
  position: absolute;
  bottom: 72px;
  right: 60px;
  width: 240px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px) translateY(12px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  transform-origin: bottom right;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.floating-widget.topics-open .floating-topics-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0) scale(1);
  pointer-events: auto;
}

.topics-menu-header {
  background: #64758b;
  color: #e2e8f0;
  padding: 10px 14px;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

.topics-menu-list {
  display: flex;
  flex-direction: column;
  padding: 8px;
}

.topics-menu-item {
  padding: 10px 14px;
  font-size: 1.3rem;
  color: #1e293b;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: left;
  background: transparent;
  border: none;
}

.topics-menu-item:hover {
  background-color: #f1f5f9;
  color: var(--primary-color);
  font-weight: 500;
}

/* ========================= Responsive Navbar ========================= */

header.sticky-scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #f0f0f0;
}

.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__toggle {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer__overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.drawer__close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #333;
  cursor: pointer;
  padding: 4px;
}

/* Base submenu styles for mobile */
.submenu-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: var(--primary-color);
}

@media (max-width: 991.98px) {
  .header__nav-right {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    z-index: 1050;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  }

  .header__nav-right.active {
    right: 0;
  }

  .header__nav {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }

  .header__nav > li {
    display: block;
    margin: 0;
    border-bottom: 1px solid #f5f5f5;
  }

  .header__nav > li > a {
    padding: 15px 0;
    display: flex;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
  }

  .header__nav > li::after {
    display: none;
  }

  .header__lang-wrap {
    flex-direction: column;
    align-items: stretch;
    margin: 20px;
    gap: 15px;
  }

  .submenu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    width: auto;
    min-width: auto;
    box-shadow: none;
    border: none;
    border-left: 2px solid
      color-mix(in srgb, var(--primary-color) 50%, transparent);
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 0;
    margin-bottom: 0;
    transition:
      max-height 0.4s ease-in-out,
      margin-bottom 0.4s ease-in-out;
  }

  .submenu.active {
    max-height: 400px;
    margin-bottom: 15px;
  }

  .submenu > li {
    border-bottom: 1px solid #f5f5f5;
  }

  .submenu > li:last-child {
    border-bottom: none;
  }

  .submenu > li > a {
    padding: 14px 20px;
    font-size: 1.45rem;
    color: #444;
  }
}

/* Animations for hover on desktop */
@media (min-width: 992px) {
  .header__nav > li > a {
    transition: color 0.3s ease;
  }

  .header__nav > li:hover > a {
    color: var(--primary-color);
  }

  .submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block !important;
    pointer-events: none;
  }

  .header__nav > li:hover .submenu,
  .header__nav > li:focus-within .submenu,
  .header__nav > li .submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* =========================Image Optimization========================= */
.hero__slide {
  background: #eef2f6;
}

/* =========================EDUCATION========================= */
.education {
  height: 100vh;
  margin-top: 2rem;
}

.education .left {
  padding: 67px;
}

.education__title {
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 5.2rem;
  line-height: 6rem;
  margin-bottom: 24px;
}

.education__desc {
  font-family: Inter;
  font-weight: 300;
  font-style: light;
  font-size: 1.4rem;
  line-height: 20px;
  margin-bottom: 24px;
  color: #282828;
}

.education__list {
  font-family: Inter;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 2.6rem;
  letter-spacing: 0%;
}

.education__list li {
  position: relative;
  font-family: Inter;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 2.6rem;
  letter-spacing: 0%;
}

.education__list li::before {
  content: url('../img/check.svg');
  display: inline-block;
  margin-right: 8px;
}

.education .right {
  width: 100%;
  height: auto;
}

.education .right img {
  width: 100%;
}

.education__wrap {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 48px 0;
}

.btn-play {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-play:hover {
  border: 1px solid var(--primary-color);
}

/* ========================= TRAINING PROGRAM ========================= */
.training-program {
  padding: 100px 0;
  background: #f8fafd;
}

.training-program__title {
  text-align: center;
  font-size: 4.2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.training-program__desc {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #555555;
  margin-bottom: 40px;
}

.training-program__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.training-program__tab {
  padding: 12px 32px;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.training-program__tab:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.training-program__tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.training-program__accordion {
  background: #dfe7f3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 42, 82, 0.08);
}

.training-program__accordion-item {
  background: #ffffff;
  border-bottom: 1px solid #dfe7f3;
}

.training-program__accordion-item:last-child {
  border-bottom: none;
}

.training-program__accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.training-program__accordion-header:hover {
  background: #f7faff;
}

.training-program__accordion-header.active {
  background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
}

.training-program__accordion-number {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  min-width: 28px;
}

.training-program__accordion-title {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.training-program__accordion-icon {
  font-size: 14px;
  color: #888888;
  transition: transform 0.3s ease;
}

.training-program__accordion-header.active .training-program__accordion-icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.training-program__accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.training-program__accordion-content {
  padding: 0 24px 24px 68px;
  display: grid;
  gap: 16px;
}

.training-program__accordion-body p {
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.training-program__accordion-points {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.training-program__accordion-points li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #4f5b68;
}

.training-program__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ========================= CUSTOMER REVIEWS ========================= */
.customer-reviews {
  padding: 100px 0;
  background: #ffffff;
}

.customer-reviews__title {
  text-align: center;
  font-size: 4.2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.customer-reviews__desc {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #555555;
  margin-bottom: 48px;
}

.customer-reviews__slider {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 72px;
}

.customer-reviews__slider .swiper {
  overflow: hidden;
  padding: 8px 0 56px;
}

.customer-reviews__slider .swiper-wrapper {
  align-items: stretch;
}

.customer-reviews__slider .swiper-slide {
  height: auto;
  display: flex;
  align-self: stretch;
}

.customer-reviews__card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 10px 32px rgba(0, 42, 82, 0.06);
  min-height: 320px;
  width: 100%;
}

.customer-reviews__card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 16px 36px
    color-mix(in srgb, var(--primary-color) 12%, transparent);
  transform: translateY(-4px);
}

.customer-reviews__card-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.customer-reviews__card-stars i {
  color: #ffc107;
  font-size: 16px;
}

.customer-reviews__card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.customer-reviews__card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-reviews__card-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    color-mix(in srgb, var(--primary-color) 80%, white) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.customer-reviews__pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.customer-reviews__card-info strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.customer-reviews__card-info span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #888888;
}

.education-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d9e1ec;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 42, 82, 0.12);
}

.education-slider-btn::after {
  display: none;
}

.education-slider-btn i {
  font-size: 1.5rem;
  transition: transform 0.25s ease;
}

.education-slider-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 12px 28px
    color-mix(in srgb, var(--primary-color) 24%, transparent);
}

.customer-reviews__btn-prev:hover i {
  transform: translateX(-2px);
}

.customer-reviews__btn-next:hover i {
  transform: translateX(2px);
}

.education-slider-btn.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
}

.customer-reviews__btn-prev,
.customer-reviews__btn-next {
  top: calc(50% - 28px);
}

.customer-reviews__btn-prev {
  left: 0;
}

.customer-reviews__btn-next {
  right: 0;
}

.customer-reviews .swiper-pagination-bullet {
  background: var(--third-color);
  opacity: 0.5;
}

.customer-reviews .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

/* ========================= CONSULTATION ========================= */
.consultation {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafd 0%, #edf0f3 100%);
}

.consultation__content {
  padding-right: 40px;
}

.consultation__title {
  font-family: 'Inter', sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.consultation__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 32px;
}

.consultation__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consultation__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333333;
}

.consultation__benefits li i {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
}

.consultation__form-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: visible;
}

.consultation__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.consultation__form-group {
  margin-bottom: 0;
}

.consultation__input,
.consultation__select,
.consultation__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333333;
  background: #ffffff;
  transition: all 0.3s ease;
}

.consultation__input:focus,
.consultation__select:focus,
.consultation__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--primary-color) 10%, transparent);
}

.consultation__input::placeholder,
.consultation__textarea::placeholder {
  color: #999999;
}

.consultation__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

.consultation__textarea {
  resize: vertical;
  min-height: 120px;
}

.consultation__submit {
  width: 100%;
  min-height: 52px;
  max-height: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* ========================= EDUCATION HERO CTA BUTTONS ========================= */
.edu-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 44px;
  padding: 0 28px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px
    color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.edu-cta-primary:hover {
  background-color: #003a6b;
  box-shadow: 0 6px 20px
    color-mix(in srgb, var(--primary-color) 40%, transparent);
  transform: translateY(-2px);
}

.edu-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 44px;
  padding: 0 28px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.edu-cta-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 14px
    color-mix(in srgb, var(--primary-color) 30%, transparent);
  transform: translateY(-2px);
}

/* ========================= AI SLIDER SECTION ========================= */
.ai-slider-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.ai-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 93, 161, 0.2),
    transparent
  );
}

.ai-slider-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ai-slider-header .title {
  font-size: 3rem;
  margin: 1rem 0;
  color: #002c5a;
}

.ai-slider-header .desc {
  max-width: 600px;
  margin: 0 auto;
  color: #424750;
  font-size: 1.1rem;
  line-height: 1.6;
}

.ai-slider-container {
  position: relative;
  padding: 0 3rem;
}

.aiSwiper {
  padding: 2rem 0;
}

.ai-slide {
  height: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-slide__inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 44, 90, 0.08);
  border: 1px solid #ebeef1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ai-slide__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #002c5a, #385da1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-slide:hover .ai-slide__inner {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 44, 90, 0.15);
  border-color: rgba(56, 93, 161, 0.3);
}

.ai-slide:hover .ai-slide__inner::before {
  opacity: 1;
}

.ai-slide__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(56, 93, 161, 0.1) 0%,
    rgba(0, 44, 90, 0.05) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #385da1;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.ai-slide:hover .ai-slide__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #385da1 0%, #002c5a 100%);
  color: white;
}

.ai-slide__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #002c5a;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.ai-slide__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #424750;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.ai-slide__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.ai-tag {
  background: rgba(56, 93, 161, 0.08);
  color: #385da1;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(56, 93, 161, 0.2);
  transition: all 0.3s ease;
}

.ai-slide:hover .ai-tag {
  background: rgba(56, 93, 161, 0.15);
  border-color: rgba(56, 93, 161, 0.4);
}

.ai-swiper-btn-next,
.ai-swiper-btn-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 44, 90, 0.15);
  color: #002c5a;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.ai-swiper-btn-next::after,
.ai-swiper-btn-prev::after {
  font-size: 1rem;
  font-weight: 900;
}

.ai-swiper-btn-next:hover,
.ai-swiper-btn-prev:hover {
  background: #002c5a;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.ai-swiper-btn-next {
  right: -1rem;
}

.ai-swiper-btn-prev {
  left: -1rem;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(56, 93, 161, 0.3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #385da1;
  transform: scale(1.2);
}

/* Responsive AI Slider */
@media (max-width: 768px) {
  .ai-slider-section {
    padding: 4rem 0;
  }

  .ai-slider-header .title {
    font-size: 2.2rem;
  }

  .ai-slider-container {
    padding: 0 1rem;
  }

  .ai-swiper-btn-next,
  .ai-swiper-btn-prev {
    display: none;
  }

  .ai-slide__inner {
    padding: 2rem 1.5rem;
  }

  .ai-slide__title {
    font-size: 1.3rem;
  }

  .ai-slide__desc {
    font-size: 0.9rem;
  }
}

/* ========================= AI SLIDER SECTION ========================= */
.ai-slider-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.ai-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 93, 161, 0.2),
    transparent
  );
}

.ai-slider-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ai-slider-header .title {
  font-size: 3rem;
  margin: 1rem 0;
  color: #002c5a;
}

.ai-slider-header .desc {
  max-width: 600px;
  margin: 0 auto;
  color: #424750;
  font-size: 1.1rem;
  line-height: 1.6;
}

.ai-slider-container {
  position: relative;
  padding: 0 3rem;
}

.aiSwiper {
  padding: 2rem 0;
}

.ai-slide {
  height: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-slide__inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 44, 90, 0.08);
  border: 1px solid #ebeef1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ai-slide__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #002c5a, #385da1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-slide:hover .ai-slide__inner {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 44, 90, 0.15);
  border-color: rgba(56, 93, 161, 0.3);
}

.ai-slide:hover .ai-slide__inner::before {
  opacity: 1;
}

.ai-slide__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(56, 93, 161, 0.1) 0%,
    rgba(0, 44, 90, 0.05) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #385da1;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.ai-slide:hover .ai-slide__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #385da1 0%, #002c5a 100%);
  color: white;
}

.ai-slide__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #002c5a;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.ai-slide__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #424750;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.ai-slide__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.ai-tag {
  background: rgba(56, 93, 161, 0.08);
  color: #385da1;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(56, 93, 161, 0.2);
  transition: all 0.3s ease;
}

.ai-slide:hover .ai-tag {
  background: rgba(56, 93, 161, 0.15);
  border-color: rgba(56, 93, 161, 0.4);
}

.ai-swiper-btn-next,
.ai-swiper-btn-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 44, 90, 0.15);
  color: #002c5a;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.ai-swiper-btn-next::after,
.ai-swiper-btn-prev::after {
  font-size: 1rem;
  font-weight: 900;
}

.ai-swiper-btn-next:hover,
.ai-swiper-btn-prev:hover {
  background: #002c5a;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.ai-swiper-btn-next {
  right: -1rem;
}

.ai-swiper-btn-prev {
  left: -1rem;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(56, 93, 161, 0.3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #385da1;
  transform: scale(1.2);
}

/* Responsive AI Slider */
@media (max-width: 768px) {
  .ai-slider-section {
    padding: 4rem 0;
  }

  .ai-slider-header .title {
    font-size: 2.2rem;
  }

  .ai-slider-container {
    padding: 0 1rem;
  }

  .ai-swiper-btn-next,
  .ai-swiper-btn-prev {
    display: none;
  }

  .ai-slide__inner {
    padding: 2rem 1.5rem;
  }

  .ai-slide__title {
    font-size: 1.3rem;
  }

  .ai-slide__desc {
    font-size: 0.9rem;
  }
}

/* ========================= EXPERT SLIDE CAROUSEL ========================= */
.expert {
  background: #ffffff;
}

.expert__title {
  text-align: center;
  padding: 124px 0 12px;
}

.expert__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-align: center;
  color: #000;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.expert__slider-wrap {
  position: relative;
  padding: 0 0 48px;
  overflow: hidden;
  background: #ffffff;
}

.expert__slider-wrap .swiper {
  padding-bottom: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
}

.expert__slider-wrap .swiper-wrapper {
  background: transparent;
  border-radius: 16px;
  padding: 0;
  display: flex;
  align-items: stretch;
}

.expert__slider-wrap .swiper-slide {
  height: auto;
  display: flex;
  align-self: stretch;
  justify-content: stretch;
  width: 100%;
}

/* Individual slide card */
.expert-slide {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #d4dce8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  width: 100%;
}

/* Left: avatar + identity block */
.expert-slide__left {
  width: 280px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background: #ffffff;
  border-right: 1px solid #d4dce8;
  gap: 20px;
}

.expert-slide__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: 0 4px 16px
    color-mix(in srgb, var(--primary-color) 20%, transparent);
  flex-shrink: 0;
}

.expert-slide__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-slide__info {
  text-align: center;
}

.expert-slide__name {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.expert-slide__role {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 0 0 4px 0;
}

.expert-slide__org {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #888888;
  margin: 0;
}

/* Right: heading + description + checklist */
.expert-slide__right {
  flex: 1;
  padding: 40px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-slide__heading {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1c1e;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.expert-slide__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.expert-slide__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expert-slide__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
}

.expert-slide__checklist li i {
  color: var(--primary-color);
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* Responsive for expert slide */
@media (max-width: 768px) {
  .expert-slide {
    flex-direction: column;
  }

  .expert-slide__left {
    width: 100%;
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid #d4dce8;
    padding: 32px 24px 24px;
    flex-direction: row;
    gap: 16px;
  }

  .expert-slide__avatar {
    width: 80px;
    height: 80px;
  }

  .expert-slide__info {
    text-align: left;
  }

  .expert-slide__right {
    padding: 24px;
  }

  .expert-slide__heading {
    font-size: 1.7rem;
  }

  .expert-slide__desc {
    font-size: 1.4rem;
  }

  .expert-slide__checklist li {
    font-size: 1.3rem;
  }
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
  .customer-reviews__slider {
    padding-left: 56px;
    padding-right: 56px;
  }

  .customer-reviews__btn-prev {
    left: 0;
  }

  .customer-reviews__btn-next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .training-program__title,
  .customer-reviews__title,
  .consultation__title {
    font-size: 3.2rem;
  }

  .training-program__accordion-header {
    padding: 18px 20px;
    gap: 14px;
  }

  .training-program__accordion-content {
    padding: 0 20px 20px;
  }

  .consultation__content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .customer-reviews__slider {
    padding-left: 0;
    padding-right: 0;
  }

  .consultation__form-card {
    padding: 24px;
  }

  .customer-reviews__btn-prev,
  .customer-reviews__btn-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .training-program__tabs {
    gap: 8px;
  }

  .training-program__tab {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ══════════════════════════════════════════════════════════════
   MATERIAL DESIGN 3 FORM STYLES
   ══════════════════════════════════════════════════════════════ */
.form-control:focus,
.form-select:focus {
  background: #e5e8eb !important;
  border-bottom-color: color-mix(
    in srgb,
    var(--primary-color) 70%,
    black
  ) !important;
  box-shadow: none !important;
  outline: none !important;
}

.form-control::placeholder,
.form-select::placeholder {
  color: #737781 !important;
}

/* Material Design 3 Color Utilities */
.text-primary-md3 {
  color: color-mix(in srgb, var(--primary-color) 70%, black);
}

.text-secondary-md3 {
  color: color-mix(in srgb, var(--primary-color) 40%, black);
}

.text-on-surface-md3 {
  color: #424750;
}

.bg-surface-md3 {
  background-color: #f7fafd;
}

.bg-surface-container-md3 {
  background-color: #ebeef1;
}

.bg-primary-md3 {
  background-color: color-mix(in srgb, var(--primary-color) 70%, black);
}

.bg-secondary-md3 {
  background-color: color-mix(in srgb, var(--primary-color) 40%, black);
}

/* Material Design 3 Shadow Utilities */
.shadow-md3 {
  box-shadow:
    0 1px 3px rgba(0, 44, 90, 0.08),
    0 1px 2px rgba(0, 44, 90, 0.06);
}

.shadow-md3-hover:hover {
  box-shadow:
    0 20px 40px rgba(0, 44, 90, 0.12),
    0 8px 16px rgba(0, 44, 90, 0.08);
}

/* Smooth transitions */
.transition-md3 {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================= Services Page Redesign ========================= */

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — svc-* classes
   Palette: primary (#ea740c), secondary (#1e3a5f), accent (#10b981)
   ═══════════════════════════════════════════════════════════ */

/* ── Keyframe Animations ────────────────────────────────── */
@keyframes svc-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes svc-scale-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes svc-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes svc-pulse-ring {
  0% {
    box-shadow: 0 0 0 0
      color-mix(in srgb, var(--primary-color) 25%, transparent);
  }

  70% {
    box-shadow: 0 0 0 12px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes svc-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes svc-count-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes svc-slide-right {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes svc-gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.svc-breadcrumb-bar {
  padding: 1.6rem 0 1.2rem;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
}

.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.svc-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.svc-breadcrumb a:hover {
  color: var(--primary-color);
}

.svc-breadcrumb__sep {
  color: var(--border-default);
}

/* ── Services Grid ──────────────────────────────────────── */
.svc-services {
  padding: 3.2rem 0 8rem;
  background: var(--bg-subtle);
  position: relative;
}

.svc-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-subtle) 100%);
  pointer-events: none;
}

.svc-services > .container-lg {
  position: relative;
  z-index: 1;
}

.svc-services__grid {
  align-items: stretch;
}

/* ── Service Card ────────────────────────────────────────── */
.svc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
  animation: svc-fade-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.svc-card:nth-child(1) {
  animation-delay: 0s;
}

.svc-card:nth-child(2) {
  animation-delay: 0.1s;
}

.svc-card:nth-child(3) {
  animation-delay: 0.2s;
}

.svc-card:nth-child(4) {
  animation-delay: 0.3s;
}

.svc-card:nth-child(5) {
  animation-delay: 0.4s;
}

.svc-card:nth-child(6) {
  animation-delay: 0.5s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--primary-color) 25%, transparent);
}

.svc-card:hover .svc-card__img {
  transform: scale(1.04);
}

.svc-card:hover .svc-card__icon {
  background: var(--gradient-primary);
  transform: scale(1.08);
}

.svc-card:hover .svc-card__icon img {
  filter: brightness(0) invert(1);
}

.svc-card:hover .svc-card__icon i {
  color: #fff;
}

.svc-card:hover .svc-card__title {
  color: var(--primary-color);
}

.svc-card:hover .svc-card__link i {
  transform: translateX(0.4rem);
  color: var(--primary-color);
}

/* ── Card Image ─────────────────────────────────────────── */
.svc-card__media {
  padding: 1.2rem 1.2rem 0;
  overflow: hidden;
}

.svc-card__img {
  display: block;
  width: 100%;
  height: 21rem;
  object-fit: cover;
  border-radius: 1rem;
  background: var(--bg-muted);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Card Body ───────────────────────────────────────────── */
.svc-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem;
}

.svc-card__header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.svc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  flex-shrink: 0;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease;
}

.svc-card__icon img {
  width: 2.2rem;
  height: 2.2rem;
  transition: filter 0.35s ease;
}

.svc-card__icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: color 0.35s ease;
}

.svc-card__title {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.svc-card__desc {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.55rem;
  line-height: 1.8;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.svc-card__notes {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.svc-card__notes li {
  position: relative;
  padding-left: 1.8rem;
  font-family: Poppins, sans-serif;
  font-size: 1.45rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.svc-card__notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--primary-color);
}

.svc-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.svc-card__link,
.svc-card__demo {
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.svc-card__link {
  color: var(--secondary-color);
  transition: color 0.25s ease;
}

.svc-card__link:hover {
  color: var(--primary-color);
}

.svc-card__link i {
  margin-left: 0.4rem;
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.25s ease;
}

.svc-card__link--muted {
  color: var(--text-muted);
  pointer-events: none;
}

.svc-card__demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.2rem;
  height: 3.8rem;
  padding: 0 1.6rem;
  border: 1.5px solid color-mix(in srgb, var(--primary-color) 20%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 6%, transparent);
  color: var(--primary-color);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.svc-card__demo:hover {
  border-color: var(--primary-color);
  background: color-mix(in srgb, var(--primary-color) 12%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px
    color-mix(in srgb, var(--primary-color) 18%, transparent);
}

/* ── Section Headings ────────────────────────────────────── */
.svc-section-head {
  margin-bottom: 4rem;
}

.svc-section-title {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: clamp(3rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

.svc-section-title--center {
  text-align: center;
}

.svc-section-desc {
  max-width: 68rem;
  margin: 1.6rem auto 0;
  font-family: Poppins, sans-serif;
  font-size: 1.7rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.svc-section-desc--center {
  text-align: center;
}

.svc-section-line {
  display: inline-block;
  width: 6.4rem;
  height: 0.4rem;
  margin-top: 1.6rem;
  border-radius: 999px;
  background: var(--gradient-primary);
  background-size: 200% auto;
  animation: svc-gradient-shift 3s ease infinite;
}

/* ── Software Section ────────────────────────────────────── */
.svc-software {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, #fff 100%);
  position: relative;
}

.svc-software-card {
  height: 100%;
  padding: 3.2rem 2.4rem;
  border-radius: 1.8rem;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.svc-software-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-software-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.svc-software-card:hover::before {
  transform: scaleX(1);
}

.svc-software-card:hover .svc-software-card__icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.svc-software-card:hover .svc-software-card__icon img {
  filter: brightness(0) invert(1);
}

.svc-software-card:hover .svc-software-card__icon i {
  color: #fff;
}

.svc-software-card:hover .svc-software-card__title {
  color: var(--primary-color);
}

.svc-software-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 2rem;
  border-radius: 1.4rem;
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease;
}

.svc-software-card__icon img {
  width: 2.6rem;
  height: 2.6rem;
  transition: filter 0.35s ease;
}

.svc-software-card__icon i {
  font-size: 2.4rem;
  color: var(--primary-color);
  transition: color 0.35s ease;
}

.svc-software-card__title {
  margin: 0 0 1rem;
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.svc-software-card__desc {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.55rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── Process Section ─────────────────────────────────────── */
.svc-process {
  padding: 8rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-subtle) 100%);
  position: relative;
}

.svc-process__head {
  max-width: 54rem;
  margin: 0 auto 4.8rem;
}

.svc-process__desc {
  margin: 1.2rem 0 0;
  font-family: Poppins, sans-serif;
  font-size: 1.7rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.svc-process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.svc-process__line {
  position: absolute;
  left: 16.66%;
  right: 16.66%;
  top: 4.7rem;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--primary-color) 30%, transparent),
    var(--primary-color),
    color-mix(in srgb, var(--primary-color) 30%, transparent),
    transparent
  );
}

.svc-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: svc-fade-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.svc-process-step:nth-child(1) {
  animation-delay: 0.15s;
}

.svc-process-step:nth-child(2) {
  animation-delay: 0.35s;
}

.svc-process-step:nth-child(3) {
  animation-delay: 0.55s;
}

.svc-process-step__badge {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(1.8rem);
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2rem;
}

.svc-process-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 7.2rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 12px 32px
    color-mix(in srgb, var(--primary-color) 18%, transparent);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.svc-process-step:hover .svc-process-step__icon {
  transform: scale(1.1);
  box-shadow: 0 16px 40px
    color-mix(in srgb, var(--primary-color) 24%, transparent);
  animation: svc-pulse-ring 1.5s ease-out;
}

.svc-process-step__icon img {
  filter: brightness(0) invert(1);
}

.svc-process-step__icon i {
  font-size: 2.6rem;
  color: #fff;
}

.svc-process-step__title {
  margin: 0 0 1rem;
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.svc-process-step__text {
  margin: 0 auto;
  max-width: 29rem;
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── Stats Section ──────────────────────────────────────── */
.svc-stats {
  padding: 6rem 0 7rem;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.svc-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-color) 10%, transparent) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.svc-stats > .container-lg {
  position: relative;
  z-index: 1;
}

.svc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.svc-stat {
  text-align: center;
  animation: svc-fade-up 0.5s ease both;
}

.svc-stat:nth-child(1) {
  animation-delay: 0.1s;
}

.svc-stat:nth-child(2) {
  animation-delay: 0.2s;
}

.svc-stat:nth-child(3) {
  animation-delay: 0.3s;
}

.svc-stat:nth-child(4) {
  animation-delay: 0.4s;
}

.svc-stat__ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.6rem;
  height: 7.6rem;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      var(--secondary-color) 56%,
      transparent 57%
    ),
    conic-gradient(
      var(--primary-color) 0deg,
      var(--primary-light) 290deg,
      color-mix(in srgb, var(--primary-color) 20%, var(--secondary-color))
        290deg 360deg
    );
  box-shadow: 0 0 24px color-mix(in srgb, var(--primary-color) 20%, transparent);
  transition: transform 0.35s ease;
}

.svc-stat:hover .svc-stat__ring {
  transform: scale(1.06);
}

.svc-stat__ring span {
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.svc-stat__number {
  display: block;
  margin-bottom: 0.8rem;
  font-family: Inter, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.svc-stat__label {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.4rem;
  color: color-mix(in srgb, #fff 60%, var(--primary-color));
  letter-spacing: 0.02em;
}

/* ── Why Choose Us Section ───────────────────────────────── */
.svc-why {
  padding: 8rem 0;
  background: #fff;
}

.svc-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  margin-top: 4rem;
}

.svc-why-card {
  padding: 3.2rem 2.8rem;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
  animation: svc-fade-up 0.5s ease both;
  position: relative;
  overflow: hidden;
}

.svc-why-card:nth-child(1) {
  animation-delay: 0s;
}

.svc-why-card:nth-child(2) {
  animation-delay: 0.12s;
}

.svc-why-card:nth-child(3) {
  animation-delay: 0.24s;
}

.svc-why-card:nth-child(4) {
  animation-delay: 0.08s;
}

.svc-why-card:nth-child(5) {
  animation-delay: 0.2s;
}

.svc-why-card:nth-child(6) {
  animation-delay: 0.32s;
}

.svc-why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--primary-color) 22%, transparent);
}

.svc-why-card:hover .svc-why-card__icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.svc-why-card:hover .svc-why-card__icon i {
  color: #fff;
}

.svc-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.4rem;
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  margin-bottom: 2rem;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease;
}

.svc-why-card__icon i {
  font-size: 2.4rem;
  color: var(--primary-color);
  transition: color 0.35s ease;
}

.svc-why-card__title {
  margin: 0 0 0.8rem;
  font-family: Inter, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.svc-why-card:hover .svc-why-card__title {
  color: var(--primary-color);
}

.svc-why-card__desc {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.45rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ── Tech Stack Section ──────────────────────────────────── */
.svc-tech {
  padding: 6rem 0;
  background: var(--bg-subtle);
}

.svc-tech__grid {
  display: none;
}

.svc-tech__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 2.4rem 2rem;
  width: 14rem;
  border-radius: 1.6rem;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.svc-tech__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary-color) 25%, transparent);
}

.svc-tech__item:hover .svc-tech__icon {
  background: var(--gradient-primary);
}

.svc-tech__item:hover .svc-tech__icon i {
  color: #fff;
  transform: scale(1.1);
}

.svc-tech__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1.2rem;
  background: color-mix(in srgb, var(--primary-color) 8%, var(--bg-subtle));
  transition: background 0.3s ease;
}

.svc-tech__icon i {
  font-size: 2.2rem;
  color: var(--primary-color);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.svc-tech__name {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

/* ── Tech Marquee (2-row JS-driven infinite scroll) ──────── */
.svc-tech__track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 0.8rem 0;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.svc-tech__track-wrapper--reverse {
  margin-top: 0.4rem;
}

.svc-tech__track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
}

.svc-tech__track-wrapper:hover .svc-tech__track,
.svc-tech__track-wrapper:focus-within .svc-tech__track {
  /* pause handled by JS */
}

.svc-tech__slide {
  flex-shrink: 0;
  padding: 0 0.8rem;
}

/* ── Scroll-reveal base ──────────────────────────────────── */
[data-animate] {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    visibility: visible !important;
    animation: none !important;
  }
}

/* ── Icon hover micro-animation ───────────────────────── */
.svc-why-card__icon i.animate__heartBeat,
.svc-process-step__icon i.animate__heartBeat,
.svc-tech__icon i.animate__heartBeat,
.about__card-icon-img.animate__heartBeat,
.news-hero__showcase-icon i.animate__heartBeat,
.news-solutions__card-icon i.animate__heartBeat,
.news-categories__card-icon i.animate__heartBeat,
.news-detail-toc__icon i.animate__heartBeat {
  animation-duration: 0.8s;
}

/* ── CTA Section ─────────────────────────────────────────── */
.svc-cta {
  padding: 4rem 0 7rem;
  background: #fff;
}

.svc-cta__panel {
  max-width: 98rem;
  margin: 0 auto;
  padding: 6.6rem 3rem;
  border-radius: 3.2rem;
  background: var(--gradient-accent);
  background-size: 200% auto;
  box-shadow: var(--shadow-xl);
  animation: svc-gradient-shift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

.svc-cta__panel::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, #fff 8%, transparent) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.svc-cta__panel > * {
  position: relative;
  z-index: 1;
}

.svc-cta__title {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: clamp(3.6rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}

.svc-cta__desc {
  max-width: 58rem;
  margin: 1.8rem auto 3rem;
  font-family: Poppins, sans-serif;
  font-size: 1.55rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.svc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 16rem;
  height: 4.6rem;
  padding: 0 2.6rem;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-color);
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.svc-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── Contact Section ─────────────────────────────────────── */
.svc-contact {
  padding: 2rem 0 8rem;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, #fff 100%);
}

.svc-contact__shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 4rem;
  align-items: start;
}

.svc-contact__intro {
  padding-top: 1rem;
}

.svc-contact__eyebrow {
  margin: 0 0 1.2rem;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.svc-contact__title {
  margin: 0 0 1.8rem;
  font-family: Inter, sans-serif;
  font-size: clamp(3rem, 4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
}

.svc-contact__lead {
  margin: 0 0 2rem;
  font-family: Poppins, sans-serif;
  font-size: 1.65rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.svc-contact__alt {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.svc-contact__email {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.svc-contact__form-wrap {
  padding: 3rem;
  border: 1px solid var(--border-light);
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.svc-contact__label {
  display: block;
  margin-bottom: 0.7rem;
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.svc-contact__input {
  width: 100%;
  padding: 1.5rem 1.6rem;
  border: 1.5px solid var(--border-default);
  border-radius: 1.2rem;
  background: var(--bg-subtle);
  color: var(--text-primary);
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.svc-contact__input::placeholder {
  color: var(--text-muted);
}

.svc-contact__input:focus,
.svc-contact__select:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.3rem
    color-mix(in srgb, var(--primary-color) 10%, transparent);
}

.svc-contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  background-size: 1.4rem;
}

.svc-contact__textarea {
  min-height: 13rem;
  resize: vertical;
}

.svc-contact__footer {
  margin-top: 2.6rem;
}

.svc-contact__submit {
  min-width: 18rem;
  height: 4.8rem;
  padding: 0 2.8rem;
  border: none;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 24px
    color-mix(in srgb, var(--primary-color) 30%, transparent);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-size 0.25s ease;
  cursor: pointer;
}

.svc-contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px
    color-mix(in srgb, var(--primary-color) 36%, transparent);
}

.svc-contact__submit:active {
  transform: translateY(0);
}

.svc-contact__info-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 1.8rem;
  background: linear-gradient(135deg, #fff 0%, var(--bg-subtle) 100%);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.svc-contact__info-card:hover {
  border-color: color-mix(in srgb, var(--primary-color) 20%, transparent);
  box-shadow: var(--shadow-sm);
}

.svc-contact__info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.6rem;
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  color: var(--primary-color);
  font-size: 2rem;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.svc-contact__info-card:hover .svc-contact__info-icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: scale(1.05);
}

.svc-contact__info-label {
  margin: 0 0 0.4rem;
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.svc-contact__info-value {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ── Responsive: Services ────────────────────────────────── */
@media (max-width: 1199px) {
  .svc-process__timeline,
  .svc-stats__grid {
    gap: 2.4rem;
  }

  .svc-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .svc-process__timeline,
  .svc-stats__grid,
  .svc-contact__shell {
    grid-template-columns: 1fr;
  }

  .svc-process__line {
    display: none;
  }

  .svc-contact__intro {
    padding-top: 0;
  }

  .svc-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .svc-services,
  .svc-software,
  .svc-process,
  .svc-stats,
  .svc-contact,
  .svc-why,
  .svc-tech {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .svc-cta {
    padding: 2rem 0 5rem;
  }

  .svc-card__img {
    height: 20rem;
  }

  .svc-section-desc,
  .svc-process__desc,
  .svc-contact__lead {
    font-size: 1.55rem;
  }

  .svc-contact__form-wrap,
  .svc-cta__panel {
    padding: 2.4rem;
  }

  .svc-why__grid {
    grid-template-columns: 1fr;
  }

  .svc-tech__grid {
    gap: 1.2rem;
  }

  .svc-tech__item {
    width: 11rem;
    padding: 1.8rem 1.2rem;
  }
}

@media (max-width: 575px) {
  .svc-card {
    border-radius: 1.8rem;
  }

  .svc-card__media {
    padding: 1.4rem 1.4rem 0;
  }

  .svc-card__body {
    padding: 1.6rem 1.4rem 1.8rem;
  }

  .svc-card__title,
  .svc-process-step__title {
    font-size: 1.8rem;
  }

  .svc-card__desc,
  .svc-software-card__desc,
  .svc-process-step__text,
  .svc-contact__input {
    font-size: 1.4rem;
  }

  .svc-card__actions {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .svc-cta__title,
  .svc-contact__title,
  .svc-section-title {
    font-size: 2.8rem;
  }

  .svc-stat__number {
    font-size: 2.6rem;
  }

  .svc-contact__info-card {
    padding: 1.6rem;
  }

  .svc-contact__info-value {
    font-size: 1.6rem;
  }
}

/* ── YouTube Modal ─────────────────────────────────────────── */
.svc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.svc-modal--open {
  opacity: 1;
  visibility: visible;
}

.svc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 34, 0.78);
}

.svc-modal__dialog {
  position: relative;
  width: min(92vw, 960px);
  background: #000;
  border-radius: 1.8rem;
  overflow: hidden;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.svc-modal--open .svc-modal__dialog {
  transform: translateY(0);
}

.svc-modal__close {
  position: absolute;
  top: -4.2rem;
  right: 0;
  width: 3.6rem;
  height: 3.6rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
}

.svc-modal__video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.svc-modal__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   NEWS LISTING PAGE — nl-* classes
   Palette: #0c1117 (dark), #016fb9 (accent), #f5f7fa (bg)
   Fonts: Inter (UI) + Source Serif 4 (prose)
   ═══════════════════════════════════════════════════════════════ */

.nl-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #0c1117 0%, #0d2240 50%, #012a5e 100%);
}

.nl-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 30%,
      rgba(1, 111, 185, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 20% 80%,
      rgba(1, 111, 185, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.nl-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 111, 185, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 111, 185, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.nl-hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 2.4rem 5rem;
}

.nl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
}

.nl-breadcrumb-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.nl-breadcrumb-link:hover {
  color: #5cb8ff;
}

.nl-breadcrumb-link i {
  font-size: 1.1rem;
}

.nl-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
}

.nl-breadcrumb-current {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.nl-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nl-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 640px;
  font-weight: 400;
}

/* ── TOOLBAR (Categories + Search) ─────────────────────────── */
.nl-toolbar {
  background: #ffffff;
  border-bottom: 1px solid #e8edf4;
  position: sticky;
  top: var(--header-height, 74px);
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nl-toolbar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nl-toolbar-inner::-webkit-scrollbar {
  display: none;
}

.nl-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nl-cat-btn {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #5a6d82;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 7px 18px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nl-cat-btn i {
  font-size: 1.1rem;
}

.nl-cat-btn:hover {
  color: #016fb9;
  background: rgba(1, 111, 185, 0.06);
  border-color: rgba(1, 111, 185, 0.15);
}

.nl-cat-btn--active {
  color: #ffffff;
  background: #016fb9;
  border-color: #016fb9;
  font-weight: 600;
}

.nl-cat-btn--active:hover {
  color: #ffffff;
  background: #015a99;
  border-color: #015a99;
}

.nl-search-wrap {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}

.nl-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b9cb5;
  font-size: 1.3rem;
  pointer-events: none;
  transition: color 0.2s;
}

.nl-search-input {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #1e2836;
  background: #f5f7fa;
  border: 1.5px solid #dde8f3;
  border-radius: 100px;
  padding: 9px 18px 9px 40px;
  width: 260px;
  outline: none;
  transition: all 0.25s ease;
}

.nl-search-input::placeholder {
  color: #8b9cb5;
}

.nl-search-input:focus {
  border-color: #016fb9;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(1, 111, 185, 0.1);
  width: 320px;
}

.nl-search-input:focus + .nl-search-icon,
.nl-search-input:focus ~ .nl-search-icon {
  color: #016fb9;
}

/* ── FEATURED POST ──────────────────────────────────────────── */
.nl-featured {
  padding: 5rem 0 0;
}

.nl-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nl-featured-card:hover {
  border-color: #b8d4f0;
  box-shadow: 0 12px 40px rgba(1, 111, 185, 0.12);
  transform: translateY(-3px);
}

.nl-featured-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.nl-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.nl-featured-card:hover .nl-featured-img {
  transform: scale(1.04);
}

.nl-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(12, 17, 23, 0.25) 100%
  );
  pointer-events: none;
}

.nl-featured-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: #016fb9;
  padding: 4px 12px;
  z-index: 2;
}

.nl-featured-body {
  padding: 4rem 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nl-featured-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.nl-featured-date,
.nl-featured-read {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #6b809b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nl-featured-date i,
.nl-featured-read i {
  color: #016fb9;
  font-size: 1.1rem;
}

.nl-featured-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: #0c1117;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  transition: color 0.2s;
}

.nl-featured-card:hover .nl-featured-title {
  color: #016fb9;
}

.nl-featured-desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #4a5d73;
  margin-bottom: 2.4rem;
}

.nl-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #016fb9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: gap 0.22s ease;
}

.nl-featured-card:hover .nl-featured-cta {
  gap: 14px;
}

.nl-featured-cta i {
  font-size: 1.1rem;
  transition: transform 0.22s;
}

.nl-featured-card:hover .nl-featured-cta i {
  transform: translateX(4px);
}

/* ── POST GRID ──────────────────────────────────────────────── */
.nl-grid-section {
  padding: 5rem 0 7rem;
  background: #f5f7fa;
}

.nl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}

.nl-card {
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.28s ease;
  position: relative;
}

.nl-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #016fb9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nl-card:hover {
  border-color: #b8d4f0;
  box-shadow: 0 8px 32px rgba(1, 111, 185, 0.1);
  transform: translateY(-3px);
}

.nl-card:hover::after {
  transform: scaleX(1);
}

.nl-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.nl-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e8edf4;
}

.nl-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.nl-card:hover .nl-card-img {
  transform: scale(1.05);
}

.nl-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  transition: background 0.3s;
}

.nl-card:hover .nl-card-overlay {
  background: rgba(0, 0, 0, 0.06);
}

.nl-card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #016fb9;
  padding: 3px 9px;
  z-index: 1;
}

.nl-card-body {
  padding: 2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nl-card-meta {
  margin-bottom: 1rem;
}

.nl-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: #8b9cb5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nl-card-date i {
  color: #016fb9;
  font-size: 1rem;
}

.nl-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.38;
  color: #0c1117;
  margin-bottom: 1rem;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nl-card:hover .nl-card-title {
  color: #016fb9;
}

.nl-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #6b809b;
  line-height: 1.55;
  margin-bottom: 1.6rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nl-card-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #016fb9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: auto;
  transition: gap 0.22s ease;
}

.nl-card-read i {
  font-size: 1rem;
  transition: transform 0.22s;
}

.nl-card:hover .nl-card-read {
  gap: 10px;
}

.nl-card:hover .nl-card-read i {
  transform: translateX(4px);
}

/* ── EMPTY STATE ─────────────────────────────────────────────── */
.nl-empty {
  text-align: center;
  padding: 8rem 2rem;
}

.nl-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2.4rem;
  background: #e8edf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #8b9cb5;
}

.nl-empty-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e2836;
  margin-bottom: 1rem;
}

.nl-empty-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: #6b809b;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

/* ── PAGINATION ──────────────────────────────────────────────── */
.nl-pagination {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

.nl-pagination-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nl-page-btn {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #4a5d73;
  background: #ffffff;
  border: 1px solid #dde8f3;
  border-radius: 6px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nl-page-btn:hover {
  color: #016fb9;
  border-color: #016fb9;
  background: rgba(1, 111, 185, 0.04);
}

.nl-page-btn--active {
  color: #ffffff;
  background: #016fb9;
  border-color: #016fb9;
  font-weight: 700;
}

.nl-page-btn--active:hover {
  color: #ffffff;
  background: #015a99;
}

.nl-page-btn--prev,
.nl-page-btn--next {
  padding: 0 14px;
  gap: 4px;
}

.nl-page-dots {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #8b9cb5;
  padding: 0 4px;
}

/* ── CTA SECTION ─────────────────────────────────────────────── */
.nl-cta {
  padding: 7rem 0;
  background: #ffffff;
}

.nl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  background: linear-gradient(135deg, #0c1117 0%, #0d2240 50%, #012a5e 100%);
  border-radius: 12px;
  padding: 5rem 5rem;
  position: relative;
  overflow: hidden;
}

.nl-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 111, 185, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 111, 185, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.nl-cta-inner::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(1, 111, 185, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.nl-cta-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.nl-cta-icon {
  width: 48px;
  height: 48px;
  background: rgba(1, 111, 185, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5cb8ff;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.nl-cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.nl-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.nl-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex-shrink: 0;
}

.nl-cta-btn {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.nl-cta-btn--primary {
  background: #016fb9;
  color: #ffffff;
  border: 2px solid #016fb9;
}

.nl-cta-btn--primary:hover {
  background: #015a99;
  border-color: #015a99;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 111, 185, 0.3);
}

.nl-cta-btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.nl-cta-btn--outline:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nl-featured-card {
    grid-template-columns: 1fr;
  }

  .nl-featured-img-wrap {
    min-height: 280px;
  }

  .nl-featured-body {
    padding: 3rem;
  }
}

@media (max-width: 991px) {
  .nl-hero-content {
    padding: 4rem 2rem 3.5rem;
  }

  .nl-featured-body {
    padding: 2.4rem;
  }

  .nl-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 4rem 3rem;
  }

  .nl-cta-content {
    max-width: 100%;
  }

  .nl-cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nl-hero {
    min-height: 240px;
  }

  .nl-hero-title {
    font-size: clamp(2.4rem, 6vw, 3.2rem);
  }

  .nl-hero-subtitle {
    font-size: 1.4rem;
  }

  .nl-toolbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.2rem 0;
  }

  .nl-categories {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nl-search-wrap {
    margin-left: 0;
  }

  .nl-search-input {
    width: 100%;
  }

  .nl-search-input:focus {
    width: 100%;
  }

  .nl-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nl-featured-img-wrap {
    min-height: 220px;
  }

  .nl-featured-body {
    padding: 2rem;
  }

  .nl-featured-title {
    font-size: 2rem;
  }

  .nl-featured-desc {
    font-size: 1.4rem;
  }

  .nl-cta-inner {
    padding: 3rem 2rem;
  }

  .nl-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .nl-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .nl-hero-content {
    padding: 3rem 1.6rem 2.5rem;
  }

  .nl-breadcrumb {
    font-size: 1.2rem;
  }

  .nl-cat-btn {
    font-size: 1.2rem;
    padding: 6px 14px;
  }

  .nl-card-body {
    padding: 1.6rem;
  }

  .nl-card-title {
    font-size: 1.5rem;
  }

  .nl-card-desc {
    font-size: 1.2rem;
  }

  .nl-page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CHAT WIDGET & FLOATING BUTTON — Responsive
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .floating-widget {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
    font-size: 19px;
  }

  .floating-social {
    width: calc(100vw - 32px);
    right: 0;
    bottom: 68px;
  }

  .chat-panel {
    width: calc(100vw - 32px);
    height: 80vh;
    max-height: 560px;
    bottom: 68px;
    right: 0;
    border-radius: 14px;
  }

  .floating-topics-menu {
    width: calc(100vw - 72px);
    right: 56px;
    bottom: 68px;
  }

  .chat-header-main {
    padding: 14px 14px 12px;
    gap: 10px;
  }

  .chat-header-avatar {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 10px;
  }

  .chat-header-info strong {
    font-size: 1.35rem;
  }

  .chat-form-container {
    padding: 16px 14px 20px;
  }

  .chat-form-intro {
    padding: 14px;
  }

  .chat-form-card {
    padding: 14px;
  }

  .chat-footer {
    padding: 10px 12px;
  }

  .chat-footer input {
    padding: 10px 14px;
    font-size: 1.3rem;
  }

  .chat-footer button#btnSendChatMessage {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .chat-panel {
    width: calc(100vw - 32px);
    max-height: 600px;
  }

  .floating-social {
    width: 280px;
  }
}
