/********** Template CSS **********/
:root {
  --primary: #015fc9;
  --secondary: #0dd3f1;
  --light: #f6f7fc;
  --dark: #15233c;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  padding-top: 76px;
}

@media (max-width: 991.98px) {
  body {
    padding-top: 62px;
  }
}

/* Full-page sections */
.section-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero Section */
#home.section-page {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
}

#home .hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

#home .hero-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

#home .hero-sub {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--secondary);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#home .hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

#home .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

#home .hero-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

#home .hero-btn-primary {
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: #ffffff;
}

#home .hero-btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
}

#home .hero-btn-secondary {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

#home .hero-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  #home .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  #home .hero-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.fixed-top {
  top: 0;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1030;
}

.navbar.fixed-top.navbar-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
  max-height: 60px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 25px;
  padding: 10px 0;
  color: #696e77;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    max-height: 45px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header — Carousel & Hero ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 2;
  padding-top: 76px;
}

@media (max-width: 991.98px) {
  .carousel-caption {
    padding-top: 62px;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 50px;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Home section — full-viewport slider */
#home #header-carousel {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

#home #header-carousel.is-dragging {
  cursor: grabbing;
}

#home .carousel-item {
  height: 100vh;
  height: 100svh;
}

#home .carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cinematic dark overlay — denser left, fades toward right */
#home .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8, 18, 52, 0.84) 0%,
    rgba(8, 18, 52, 0.56) 52%,
    rgba(8, 18, 52, 0.16) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Slide indicator dots */
#home .carousel-indicators {
  margin-bottom: 2.25rem;
}

#home .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border-top: none;
  border-bottom: none;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  margin: 0 4px;
  transition:
    background-color 0.35s ease,
    transform 0.35s ease;
}

#home .carousel-indicators .active {
  background-color: var(--secondary);
  transform: scale(1.5);
}

/* ================================================
  Hero Typography
  ================================================ */

/* Eyebrow / category label above heading */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  flex-shrink: 0;
  background-color: var(--secondary);
}

.hero-eyebrow--no-line::before {
  display: none;
}

/* Main headline */
.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

/* Supporting paragraph */
.hero-desc {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.875rem, 1.25vw, 0.975rem);
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

/* CTA button row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Solid primary button */
.hero-btn-solid {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 2rem;
  background-color: var(--primary);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(0.78rem, 0.95vw, 0.875rem);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--primary);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.hero-btn-solid:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Ghost / outline secondary button */
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 2rem;
  background-color: transparent;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(0.78rem, 0.95vw, 0.875rem);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.48);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.hero-btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.88);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Tablet (768px – 991px) */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero-desc {
    max-width: 100%;
    font-size: 0.9rem;
  }
}

