/* =========================================
   SERVICE BANNER SECTION
========================================= */
.service-banner-section {
  width: 100%;
  background: #f4fafb;
}

/* =========================================
   BANNER
========================================= */

/* .service-banner {
  position: relative;
  width: min(1530px, 90%);
  min-height: 590px;
  margin: 0 auto;
  overflow: hidden;
  /* border-radius: 28px; */
  /*isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px 0;
} */

.service-banner {
    position: relative;
    /* width: min(1530px, 90%); */
    min-height: 616px;
    /* margin: 0 auto; */
    overflow: hidden;
    /* border-radius: 28px; */
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 45px 0; */
}

.service-banner-title h1 {
  font-size: 50px;
}
/* =========================================
   BACKGROUND IMAGE
========================================= */

.service-banner-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: -3;

  transition: transform 0.7s ease;
}

.service-banner:hover .service-banner-bg {
  transform: scale(1.03);
}

/* =========================================
   IMAGE OVERLAY
========================================= */

.service-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* background: linear-gradient(
    90deg,
    #123f73 0%,
    rgba(5, 66, 105, 0.82) 38%,
    rgb(5 92 116 / 55%) 68%,
    rgb(0 125 145 / 77%) 100%
  ); */
  background: linear-gradient(
      180deg,
      rgba(4, 50, 91, 0.3) 0%,
      rgba(4, 50, 91, 0.55) 35%,
      rgba(4, 40, 75, 0.95) 100%
    );
}

/* =========================================
   CONTENT
========================================= */
.service-banner-content {
  /* width: 55%; */
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-banner-label {
  display: block;

  margin-bottom: 18px;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;

  color: #71d8df;
}

.service-banner-content h1 {
  margin: 0;

  font-size: clamp(48px, 5vw, 65px);

  line-height: 1.04;

  letter-spacing: -2px;

  font-weight: 700;

  color: #fff;
}

.service-banner-content h1 span {
  color: #63d2d9;
}

/* =========================================
   DESCRIPTION
========================================= */

.service-banner-content p {
    max-width: 600px;
    margin: 0 0 30px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin: 15px auto;
}
/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
  position: relative;
  overflow: hidden;
}

.services-container {
  width: min(1200px, 90%);

  margin: auto;
}

/* =========================================
   HEADING
========================================= */

.services-heading {
  text-align: center;

  margin-bottom: 45px;
}

.services-heading > span {
  display: block;

  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;

  color: #08a6b5;
}

.services-heading h2 {
  margin: 0;

  font-size: 42px;

  line-height: 1.15;

  color: #123f73;
}

.services-heading h2 strong {
  color: #08a6b5;

  font-weight: 700;
}

.services-line {
  width: 40px;
  height: 3px;

  margin: 18px auto 0;

  border-radius: 20px;

  background: #08a6b5;
}

/* =========================================
   GRID
========================================= */

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

/* =========================================
   CARD
========================================= */

.service-card {
    position: relative;
    padding: 30px 28px 27px;
    min-height: 430px;
    background: #ffffff;
    border-radius: 20px;
    /* border: 1px solid rgb(110 189 194); */
    box-shadow: 0 15px 45px rgb(18 63 115 / 11%);
    overflow: hidden;
    transition: transform 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 25px 55px rgba(18, 63, 115, 0.12);
}

/* =========================================
   DECORATIVE NUMBER
========================================= */

.service-card::before {
  content: "";

  position: absolute;

  width: 150px;
  height: 150px;

  right: -70px;
  top: -70px;

  border-radius: 50%;

  background: rgba(8, 166, 181, 0.055);
}

/* =========================================
   TOP
========================================= */

.service-card-top {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 25px;
}

.service-number {
  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;

  color: #08a6b5;
}

.service-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #e8f7f8;

  color: #078e9e;

  font-size: 19px;

  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #08a6b5;

  color: #ffffff;

  transform: rotate(-5deg);
}

/* =========================================
   CATEGORY
========================================= */

.service-category {
  display: block;

  margin-bottom: 9px;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.6px;

  color: #8296a5;
}

/* =========================================
   TITLE
========================================= */

.service-card h3 {
  margin: 0 0 15px;

  font-size: 25px;

  line-height: 1.15;

  color: var(--navy);
}

/* =========================================
   LIST
========================================= */

