body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
}

img {
  width: 100%;
  display: block;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  --hero-primary: #021f61;
  --hero-primary-dark: #011744;
  --hero-yellow: #fcc101;
  --hero-white: #ffffff;
  --hero-text: #eef3fb;
  --hero-border: rgba(255, 255, 255, 0.24);
  --hero-radius: 0 0 8px 8px;
  --hero-transition: 0.35s ease;
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: var(--hero-primary);
}

/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.hero__background {
  position: absolute;

  inset: 0;

  z-index: -3;

  background-image: url("../images/background/civil-lab-hero.png");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  transform: scale(1.01);

  transition: transform 1.2s ease;
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.hero__overlay {
  position: absolute;

  inset: 0;

  z-index: -2;

  background: linear-gradient(
    90deg,
    rgba(1, 24, 68, 0.97) 0%,
    rgba(2, 31, 97, 0.92) 26%,
    rgba(2, 31, 97, 0.66) 42%,
    rgba(2, 31, 97, 0.08) 72%,
    rgba(2, 31, 97, 0) 100%
  );
}

/* =========================================================
   CONTAINER
========================================================= */

.hero__container {
  width: 100%;
  max-width: 1600px;

  margin: 0 auto;

  padding: 58px 58px 28px;
}

/* =========================================================
   MAIN GRID
========================================================= */

.hero__layout {
  position: relative;

  min-height: 660px;

  display: grid;

  grid-template-columns:
    minmax(460px, 0.72fr)
    minmax(0, 1.28fr);

  grid-template-rows: 1fr auto;

  align-items: center;

  gap: 25px;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero__content {
  position: relative;

  z-index: 2;

  align-self: center;
}

.hero__content-inner {
  width: min(100%, 620px);
}

/* =========================================================
   TITLE
========================================================= */

.hero__title {
  margin: 0;

  color: var(--hero-white);

  font-size: clamp(42px, 4.2vw, 72px);

  font-weight: 700;

  line-height: 1.06;

  letter-spacing: -1.8px;
}

.hero__title-highlight {
  color: var(--hero-yellow);
}

/* =========================================================
   ACCENT LINE
========================================================= */

.hero__accent {
  width: 58px;
  height: 3px;

  margin-top: 25px;
  margin-bottom: 20px;

  background: var(--hero-yellow);

  border-radius: 20px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.hero__description {
  width: min(100%, 570px);

  margin: 0;

  color: var(--hero-text);

  font-size: clamp(15px, 1.05vw, 18px);

  font-weight: 400;

  line-height: 1.65;
}

/* =========================================================
   CTA ACTIONS
========================================================= */

.hero__actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 27px;
}

/* =========================================================
   CTA BUTTON
========================================================= */

.hero__button {
  min-width: 174px;

  min-height: 54px;

  padding: 12px 20px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 25px;

  border-radius: 8px;

  font-size: 15px;

  font-weight: 600;

  line-height: 1;

  transition:
    transform var(--hero-transition),
    background var(--hero-transition),
    border-color var(--hero-transition),
    box-shadow var(--hero-transition);
}

.hero__button i {
  display: inline-flex;

  font-size: 20px;

  transition: transform var(--hero-transition);
}

/* =========================================================
   PRIMARY BUTTON
========================================================= */

.hero__button--primary {
  color: var(--hero-primary);

  background: var(--hero-yellow);

  border: 1px solid var(--hero-yellow);

  box-shadow: 0 8px 25px rgba(252, 193, 1, 0.16);
}

.hero__button--primary:hover {
  color: var(--hero-primary);

  background: #ffd02d;

  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(252, 193, 1, 0.28);
}

.hero__button--primary:hover i {
  transform: translateX(5px);
}

/* =========================================================
   SECONDARY BUTTON
========================================================= */

.hero__button--secondary {
  color: var(--hero-white);

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero__button--secondary:hover {
  color: var(--hero-white);

  background: rgba(255, 255, 255, 0.12);

  border-color: var(--hero-white);

  transform: translateY(-3px);
}

.hero__button--secondary:hover i {
  transform: translateX(5px);
}

/* =========================================================
   STATISTICS GRID
========================================================= */

.hero__stats {
  position: relative;

  z-index: 5;

  grid-column: 1 / -1;

  width: min(100%, 1000px);

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 12px;
}

/* =========================================================
   STAT CARD
========================================================= */

.hero-stat {
  min-height: 108px;

  padding: 15px 10px;

  display: grid;

  grid-template-columns: 64px minmax(0, 1fr);

  align-items: center;

  gap: 15px;

  border: 1px solid rgba(255, 255, 255, 0.28);

  border-bottom: 2px solid var(--hero-yellow);

  border-radius: 13px;

  background: linear-gradient(
    135deg,
    rgba(24, 78, 150, 0.56),
    rgba(8, 40, 91, 0.45)
  );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);

  transition:
    transform var(--hero-transition),
    background var(--hero-transition),
    border-color var(--hero-transition);
}

.hero-stat:hover {
  transform: translateY(-5px);

  background: linear-gradient(
    135deg,
    rgba(25, 91, 171, 0.7),
    rgba(7, 42, 95, 0.62)
  );

  border-color: rgba(252, 193, 1, 0.62);
}

/* =========================================================
   STAT ICON
========================================================= */

.hero-stat__icon {
  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--hero-yellow);
}

.hero-stat__icon i {
  font-size: 42px;
}

/* =========================================================
   STAT CONTENT
========================================================= */

.hero-stat__content {
  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.hero-stat__number {
  display: block;

  color: var(--hero-white);

  font-size: clamp(25px, 1.8vw, 38px);

  font-weight: 700;

  line-height: 1.05;

  white-space: nowrap;
}

.hero-stat__label {
  display: block;

  margin-top: 5px;

  color: var(--hero-white);

  font-size: 14px;

  line-height: 1.35;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1800px) {
  .hero__container {
    max-width: 1800px;

    padding-left: 75px;
    padding-right: 75px;
  }

  .hero__layout {
    min-height: 760px;
  }

  .hero__title {
    font-size: 78px;
  }

  .hero__description {
    font-size: 19px;
  }

  .hero__stats {
    width: min(100%, 1080px);
  }
}

/* =========================================================
   1440px
========================================================= */

@media (max-width: 1440px) {
  .hero {
    min-height: 650px;
  }

  .hero__container {
    padding: 45px 45px 24px;
  }

  .hero__layout {
    min-height: 600px;

    grid-template-columns:
      minmax(450px, 0.75fr)
      minmax(0, 1.25fr);
  }

  .hero__title {
    font-size: clamp(40px, 3vw, 60px);
  }

  .hero__stats {
    width: min(100%, 930px);
  }
}

/* =========================================================
   1200px
========================================================= */

@media (max-width: 1199px) {
  .hero {
    min-height: 620px;
  }

  .hero__container {
    padding: 40px 40px 22px;
  }

  .hero__layout {
    min-height: 570px;

    grid-template-columns:
      minmax(370px, 0.78fr)
      minmax(0, 1.22fr);
  }

  .hero__title {
    font-size: 48px;

    letter-spacing: -1px;
  }

  .hero__description {
    font-size: 15px;

    max-width: 500px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__button {
    min-width: 160px;

    min-height: 50px;

    font-size: 14px;
  }

  .hero-stat {
    grid-template-columns: 50px minmax(0, 1fr);

    min-height: 96px;

    padding: 12px 14px;

    gap: 9px;
  }

  .hero-stat__icon {
    width: 50px;
    height: 50px;
  }

  .hero-stat__icon i {
    font-size: 32px;
  }

  .hero-stat__label {
    font-size: 12px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    width: 100%;
  }

  .hero__background {
    background-position: 65% center;
  }

  .hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(1, 24, 68, 0.97) 0%,
      rgba(2, 31, 97, 0.9) 45%,
      rgba(2, 31, 97, 0.45) 100%
    );
  }

  .hero__container {
    padding: 60px 30px 28px;
  }

  .hero__layout {
    min-height: auto;

    grid-template-columns: 1fr;

    grid-template-rows: auto auto;

    gap: 45px;
  }

  .hero__content {
    align-self: auto;
  }

  .hero__content-inner {
    width: min(100%, 680px);
  }

  .hero__title {
    font-size: clamp(42px, 7vw, 58px);
  }

  .hero__description {
    max-width: 600px;

    font-size: 16px;
  }

  .hero__stats {
    width: 100%;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
  }

  .hero-stat {
    min-height: 100px;
  }
}

/* =========================================================
   MOBILE LANDSCAPE
========================================================= */

@media (max-width: 767px) {
  .hero__container {
    padding: 45px 20px 22px;
  }

  .hero__background {
    background-position: 62% center;
  }

  .hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(1, 24, 68, 0.98) 0%,
      rgba(2, 31, 97, 0.92) 65%,
      rgba(2, 31, 97, 0.7) 100%
    );
  }

  .hero__layout {
    gap: 35px;
  }

  .hero__title {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero__accent {
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .hero__description {
    font-size: 15px;

    line-height: 1.65;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__button {
    flex: 1;

    min-width: 0;

    padding-left: 14px;
    padding-right: 14px;

    gap: 15px;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;

    gap: 10px;
  }

  .hero-stat {
    min-height: 88px;

    grid-template-columns: 45px minmax(0, 1fr);

    padding: 11px 13px;

    gap: 7px;

    border-radius: 10px;
  }

  .hero-stat__icon {
    width: 44px;
    height: 44px;
  }

  .hero-stat__icon i {
    font-size: 28px;
  }

  .hero-stat__number {
    font-size: 25px;
  }

  .hero-stat__label {
    font-size: 11px;
  }
}

/* =========================================================
   MOBILE PORTRAIT
========================================================= */

@media (max-width: 575px) {
  .hero__container {
    padding: 42px 16px 18px;
  }

  .hero__layout {
    gap: 30px;
  }

  .hero__title {
    font-size: clamp(31px, 9vw, 40px);
    letter-spacing: -0.7px;
  }

  .hero__description {
    font-size: 14px;

    line-height: 1.7;
  }

  .hero__actions {
    width: 100%;

    flex-direction: column;

    align-items: stretch;
  }

  .hero__button {
    width: 100%;

    min-height: 52px;
  }

  .hero__stats {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .hero-stat {
    min-height: 82px;

    grid-template-columns: 48px minmax(0, 1fr);
  }

  .hero-stat__number {
    font-size: 27px;
  }

  .hero-stat__label {
    font-size: 12px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .hero__container {
    padding: 35px 13px 16px;
  }

  .hero__title {
    font-size: 29px;
  }

  .hero__description {
    font-size: 13px;
  }

  .hero__button {
    font-size: 14px;
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}

.industry-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;

  --primary-color: #0b2b73;
  --secondary-color: #f9c200;
  --text-color: #4b5563;
  --white-color: #ffffff;
  --bg-color: #f8fafc;
  --shadow-light: 0 8px 30px rgba(0, 0, 0, 0.05);
  --radius-lg: 22px;
  --transition: all 0.35s ease;
}

.industry-section__heading {
  max-width: 900px;
  margin: 0 auto 60px;
}

.industry-section__subheading {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.industry-section__subheading span {
  width: 48px;
  height: 2px;
  background: var(--primary-color);
}

.industry-section__subheading p {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 1px;
  margin: 0;
}

.industry-section__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 10px !important;
}

.industry-section__description {
  font-size: 14px;
  max-width: 750px;
  /* margin: 12px auto; */
  margin: 0 auto;
  line-height: 1.8;
}

.industry-section__divider {
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 30px;
}

/* Card */

.industry-card {
  background: var(--white-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-8px);
}

.industry-card__image {
  /* height: 240px; */
  height: 190px;
  overflow: hidden;
}

.industry-card__image img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.industry-card:hover .industry-card__image img {
  transform: scale(1.06);
}

.industry-card__body {
  position: relative;
  padding: 30px 28px 20px;
}

.industry-card__icon {
  position: absolute;
  top: -50px;
  left: 25px;
  width: 68px;
  height: 68px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 4px solid var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.industry-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-family: var(--primary-font);
}

.industry-card__text {
  font-size: 16px;
  margin-bottom: 0 !important;
  /* line-height: 1.8;
  min-height: 85px; */
}

.industry-card__link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 6px;
}

.industry-card__link span {
  width: 38px;
  height: 38px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.industry-card__link:hover span {
  transform: rotate(-15deg);
}

/* Responsive */

@media (max-width: 1400px) {
  .industry-section__title {
    font-size: 45px;
  }
}

@media (max-width: 1199px) {
  .industry-section__title {
    font-size: 36px;
  }

  .industry-card__title {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .industry-section {
    padding: 50px 0;
  }

  .industry-section__title {
    font-size: 30px;
  }

  .industry-section__description {
    font-size: 18px;
  }

  .industry-card__image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .industry-section__title {
    font-size: 26px;
    line-height: 1.4;
  }

  .industry-section__description {
    font-size: 16px;
    line-height: 1.7;
  }

  .industry-card__body {
    padding: 30px 20px 20px;
  }

  .industry-card__title {
    font-size: 22px;
  }

  .industry-card__text {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .industry-section {
    padding: 30px 0;
  }

  .industry-section__title {
    font-size: 22px;
  }

  .industry-section__subheading {
    gap: 10px;
  }

  .industry-section__subheading span {
    width: 30px;
  }

  .industry-card__image {
    height: 200px;
  }

  .industry-card__icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
}

/* --------------------------------------CTA----------------------------- */

.cta-banner {
  padding: 60px 30px;

  --primary-color: #021f61;
  --secondary-color: #fcc101;
  --white-color: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --feature-bg: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.15);
  --transition: all 0.35s ease;
}

.cta-banner__container {
  position: relative;
  max-width: 1640px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--primary-color);
  background-image: linear-gradient(
    90deg,
    rgba(2, 31, 97, 0.96) 0%,
    rgba(2, 31, 97, 0.9) 45%,
    rgba(2, 31, 97, 0.3) 100%
  );
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  padding: 50px 40px 30px;
}

.cta-banner__left {
  max-width: 700px;
}

.cta-banner__tag {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.cta-banner__line {
  width: 45px;
  height: 3px;
  background: var(--secondary-color);
}

.cta-banner__tag p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.cta-banner__title {
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 18px;
  font-family: var(--primary-font);
}

.cta-banner__divider {
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  margin-bottom: 20px;
}

.cta-banner__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 26px;
}

.cta-banner__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.cta-banner__btn i {
  display: flex;
  align-items: center;
}

.cta-banner__btn--primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.cta-banner__btn--secondary {
  background: var(--white-color);
  color: var(--primary-color);
}

.cta-banner__btn:hover {
  transform: translateY(-4px);
}

.cta-banner__image {
  text-align: right;
}

.cta-banner__image img {
  width: 100%;
  max-width: 760px;
  border-radius: 20px;
  object-fit: cover;
}

/* Features */
.cta-features {
  margin-top: 36px;
  background: var(--feature-bg);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  backdrop-filter: blur(15px);
}

.cta-features__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 11px;
  border-right: 1px solid var(--border-light);
  height: 100%;
}

.cta-features__item--last {
  border-right: none;
}

.cta-features__icon {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 30px;
  flex-shrink: 0;
}

.cta-features__content h4 {
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: var(--primary-font);
}

.cta-features__content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1400px) {
  .cta-banner__title {
    font-size: 42px;
  }

  .cta-banner__description {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .cta-banner__title {
    font-size: 38px;
  }

  .cta-banner__content {
    padding: 40px 30px 25px;
  }

  .cta-features__content h4 {
    font-size: 22px;
  }

  .cta-features__content p {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .cta-banner__image {
    margin-top: 40px;
  }

  .cta-banner__title {
    font-size: 32px;
  }

  .cta-banner__description {
    font-size: 14px;
  }

  .cta-features__item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
}

@media (max-width: 767px) {
  .cta-banner {
    padding: 20px;
  }

  .cta-banner__content {
    padding: 30px 25px 20px;
  }

  .cta-banner__title {
    font-size: 34px;
  }

  .cta-banner__description {
    font-size: 14px;
  }

  .cta-banner__btn {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 18px 20px;
  }

  .cta-banner__tag p {
    font-size: 13px;
  }

  .cta-features__item {
    padding: 22px;
  }

  .cta-features__content h4 {
    font-size: 18px;
  }

  .cta-features__content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cta-banner__title {
    font-size: 28px;
  }

  .cta-banner__description {
    font-size: 16px;
  }

  .cta-features__icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }
}

/* --------------------------------------CTA----------------------------- */

/* --------------------------------------Why Choose us----------------------------- */

.why-choose {
  padding: 60px 0;

  --primary: #021f61;
  --secondary: #fcc101;
  --text: #4a5568;
  --white: #ffffff;
  --bg: #f7f9fc;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  --radius: 22px;
  --transition: all 0.35s ease;
}

.why-choose__header {
  max-width: 910px;
  margin: 0 auto 45px;
}

.why-choose__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 14px;
}

.why-choose__line {
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.why-choose__subtitle h6 {
  margin: 0;
  font-size: 15px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 2px;
}

.why-choose__title {
  font-size: 45px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2 !important;
}

.why-choose__divider {
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 0 auto 14px;
  border-radius: 20px;
}

.why-choose__description {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* Cards */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px 20px 15px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card__content {
  flex: 1;
}

.why-card__icon {
  width: 70px;
  height: 70px;
  background: #eef4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 12px;
}

.why-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 12px;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0 !important;
}

.why-card__bar {
  display: inline-block;
  width: 30px;
  height: 4px;
  background: var(--secondary);
  border-radius: 10px;
  margin-top: 20px;
}

.why-card__image {
  /* flex: 0 0 220px; */
  flex: 0 0 160px;
  display: flex;
  align-items: center;
}

.why-card__image img {
  width: 100%;
  object-fit: contain;
}

/* Stats */
.why-stats {
  margin-top: 50px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.why-stats__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 28px;
  border-right: 1px solid #e5e7eb;
}

.why-stats__item--last {
  border-right: none;
}

.why-stats__item i {
  font-size: 28px;
  color: var(--primary);
}

.why-stats__item p {
  margin: 0;
  font-size: 16px;
  color: var(--primary);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1199px) {
  .why-choose__title {
    font-size: 40px;
  }

  .why-card__title {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .why-card {
    flex-direction: column;
    text-align: center;
  }

  .why-card__image {
    flex: auto;
    justify-content: center;
  }

  .why-card__icon {
    margin: 0 auto 20px;
  }

  .why-stats__item {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}

@media (max-width: 767px) {
  .why-choose {
    padding: 60px 0;
  }

  .why-choose__title {
    font-size: 26px;
  }

  .why-choose__description {
    font-size: 18px;
  }

  .why-card {
    padding: 20px;
  }

  .why-card__title {
    font-size: 22px;
  }

  .why-card__desc {
    font-size: 15px;
  }

  .why-stats__item p {
    font-size: 16px;
  }
}

/* --------------------------------------Why Choose us----------------------------- */

/* --------------------------------------TESTIMONIALS----------------------------- */

/*==================================================
==================================================*/

ul {
  list-style: none;
}

/*==================================================
        Section
==================================================*/

.testimonial {
  padding: 90px 0 90px;

  position: relative;

  overflow: hidden;

  --primary-color: #021f61;
  --secondary-color: #fcc101;

  --heading-color: #0d2a6b;
  --text-color: #4d5b78;

  --white: #ffffff;

  --section-bg: #f7f9fd;

  --border-color: #edf2f8;

  --shadow-sm: 0 10px 35px rgba(9, 30, 66, 0.06);

  --shadow-md: 0 20px 60px rgba(10, 35, 80, 0.08);

  --transition: 0.35s ease;

  --radius: 22px;
}

.testimonial::before {
  content: "";

  position: absolute;

  left: -180px;

  top: -180px;

  width: 450px;

  height: 450px;

  background: radial-gradient(rgba(252, 193, 1, 0.08), transparent);

  border-radius: 50%;
}

.testimonial::after {
  content: "";

  position: absolute;

  right: -220px;

  top: -80px;

  width: 480px;

  height: 480px;

  background: radial-gradient(rgba(2, 31, 97, 0.05), transparent);

  border-radius: 50%;
}

/*==================================================
        Heading
==================================================*/

.testimonial__heading {
  max-width: 960px;
  margin: auto;
  margin-bottom: 50px;
}

.testimonial__subtitle {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  margin-bottom: 20px;
}

.testimonial__subtitle span {
  width: 60px;

  height: 2px;

  background: var(--primary-color);
}

.testimonial__subtitle h6 {
  margin: 0;

  color: var(--secondary-color);

  letter-spacing: 2px;

  font-weight: 700;

  font-size: 18px;
}

.testimonial__title {
  font-size: 58px;

  font-weight: 700;

  color: var(--heading-color);

  line-height: 1.18;

  margin-bottom: 22px;
}

.testimonial__description {
  max-width: 760px;

  margin: auto;

  font-size: 16px;

  line-height: 1.4;

  color: #53617f;
}

.testimonial__divider {
  width: 60px;

  height: 4px;

  background: var(--secondary-color);

  margin: 12px auto 0;

  border-radius: 50px;
}

/*==================================================
            Swiper
==================================================*/

.testimonial-slider {
  position: relative;
}

.testimonial-slider__swiper {
  overflow: hidden;

  padding: 10px;
}

.swiper-slide {
  height: auto;
}

/*==================================================
        Testimonial Card
==================================================*/

.testimonial-card {
  background: #fff;

  border-radius: 24px;

  padding: 40px;

  box-shadow: var(--shadow-sm);

  border: 1px solid #edf1f7;

  position: relative;
  min-height: 300px;
  height: 100%;

  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  position: absolute;

  left: 28px;

  top: 20px;

  font-size: 58px;

  color: #d9e6fa;
}

.testimonial-card__header {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-bottom: 25px;
}

.testimonial-card__avatar {
  width: 90px;

  height: 90px;

  border-radius: 50%;

  overflow: hidden;

  flex-shrink: 0;

  border: 6px solid #f3f6fc;
}

.testimonial-card__avatar img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.testimonial-card__rating {
  display: flex;

  gap: 5px;

  margin-bottom: 10px;
}

.testimonial-card__rating i {
  color: #fdbb00;

  font-size: 17px;
}

.testimonial-card__info h3 {
  margin: 0;

  font-size: 24px;

  color: var(--heading-color);

  font-weight: 700;
}

.testimonial-card__info span {
  color: #64748b;

  font-size: 16px;
}

.testimonial-card__body {
  margin-bottom: 15px;
}

.testimonial-card__body p {
  margin: 0;

  font-size: 22px;

  line-height: 1.4;

  color: #364152;
}

.testimonial-card__footer {
  padding-top: 25px;

  border-top: 1px solid #e9edf4;
}

.testimonial-card__footer img {
  height: 48px;

  width: auto;

  object-fit: contain;
}

/*==================================================
        Navigation
==================================================*/

.testimonial-slider__nav {
  width: 62px;

  height: 62px;

  border: none;

  background: #fff;

  border-radius: 50%;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 20;

  transition: 0.3s;
}

.testimonial-slider__nav i {
  font-size: 22px;

  color: var(--primary-color);
}

.testimonial-slider__nav:hover {
  background: var(--primary-color);
}

.testimonial-slider__nav:hover i {
  color: #fff;
}

.testimonial-slider__nav--prev {
  left: -35px;
}

.testimonial-slider__nav--next {
  right: -35px;
}

/*==================================================
            Pagination
==================================================*/

.testimonial-slider__pagination {
  position: relative !important;

  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 13px;

  height: 13px;

  background: #d6dce7;

  opacity: 1;

  margin: 0 7px !important;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color);

  width: 14px;

  height: 14px;
}

/*==================================================
        Animation
==================================================*/

.testimonial-card {
  opacity: 0;

  transform: translateY(35px);

  animation: fadeUp 0.8s forwards;
}

.swiper-slide:nth-child(2) .testimonial-card {
  animation-delay: 0.2s;
}

.swiper-slide:nth-child(3) .testimonial-card {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(35px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* ----------------Clients------------------------ */
/*==================================================
            Client Logos Section
==================================================*/

.testimonial-clients {
  margin-top: 70px;
  background: var(--white);
  border-radius: 24px;
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.testimonial-clients__count {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
  position: relative;
}

.testimonial-clients__count::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70px;
  background: #e8edf5;
}

.testimonial-clients__icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.testimonial-clients__icon i {
  color: var(--secondary-color);
  font-size: 34px;
}

.testimonial-clients__count h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.testimonial-clients__count p {
  margin: 8px 0 0;
  font-size: 20px;
  color: var(--text-color);
  position: relative;
}

.testimonial-clients__count p::after {
  content: "";
  width: 42px;
  height: 4px;
  background: var(--secondary-color);
  display: block;
  margin-top: 12px;
  border-radius: 30px;
}

/*==========================================
            Logo Grid
==========================================*/

.testimonial-clients__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial-clients__logo {
  flex: 1;
  min-width: 140px;
  height: 82px;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.testimonial-clients__logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-clients__logo img {
  max-width: 135px;
  max-height: 48px;
  object-fit: contain;
  transition: 0.3s;
}

.testimonial-clients__logo:hover img {
  transform: scale(1.05);
}

/*==================================================
            Bottom Trust Statement
==================================================*/

.testimonial-bottom {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.testimonial-bottom__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.testimonial-bottom__icon i {
  color: white;
  font-size: 30px;
}

.testimonial-bottom p {
  margin: 0;
  font-size: 20px;
  color: #48566f;
}

.testimonial-bottom h5 {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  color: #48566f;
}

.testimonial-bottom h5 span {
  color: var(--heading-color);
}

/*==================================================
            Hover Effects
==================================================*/

.testimonial-card:hover .testimonial-card__avatar img {
  transform: scale(1.08);
}

.testimonial-card__avatar img {
  transition: 0.4s;
}

.testimonial-card:hover .testimonial-card__quote {
  color: rgba(252, 193, 1, 0.35);
}

.testimonial-card:hover .testimonial-card__footer img {
  filter: none;
}

.testimonial-card__footer img {
  transition: 0.35s;
}

.testimonial-clients__logo:hover {
  border-color: rgba(252, 193, 1, 0.5);
}

/*==================================================
            Responsive
==================================================*/

@media (max-width: 1600px) {
  .testimonial__title {
    font-size: 38px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

@media (max-width: 1400px) {
  .testimonial__title {
    font-size: 38px;
  }

  .testimonial-card__info h3 {
    font-size: 20px;
  }

  .testimonial-card__body p {
    font-size: 16px;
  }

  .testimonial-slider__nav--prev {
    left: -15px;
  }

  .testimonial-slider__nav--next {
    right: -15px;
  }
}

@media (max-width: 1199px) {
  .testimonial {
    padding: 80px 0;
  }

  .testimonial__title {
    font-size: 36px;
  }

  .testimonial__description {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .testimonial-card__avatar {
    width: 85px;
    height: 85px;
  }

  .testimonial-card__body p {
    font-size: 18px;
  }

  .testimonial-clients__count::after {
    display: none;
  }

  .testimonial-clients__logos {
    margin-top: 30px;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .testimonial {
    padding: 70px 0;
  }

  .testimonial__title {
    font-size: 38px;
  }

  .testimonial__description {
    font-size: 15px;
  }

  .testimonial-card__header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card__rating {
    justify-content: center;
  }

  .testimonial-card__body {
    text-align: center;
  }

  .testimonial-card__footer {
    text-align: center;
  }

  .testimonial-bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-bottom p {
    font-size: 20px;
  }

  .testimonial-bottom h5 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .testimonial {
    padding: 60px 0;
  }

  .testimonial__subtitle h6 {
    font-size: 15px;
  }

  .testimonial__line {
    width: 35px;
  }

  .testimonial__title {
    font-size: 30px;
    line-height: 1.35;
  }

  .testimonial__description {
    font-size: 16px;
    line-height: 1.4;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-card__avatar {
    width: 80px;
    height: 80px;
  }

  .testimonial-card__info h3 {
    font-size: 18px;
  }

  .testimonial-card__info span {
    font-size: 16px;
  }

  .testimonial-card__body p {
    font-size: 16px;
    line-height: 1.4;
  }

  .testimonial-slider__nav {
    display: none;
  }

  .testimonial-clients {
    padding: 25px;
  }

  .testimonial-clients__count {
    justify-content: center;
    margin-bottom: 25px;
  }

  .testimonial-clients__count h3 {
    font-size: 36px;
  }

  .testimonial-clients__count p {
    font-size: 18px;
  }

  .testimonial-clients__logos {
    gap: 15px;
  }

  .testimonial-clients__logo {
    min-width: 120px;
    height: 72px;
  }

  .testimonial-bottom__icon {
    width: 64px;
    height: 64px;
  }

  .testimonial-bottom__icon i {
    font-size: 24px;
  }

  .testimonial-bottom p {
    font-size: 17px;
  }

  .testimonial-bottom h5 {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .testimonial {
    padding: 50px 0;
  }

  .testimonial__title {
    font-size: 26px;
  }

  .testimonial-card {
    padding: 22px;
    border-radius: 18px;
  }

  .testimonial-card__quote {
    font-size: 42px;
    left: 18px;
    top: 14px;
  }

  .testimonial-card__avatar {
    width: 70px;
    height: 70px;
  }

  .testimonial-card__body p {
    font-size: 15px;
  }

  .testimonial-clients {
    padding: 20px;
  }

  .testimonial-clients__icon {
    width: 68px;
    height: 68px;
  }

  .testimonial-clients__icon i {
    font-size: 28px;
  }

  .testimonial-clients__logo {
    min-width: 100%;
  }

  .testimonial-bottom {
    gap: 15px;
  }
}

@media (max-width: 400px) {
  .testimonial__title {
    font-size: 23px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .testimonial-card__info h3 {
    font-size: 17px;
  }

  .testimonial-card__info span {
    font-size: 15px;
  }

  .testimonial-bottom p {
    font-size: 15px;
  }

  .testimonial-bottom h5 {
    font-size: 18px;
  }
}

/*==================================================
            Utilities
==================================================*/

.text-primary-custom {
  color: var(--primary-color);
}

.bg-primary-custom {
  background: var(--primary-color);
}

.bg-secondary-custom {
  background: var(--secondary-color);
}

.shadow-custom {
  box-shadow: var(--shadow-md);
}

.rounded-custom {
  border-radius: var(--radius);
}

.transition {
  transition: var(--transition);
}

/* ----------------Clients------------------------ */

/*====================================
    Premium Continuous Logo Marquee
====================================*/

.client-logo-marquee {
  width: 100%;

  overflow: hidden;

  position: relative;
}

.clientLogoSwiper {
  overflow: visible;
}

.clientLogoSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.client-logo-marquee .swiper-slide {
  width: auto;
}

.client-logo-marquee__item {
  width: 170px;

  height: 82px;

  background: #fff;

  border: 1px solid #e8edf5;

  border-radius: 14px;

  display: flex;

  justify-content: center;

  align-items: center;

  transition: 0.35s;
}

.client-logo-marquee__item:hover {
  /* transform:translateY(-5px); */

  border-color: #fcc101;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.client-logo-marquee__item img {
  width: auto;

  max-width: 130px;

  max-height: 42px;

  object-fit: contain;

  transition: 0.35s;
}

.client-logo-marquee__item:hover img {
  transform: scale(1.06);
}

/* Mobile */

@media (max-width: 991px) {
  .client-logo-marquee__item {
    width: 150px;

    height: 74px;
  }
}

@media (max-width: 576px) {
  .client-logo-marquee__item {
    width: 130px;

    height: 68px;
  }

  .client-logo-marquee__item img {
    max-width: 100px;
  }
}

/* --------------------------------------TESTIMONIALS----------------------------- */