/* Mobile / iPhone (≤575px) */
@media (max-width: 575.98px) {
  .carousel-caption {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  #home .carousel-indicators {
    margin-bottom: 1.5rem;
  }

  .hero-eyebrow {
    font-size: clamp(1rem, 6.5vw, 1.65rem);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
  }

  .hero-eyebrow::before {
    width: 18px;
  }

  .hero-title {
    font-size: clamp(1.25rem, 6.5vw, 1.65rem);
    margin-bottom: 0.75rem;
  }

  .hero-desc {
    font-size: 0.82rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-btn-solid,
  .hero-btn-ghost {
    padding: 0.65rem 1.4rem;
    font-size: 0.78rem;
  }
}

.page-header {
  background: url(../img/carousel-1.webp) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #696e77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}

/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }

  .container.facts .facts-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.facts .facts-text {
  background:
    linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.webp) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-counter {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url(../img/carousel-2.webp) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service Section — Cards ***/
.svc-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(1, 95, 201, 0.1);
  padding: 2.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 12px rgba(1, 95, 201, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px 20px 0 0;
  opacity: 0.7;
  transition:
    opacity 0.3s ease,
    height 0.3s ease;
}

.svc-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(1, 95, 201, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

@media (hover: hover) {
  .svc-card:hover {
    transform: translateY(-8px);
    box-shadow:
      0 6px 24px rgba(1, 95, 201, 0.1),
      0 20px 56px rgba(1, 95, 201, 0.1),
      0 2px 8px rgba(0, 0, 0, 0.06);
    border-color: rgba(1, 95, 201, 0.2);
  }

  .svc-card:hover::before {
    opacity: 1;
    height: 4px;
  }
}

.svc-card-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.svc-card-icon-wrap {
  width: 66px;
  height: 66px;
  min-width: 66px;
  background: linear-gradient(135deg, var(--primary) 0%, #0276e8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.45rem;
  box-shadow:
    0 6px 20px rgba(1, 95, 201, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

@media (hover: hover) {
  .svc-card:hover .svc-card-icon-wrap {
    box-shadow:
      0 10px 28px rgba(1, 95, 201, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
  }
}

.svc-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.35;
}

.svc-card-desc {
  color: #5e6878;
  font-size: clamp(0.875rem, 1.3vw, 0.95rem);
  line-height: 1.85;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 991.98px) {
  .svc-card {
    overflow: hidden;
  }
}

@media (max-width: 575.98px) {
  .svc-card {
    padding: 2rem 1.75rem;
    border-radius: 16px;
  }

  .svc-card-icon-wrap {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 13px;
    font-size: 1.25rem;
    margin-bottom: 1.4rem;
  }
}

/*** Appointment ***/
.appointment {
  background:
    linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.webp) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 10px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

/*** Why RST Outperforms ***/
.rst-section-label {
  display: inline-block;
  border: 1.5px solid var(--primary);
  color: var(--light);
  border-radius: 50px;
  padding: 0.3rem 1.25rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.rst-comparison-table {
  border: 1px solid #e4e8f0;
}

.rst-comparison-table table thead th {
  padding: 1rem 1.25rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  vertical-align: middle;
}

.rst-col-feature {
  background-color: #eef2f9;
  color: var(--light);
  width: 28%;
}

.rst-col-traditional {
  background-color: #f5f6f8;
  color: var(--light);
  width: 36%;
  border-left: 1px solid #e4e8f0;
}

.rst-col-rst {
  background: linear-gradient(135deg, var(--primary) 0%);
  color: #ffffff;
  width: 36%;
}

.rst-comparison-table tbody tr {
  border-bottom: 1px solid #edf0f6;
  transition: background-color 0.2s ease;
}

.rst-comparison-table tbody tr:last-child {
  border-bottom: none;
}

.rst-comparison-table tbody tr:hover {
  background-color: var(--primary);
}

.rst-cell-feature {
  padding: 1.2rem 1.25rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light);
  background-color: #f8fafd;
  border-right: 1px solid #e4e8f0;
  line-height: 1.4;
}

.rst-cell-traditional {
  padding: 1.2rem 1.25rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  color: var(--light);
  border-right: 1px solid #e4e8f0;
  line-height: 1.5;
}

.rst-cell-rst {
  padding: 1.2rem 1.25rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light);
  background-color: rgba(1, 95, 201, 0.04);
  border-left: 3px solid var(--primary);
  line-height: 1.5;
}

.rst-icon-no {
  color: #e05260;
  font-size: 0.85rem;
}

.rst-icon-yes {
  color: #1a9e5e;
  font-size: 0.85rem;
}

.rst-tagline-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
}

/*** Footer ***/
.footer {
  color: #a7a8b4;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #a7a8b4;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #a7a8b4;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #a7a8b4;
  border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #ffffff;
}

/*** Responsive: prevent horizontal scroll ***/
img,
iframe,
video {
  max-width: 100%;
}

.section-page > * {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 991.98px) {
  .rst-comparison-table {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .rst-comparison-table table {
    min-width: 480px;
  }
}

/*** About Section Card ***/
.about-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow:
    0 8px 40px rgba(1, 95, 201, 0.08),
    0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 2.75rem 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.1rem;
}

.about-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.about-desc {
  color: #5e6878;
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about-highlights li {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.about-highlights li::before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 9px;
  background-repeat: no-repeat;
  background-position: center;
}

.about-cta {
  display: inline-block;
  align-self: flex-start;
  padding: 0.75rem 1.85rem;
  background-color: var(--primary);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.about-cta:hover {
  background-color: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .about-card {
    padding: 2rem 2rem;
  }
}

@media (max-width: 575.98px) {
  .about-card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
  }

  .about-cta {
    width: 100%;
    text-align: center;
  }
}

/*** RST Section Service Cards ***/
.rst-service-card {
  background: #1d2e4e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 1px 6px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .rst-service-card:hover {
    transform: translateY(-7px);
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.4),
      0 3px 12px rgba(1, 95, 201, 0.25);
    border-color: rgba(1, 95, 201, 0.55);
  }
}

.rst-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.4rem;
}

.rst-card-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(1, 95, 201, 0.4);
}

.rst-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
}

.rst-card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.875rem, 1.4vw, 0.95rem);
  line-height: 1.85;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 575.98px) {
  .rst-service-card {
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
  }

  .rst-card-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 12px;
  }
}

/*** About Section — Pillar Cards ***/
.about-pillars-row {
  margin-top: 2.5rem;
}

.about-pillar-card {
  background: #ffffff;
  border: 1px solid rgba(1, 95, 201, 0.1);
  border-top: 3px solid var(--primary);
  border-radius: 18px;
  padding: 2rem 1.75rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow:
    0 2px 16px rgba(1, 95, 201, 0.07),
    0 1px 4px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

@media (hover: hover) {
  .about-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 10px 36px rgba(1, 95, 201, 0.13),
      0 2px 8px rgba(0, 0, 0, 0.07);
    border-top-color: var(--secondary);
  }
}

.about-pillar-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, #0276e8 100%);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(1, 95, 201, 0.32);
}

.about-pillar-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(0.88rem, 1.3vw, 0.97rem);
  color: var(--dark);
  margin: 0;
  line-height: 1.45;
}

.about-pillar-desc {
  color: #5e6878;
  font-size: clamp(0.855rem, 1.2vw, 0.9rem);
  line-height: 1.8;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 767.98px) {
  .about-pillars-row {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .about-pillar-card {
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    gap: 0.85rem;
  }

  .about-pillar-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 11px;
    font-size: 1rem;
  }
}