.service-list {
  display: grid;
  gap: 14px 25px;
}

.service-list div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #143f71;
}

.service-list i {
  flex-shrink: 0;

  margin-top: 2px;

  font-size: 10px;

  color: #08a6b5;
}

/* =========================================
   LINK
========================================= */
.service-link {
  border-radius: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  color: #008c94;
  padding: 15px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: 1px solid #008c94;
  bottom: 0px;
}

.service-link i {
  font-size: 9px;

  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #08a6b5;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* =========================================
   RESEARCH STATS
========================================= */

.research-stats {
  /* background: #f7fbfc;
   background: radial-gradient(circle at 18% 35%, rgba(8, 166, 181, 0.12), transparent 35%), linear-gradient(110deg, #e3f4f8 0%, #f5fbfc 55%, #dff1f5 100%); */
}

/* =========================================
   COUNTER ROW
========================================= */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 35px;
}

/* =========================================
   INDIVIDUAL STAT
========================================= */

.stat-item {
  position: relative;
  min-height: 145px;
  padding: 28px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Vertical divider */

.stat-item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 25px;
  bottom: 25px;

  right: 0;

  width: 1px;

  background: #dce8ec;
}

/* =========================================
   NUMBER
========================================= */

.stat-number {
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--navy);
}

.counter-symbol {
  margin-left: 2px;

  color: #08a6b5;
}

/* =========================================
   TITLE
========================================= */

.stat-title {
  font-size: 15px;

  line-height: 1.5;

  font-weight: 600;

  letter-spacing: 0.2px;

  color: #60788a;
}

/*=====================================================
    Why choose us 
=====================================================-->

        /* Section Wrapper */

.about-section {
  padding: 100px 0;
}
.about-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Pushes image to the right */
}

/* Floating Content Card (Left Overlap) */
.content-card {
    position: relative;
    /* z-index: 2; */
    width: 52%;
    margin-right: -5%;
    background: #ffffff;
    padding: 22px 48px;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgb(0 0 0 / 27%);
}

.title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  color: #0b1f63;
  margin-bottom: 20px;
}

.description {
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 32px;
}

/* Primary CTA Button */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #4353ff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(67, 83, 255, 0.35);
}

.btn-read-more:hover {
  background-color: #3242e3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 83, 255, 0.45);
}

.btn-read-more svg {
  transition: transform 0.2s ease;
}

.btn-read-more:hover svg {
  transform: translateX(4px);
}

/* Image Wrapper */
.image-wrapper {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: left;
}

.facility-content.service-page h3 {
  margin: 0 0 15px;
}

.facility-content {
  padding: 85px 40px;
}

.facility-content p {
  line-height: 1.6;
  margin: 0 0 0px;
}

h4 {
  margin: 15px 0;
}

/* =========================================
   CTA
========================================= */

.service-banner-btn {
  display: inline-flex;

  align-items: center;
  gap: 12px;

  padding: 15px 24px;

  border-radius: 30px;

  background: #08a5b5;

  color: #fff;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

  transition: all 0.3s ease;
}

.service-banner-btn i {
  font-size: 11px;

  transition: transform 0.3s ease;
}

.service-banner-btn:hover {
  background: #fff;

  color: #07518a;

  transform: translateY(-3px);
}

.service-banner-btn:hover i {
  transform: translateX(4px);
}

.banner-glass-card {
  position: absolute;

  right: 45px;
  bottom: 40px;

  display: flex;
  align-items: center;

  gap: 12px;

  padding: 13px 18px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.14);

  border: 1px solid rgba(255, 255, 255, 0.28);

  backdrop-filter: blur(12px);

  color: #fff;

  z-index: 3;
}

.banner-glass-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);

  color: #7de0e5;
}

.banner-glass-card strong {
  display: block;

  font-size: 12px;

  margin-bottom: 3px;
}

.banner-glass-card span {
  display: block;

  font-size: 9px;

  color: rgba(255, 255, 255, 0.75);
}



/*services-banner*/

/* =========================================
   HERO
========================================= */

.device-hero {
  padding: 100px 0;
  /* background:
    radial-gradient(
      circle at 18% 35%,
      rgba(8, 166, 181, 0.12),
      transparent 35%
    ),
    linear-gradient(110deg, #e3f4f8 0%, #f5fbfc 55%, #dff1f5 100%); */
    background: #008c94;
}

.device-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.device-hero-content {
  max-width: 620px;
}

.device-hero-content h1{
  color: #fff;
  /* color: #58595b; */
}

.device-hero-content h1 span {
  display: block;
  /* color: var(--teal); */
  color: #ffff;
}

.device-hero-content p {
    max-width: 580px;
    margin-bottom: 35px;
    margin: 35px 0;
    /* color: #777; */
    color: #ffff;
    font-size: 17px;
    line-height: 1.8;
}

.device-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px;
  border-radius: 50px;
  /* background: var(--teal); */
  /* color: #fff; */
  color: #008c94;
  background: #ffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.device-btn i {
  transition: 0.3s ease;
}

.device-btn:hover {
  background: var(--ordo-dark);
  color: #fff;
}

.device-btn:hover i {
  transform: translateX(5px);
}

/* HERO IMAGE */

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 35px;
  display: block;
}

.hero-floating-card {
  position: absolute;
  left: -35px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(107, 188, 193, 0.25);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.floating-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(107, 188, 193, 0.15);
  color: var(--teal);
}

.hero-floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.hero-floating-card small {
  color: #999;
  font-size: 11px;
}

.device-hero {
  position: relative;
  overflow: hidden;
  /* padding-bottom: 170px; */
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 150px;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}


@media (max-width: 1200px){
  .content-card {
    padding: 22px 55px;
}
p.para-description.what-section {
    max-width: 95%;
}
.image-wrapper.what-section {
    height: 420px;
}

}

@media (max-width: 991px) {
  /* .service-banner-section {
    padding: 25px 0 45px;
  } */

  .service-banner {
    width: 100%;
    min-height: 540px;
    align-items: flex-end;
  }

  .service-banner-content {
    width: 65%;
    padding-left: 50px;
  }

  .service-banner-content h1 {
    font-size: 52px;
  }

  .banner-glass-card {
    right: 25px;
    bottom: 25px;
  }
  .about-container {
    flex-direction: column-reverse;
  }

  .content-card {
    width: 100%;
    margin-right: 0;
    margin-top: -15px;
    border-radius: none;
    padding: 36px 28px;
  }

  .image-wrapper {
    width: 100%;
    height: 350px;
  }

  .title {
    font-size: 22px;
  }

  .service-banner-content p {
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    margin: 23px auto;
}

.service-banner-content {
    width: 100%;
    padding: 40px 25px 50px;
}

  .services-grid {
    grid-template-columns: 1fr;
}

.who-grid.service-page {
    gap: 0px;
}
.facility-content.service-page{
  padding: 15px;
}
.partner-grid.service-page {
    margin-top: 40px;
    gap: 10px;
}
.para-description.service-page {
    text-align: left;
    margin: 20px 0;
}
}

@media (max-width: 767px) {

  /* Stronger overlay for mobile */

  .service-banner-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 50, 91, 0.3) 0%,
      rgba(4, 50, 91, 0.55) 35%,
      rgba(4, 40, 75, 0.95) 100%
    );
  }

  .service-banner-label {
    font-size: 10px;
  }

  .service-banner-content h1 {
    font-size: 42px;

    letter-spacing: -1px;
  }

  .service-banner-content p {
    font-size: 13px;

    line-height: 1.7;
  }

  .service-banner-btn {
    padding: 13px 20px;

    font-size: 12px;
  }

  .banner-glass-card {
    display: none;
  }

  .research-stats {
    padding: 65px 0;
  }

  .stats-heading h2 {
    font-size: 31px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    min-height: 130px;

    padding: 22px 12px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid #dce8ec;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-title {
    font-size: 11px;
  }

  .section {
    padding: 40px 0;
}

.service-card-top {
    /* justify-content: center; */
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 20px;
    /* text-align: center; */
}
.service-list {
    display: grid;
    gap: 10px;
}
.expertise-card {
    padding: 14px;
}
.expertise-grid {
    gap: 35px;
}
.who-image{
  order: 1;
}
.who-content {
    order: 2;
}
.facility-content{
  order: 2;
  padding: 45px 30px;
}
}


@media (max-width: 480px) {
  .stat-number {
    font-size: 30px;
}
p.para-description.who-section {
    margin: 10px 0 15px;
    padding: 0px;
}
}