* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00a6b8;
  --primary-dark: #007d91;
  --secondary: #e8fbff;
  --dark: #06283d;
  --text: #4b6475;
  --white: #ffffff;
  --light: #f5fbfd;
  --border: rgba(6, 40, 61, 0.1);
  --shadow: 0 24px 70px rgba(6, 40, 61, 0.13);
  --radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 90px 0;
}

.center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}


/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: 0.35s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00bcd4, #007d91);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 166, 184, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 166, 184, 0.38);
}

.btn-outline {
  color: var(--dark);
  border: 1px solid rgba(6, 40, 61, 0.15);
  background: #fff;
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-3px);
}

.btn-large {
  padding: 15px 28px;
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

/* ==============================
   ULTRA PREMIUM HEADER / NAVBAR
================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 252, 255, 0.84));
  border-bottom: 1px solid rgba(6, 40, 61, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 188, 212, 0.08), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 125, 145, 0.07), transparent 30%);
  pointer-events: none;
}

.site-header.scrolled {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 252, 255, 0.91));
  box-shadow:
    0 16px 42px rgba(6, 40, 61, 0.10),
    0 4px 14px rgba(0, 166, 184, 0.05);
}

.header-wrapper {
  position: relative;
  z-index: 2;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* LOGO */
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.logo {
  width: 60px;
  height: 60px;
  padding: 5px;
  object-fit: contain;
  border-radius: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.logo-text small {
  margin-top: 3px;
  color: #007d91;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(6, 40, 61, 0.07);
  box-shadow:
    0 14px 34px rgba(6, 40, 61, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar a {
  position: relative;
  overflow: hidden;
  padding: 10px 13px;
  border-radius: 999px;
  color: #526a7a;
  font-size: 13.5px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.32s ease;
}

.navbar a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), transparent 32%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.16), rgba(0, 125, 145, 0.08));
  opacity: 0;
  transform: scale(0.85);
  transition: 0.32s ease;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transition: 0.32s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #007d91;
}

.navbar a:hover::before,
.navbar a.active::before {
  opacity: 1;
  transform: scale(1);
}

.navbar a:hover::after,
.navbar a.active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: max-content;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #06283d;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 12px 28px rgba(6, 40, 61, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: 0.32s ease;
}

.header-call i {
  width: 30px;
  height: 30px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 10px 20px rgba(0, 166, 184, 0.22);
}

.header-call:hover {
  color: #007d91;
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(6, 40, 61, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-actions .btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  border: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 16px 34px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.header-actions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-18deg);
  transition: 0.65s ease;
}

.header-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 46px rgba(0, 166, 184, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.header-actions .btn-primary:hover::before {
  left: 120%;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(6, 40, 61, 0.10);
  color: #06283d;
  font-size: 20px;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 251, 255, 0.82));
  box-shadow:
    0 14px 30px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.3s ease;
}

.menu-toggle:hover {
  color: #007d91;
  transform: translateY(-2px);
}

/* ==============================
   RESPONSIVE HEADER
================================= */

@media (max-width: 1280px) {
  .header-wrapper {
    gap: 16px;
  }

  .navbar {
    gap: 4px;
    padding: 7px;
  }

  .navbar a {
    padding: 9px 9px;
    font-size: 12.8px;
  }

  .header-actions .btn-primary {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .navbar a {
    padding: 9px 8px;
    font-size: 12.5px;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    padding: 8px;
  }
}

/* TABLET + MOBILE */
@media (max-width: 1024px) {
  .header-wrapper {
    height: 82px;
  }

  .header-actions .btn-primary,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .navbar {
    position: fixed;
    left: 50%;
    top: 92px;
    width: min(92%, 520px);
    max-height: calc(100vh - 112px);
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 8px;
    padding: 16px;
    border-radius: 28px;

    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.94));
    border: 1px solid rgba(6, 40, 61, 0.08);
    box-shadow:
      0 30px 80px rgba(6, 40, 61, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transform: translate(-50%, -18px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: 0.35s ease;
  }

  .navbar.active {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .navbar a {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 16px;
    border-radius: 18px;
    font-size: 15px;
    color: #06283d;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(6, 40, 61, 0.055);
  }

  .navbar a::before {
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), transparent 32%),
      linear-gradient(135deg, rgba(0, 213, 240, 0.18), rgba(0, 125, 145, 0.10));
  }

  .navbar a::after {
    left: 16px;
    bottom: 8px;
    transform: scaleX(0);
  }

  .navbar a:hover::after,
  .navbar a.active::after {
    transform: scaleX(1);
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .site-header {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 252, 255, 0.90));
  }

  .header-wrapper {
    height: 82px;
    gap: 12px;
  }

  .logo {
     width: 68px;
    height: 68px;
    padding: 2px;
    border-radius: 16px;
  }

  .menu-toggle {
      width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 18px;
  }

  .navbar {
     top: 90px;
    width: min(92%, 430px);
    max-height: calc(100vh - 108px);
    padding: 14px;
    border-radius: 24px;
  }


  .navbar a {
    min-height: 48px;
    padding: 14px 15px;
    font-size: 14.5px;
    border-radius: 16px;
  }
}

/* SMALL MOBILE */
@media (max-width: 420px) {
  .header-wrapper {
    height: 78px;
  }

  .logo-link {
    gap: 9px;
  }

  .logo {
     width: 150px;
    height: 80px;
    
  }

  .menu-toggle {
     width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .navbar {
   top: 86px;
    width: calc(100% - 24px);
    padding: 12px;
    border-radius: 22px;
  }

  .navbar a {
      min-height: 46px;
    font-size: 14px;
  }
}

/* ==============================
   HEADER SECTION END
================================= */


/* ==============================
   ULTRA PREMIUM HERO SECTION
================================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 0 0 125px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(0, 125, 145, 0.16), transparent 34%),
    radial-gradient(circle at 52% 100%, rgba(232, 251, 255, 0.9), transparent 45%),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 46%, #eefcff 100%);
}

/* Premium Pattern Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  pointer-events: none;
}

/* Soft Glass Glow */
.hero-section::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -310px;
  top: 60px;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 188, 212, 0.2), transparent 62%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}

.shape-one {
  width: 310px;
  height: 310px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(135deg, rgba(0, 188, 212, 0.18), rgba(0, 125, 145, 0.08));
  left: -110px;
  top: 120px;
  animation: heroBlobOne 9s ease-in-out infinite;
}

.shape-two {
  width: 470px;
  height: 470px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.75), transparent 24%),
    linear-gradient(135deg, rgba(0, 125, 145, 0.13), rgba(0, 188, 212, 0.08));
  right: -170px;
  bottom: -130px;
  animation: heroBlobTwo 11s ease-in-out infinite;
}

@keyframes heroBlobOne {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(18px, -22px) scale(1.06);
  }
}

@keyframes heroBlobTwo {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 16px) scale(1.04);
  }
}

.hero-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */
.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(232, 251, 255, 0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-badge i {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  background: linear-gradient(135deg, #00cce7, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.28);
}

.hero-content h1 {
  margin-bottom: 24px;
  color: #06283d;
  font-size: 60px;
  line-height: 0.98;
  letter-spacing: -3.2px;
  font-weight: 900;
}

.hero-content h1 span {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #00bcd4 0%, #007d91 48%, #03536b 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-content h1 span::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 13px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(0, 188, 212, 0.16);
}

.hero-content p {
  max-width: 670px;
  margin-bottom: 34px;
  color: #526d7f;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
}

.hero-buttons .btn {
  position: relative;
  min-height: 56px;
  overflow: hidden;
}

.hero-buttons .btn-primary {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-buttons .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-18deg);
  transition: 0.6s ease;
}

.hero-buttons .btn-primary:hover::before {
  left: 120%;
}

.hero-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 40, 61, 0.12);
  color: #06283d;
  box-shadow:
    0 16px 35px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-buttons .btn-outline:hover {
  background: #06283d;
  color: #fff;
  border-color: #06283d;
}

/* STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  gap: 16px;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 252, 255, 0.72));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 18px 46px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.hero-stats div::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  right: -28px;
  top: -28px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
}

.hero-stats div:hover {
  transform: translateY(-7px);
  box-shadow:
    0 24px 60px rgba(6, 40, 61, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: #06283d;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-stats span {
  display: block;
  color: #6b8391;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

/* RIGHT IMAGE AREA */
.hero-image-area {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.hero-image-area::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 188, 212, 0.24), rgba(0, 125, 145, 0.08) 46%, transparent 68%);
  filter: blur(4px);
  z-index: 0;
  animation: pulseGlow 4.5s ease-in-out infinite;
}

.hero-image-area::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 166, 184, 0.28);
  z-index: 0;
  animation: rotateRing 26s linear infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.07);
    opacity: 1;
  }
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

.hero-image-box {
  position: relative;
  z-index: 2;
  width: min(455px, 100%);
  height: 560px;
  padding: 14px;
  border-radius: 46px;
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 251, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.2),
    0 14px 34px rgba(0, 166, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-image-box::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  border-radius: 35px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(330deg, rgba(0, 188, 212, 0.12), transparent 42%);
  pointer-events: none;
}

.hero-image-box::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -24px;
  height: 40px;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.24);
  filter: blur(18px);
  z-index: -1;
}

.hero-image-box img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: 0.6s ease;
}

.hero-image-box:hover img {
  transform: scale(1.06);
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 260px;
  padding: 17px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 253, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 22px 58px rgba(6, 40, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: floatY 4.4s ease-in-out infinite;
}

.floating-card i {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  font-size: 21px;
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.3);
}

.floating-card strong {
  display: block;
  margin-bottom: 2px;
  color: #06283d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.floating-card span {
  display: block;
  color: #718793;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.card-top {
  top: 76px;
  left: -26px;
}

.card-bottom {
  right: -20px;
  bottom: 92px;
  animation-delay: 1.1s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

/* ==============================
   RESPONSIVE HERO
================================= */

@media (max-width: 1200px) {
  .hero-wrapper {
    gap: 45px;
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-image-box {
    width: min(420px, 100%);
    height: 525px;
  }

  .floating-card {
    width: 235px;
  }

  .card-top {
    left: -10px;
  }

  .card-bottom {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 72px 0 95px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-area {
    min-height: 570px;
  }

  .hero-image-box {
    transform: none;
    height: 520px;
  }

  .card-top {
    top: 42px;
    left: 20px;
  }

  .card-bottom {
    right: 20px;
    bottom: 52px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 55px 0 78px;
  }

  .hero-section::before {
    background-size: 34px 34px;
  }

  .shape-one {
    width: 230px;
    height: 230px;
    left: -125px;
    top: 90px;
  }

  .shape-two {
    width: 310px;
    height: 310px;
    right: -165px;
    bottom: -80px;
  }

  .hero-badge,
  .section-tag {
    font-size: 12px;
    padding: 9px 14px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -2px;
    margin-bottom: 18px;
  }

  .hero-content h1 span::after {
    height: 9px;
    bottom: 3px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 26px;
  }

  .hero-buttons {
    gap: 12px;
    margin-bottom: 30px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stats div {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-stats strong {
    font-size: 28px;
  }

  .hero-image-area {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-image-area::before {
    width: 320px;
    height: 320px;
  }

  .hero-image-area::after {
    width: 270px;
    height: 270px;
  }

  .hero-image-box {
    order: 1;
    width: 100%;
    height: 430px;
    border-radius: 34px;
    padding: 10px;
  }

  .hero-image-box img,
  .hero-image-box::before {
    border-radius: 26px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    max-width: 100%;
    animation: none;
    border-radius: 22px;
  }

  .card-bottom {
    order: 3;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 42px 0 66px;
  }

  .hero-content h1 {
    font-size: 39px;
    line-height: 1.04;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-badge {
    max-width: 100%;
    text-align: left;
  }

  .hero-image-box {
    height: 360px;
  }

  .floating-card {
    padding: 14px;
  }

  .floating-card i {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }
}

/* =============================== HERO END =============================== */


/* ==============================
   ULTRA PREMIUM APPOINTMENT STRIP
================================= */

.appointment-strip {
  position: relative;
  z-index: 20;
  margin-top: -72px;
  padding: 0 0 18px;
}

.appointment-strip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42px;
  width: min(920px, 82%);
  height: 90px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0, 188, 212, 0.22);
  filter: blur(45px);
  z-index: -1;
  pointer-events: none;
}

.appointment-box {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 36px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 30px;
  background:
    radial-gradient(circle at 8% 20%, rgba(126, 231, 243, 0.28), transparent 28%),
    radial-gradient(circle at 92% 85%, rgba(0, 188, 212, 0.22), transparent 30%),
    linear-gradient(135deg, #041e2f 0%, #06283d 46%, #07364d 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 35px 90px rgba(6, 40, 61, 0.34),
    0 12px 30px rgba(0, 166, 184, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.appointment-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 35px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(310deg, rgba(0, 188, 212, 0.12), transparent 40%);
  pointer-events: none;
}

.appointment-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -95px;
  top: -120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 22%),
    rgba(0, 188, 212, 0.16);
  pointer-events: none;
}

.strip-info {
  position: relative;
  z-index: 2;
}

.strip-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #9af2fb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2px;
  background: rgba(126, 231, 243, 0.1);
  border: 1px solid rgba(126, 231, 243, 0.18);
}

.strip-info span::before {
  content: "\f0f1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06283d;
  background: linear-gradient(135deg, #ffffff, #7ee7f3);
  font-size: 11px;
}

.strip-info h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.8px;
  max-width: 440px;
}

.quick-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr auto;
  gap: 13px;
  align-items: center;
}

.quick-form input,
.quick-form select {
  width: 100%;
  height: 58px;
  padding: 0 17px;
  border-radius: 18px;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.quick-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.quick-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #9af2fb 50%),
    linear-gradient(135deg, #9af2fb 50%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  background-position:
    calc(100% - 22px) 25px,
    calc(100% - 16px) 25px,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
}

.quick-form select option {
  color: #06283d;
  background: #ffffff;
  font-weight: 700;
}

.quick-form input:focus,
.quick-form select:focus {
  border-color: rgba(126, 231, 243, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.09));
  box-shadow:
    0 0 0 4px rgba(0, 188, 212, 0.13),
    0 16px 34px rgba(0, 188, 212, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.quick-form button {
  position: relative;
  overflow: hidden;
  min-width: 168px;
  height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  color: #06283d;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.1px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.8), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #9af2fb 45%, #00d5f0 100%);
  box-shadow:
    0 18px 34px rgba(0, 188, 212, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: 0.35s ease;
  white-space: nowrap;
}

.quick-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 70%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transition: 0.65s ease;
}

.quick-form button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 46px rgba(0, 188, 212, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quick-form button:hover::before {
  left: 120%;
}

.quick-form button:active {
  transform: translateY(-1px);
}

/* ==============================
   RESPONSIVE APPOINTMENT STRIP
================================= */

@media (max-width: 1180px) {
  .appointment-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .strip-info {
    text-align: center;
  }

  .strip-info h2 {
    max-width: 100%;
  }

  .quick-form {
    grid-template-columns: repeat(4, 1fr);
  }

  .quick-form button {
    min-width: auto;
  }
}

@media (max-width: 991px) {
  .appointment-strip {
    margin-top: -50px;
  }

  .appointment-box {
    padding: 28px;
    border-radius: 30px;
  }

  .appointment-box::before {
    border-radius: 29px;
  }

  .quick-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-form button {
    grid-column: span 2;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .appointment-strip {
    margin-top: -34px;
    padding-bottom: 8px;
  }

  .appointment-strip::before {
    width: 90%;
    height: 70px;
    top: 34px;
    filter: blur(34px);
  }

  .appointment-box {
    padding: 22px;
    border-radius: 26px;
  }

  .appointment-box::before {
    border-radius: 25px;
  }

  .appointment-box::after {
    width: 190px;
    height: 190px;
    right: -95px;
    top: -85px;
  }

  .strip-info span {
    font-size: 12px;
    padding: 7px 12px;
  }

  .strip-info h2 {
    font-size: 23px;
    line-height: 1.25;
  }

  .quick-form {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .quick-form input,
  .quick-form select,
  .quick-form button {
    height: 54px;
    border-radius: 16px;
  }

  .quick-form button {
    grid-column: span 1;
  }
}

@media (max-width: 420px) {
  .appointment-box {
    padding: 18px;
  }

  .strip-info h2 {
    font-size: 21px;
  }

  .quick-form input,
  .quick-form select,
  .quick-form button {
    font-size: 13px;
  }
}

/* ==============================   APPOINTMENT STRIP END =============================== */




/* ==============================
   ULTRA PREMIUM ABOUT SECTION
================================= */

.about-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 188, 212, 0.09), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(0, 125, 145, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6fcfe 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -260px;
  bottom: -250px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  filter: blur(18px);
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

.about-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
}

/* IMAGE SIDE */
.about-image {
  position: relative;
  overflow: visible;
  border-radius: 40px;
  isolation: isolate;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 50px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
  filter: blur(0.2px);
}

.about-image::after {
  content: "";
  position: absolute;
  width: 76%;
  height: 60px;
  left: 12%;
  bottom: -28px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.23);
  filter: blur(22px);
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 38px;
  border: 12px solid rgba(255, 255, 255, 0.84);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
  transition: 0.65s ease;
}

.about-image:hover img {
  transform: translateY(-6px) scale(1.015);
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  right: -18px;
  bottom: 34px;
  z-index: 3;
  width: 185px;
  padding: 24px 22px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: aboutBadgeFloat 4.5s ease-in-out infinite;
}

.experience-badge::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: -36px;
  top: -34px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
}

.experience-badge::after {
  content: "\f5c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(0, 166, 184, 0.12);
  font-size: 42px;
}

.experience-badge strong {
  position: relative;
  z-index: 2;
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #00bcd4, #007d91);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 48px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.experience-badge span {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 7px;
  color: #06283d;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

@keyframes aboutBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* CONTENT SIDE */
.about-section .section-content {
  position: relative;
}

.about-section .section-content::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  right: 10px;
  top: -24px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  pointer-events: none;
}

.about-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 251, 255, 0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow: 0 12px 28px rgba(0, 166, 184, 0.08);
}

.about-section .section-tag::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.about-section .section-content h2 {
  max-width: 680px;
  margin-bottom: 20px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.about-section .section-content p {
  max-width: 680px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* ABOUT POINTS */
.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 32px 0 34px;
}

.about-points div {
  position: relative;
  overflow: hidden;
  min-height: 68px;
  padding: 18px 18px 18px 58px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  color: #06283d;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(242, 252, 255, 0.82));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.35s ease;
}

.about-points div::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  right: -34px;
  top: -34px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.1);
  transition: 0.35s ease;
}

.about-points div:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-points div:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.about-points i {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 10px 22px rgba(0, 166, 184, 0.25);
}

/* ABOUT BUTTON */
.about-section .btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 900;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.about-section .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: 0.65s ease;
}

.about-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 50px rgba(0, 166, 184, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-section .btn-primary:hover::before {
  left: 120%;
}

/* ==============================
   RESPONSIVE ABOUT SECTION
================================= */

@media (max-width: 1100px) {
  .about-wrapper {
    gap: 48px;
    grid-template-columns: minmax(320px, 0.9fr) 1fr;
  }

  .about-image img {
    height: 500px;
  }

  .experience-badge {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 82px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-image {
    max-width: 680px;
    margin: 0 auto;
  }

  .about-section .section-content {
    text-align: center;
  }

  .about-section .section-content h2,
  .about-section .section-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-points {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 68px 0;
  }

  .about-section::after {
    background-size: 34px 34px;
  }

  .about-wrapper {
    gap: 42px;
  }

  .about-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .about-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .experience-badge {
    right: 16px;
    bottom: 18px;
    width: 156px;
    padding: 18px;
    border-radius: 24px;
    animation: none;
  }

  .experience-badge strong {
    font-size: 38px;
  }

  .experience-badge span {
    font-size: 12.5px;
  }

  .about-section .section-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .about-section .section-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 30px;
  }

  .about-points div {
    min-height: 62px;
    padding: 16px 16px 16px 56px;
    border-radius: 19px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 58px 0;
  }

  .about-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .experience-badge {
    width: 138px;
    right: 12px;
    bottom: 14px;
    padding: 15px;
    border-radius: 20px;
  }

  .experience-badge strong {
    font-size: 34px;
  }

  .experience-badge span {
    font-size: 11.5px;
  }

  .about-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .about-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .about-section .section-content h2 {
    font-size: 30px;
  }

  .about-section .section-content p {
    font-size: 15px;
  }

  .about-section .btn-primary {
    width: 100%;
  }
}

/* ============================== ABOUT SECTION END =============================== */


/* ==============================
   ULTRA PREMIUM DENTIST HIGHLIGHT
================================= */

.dentist-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.10), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%);
}

.dentist-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -280px;
  top: -250px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  filter: blur(18px);
  pointer-events: none;
}

.dentist-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.dentist-card {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 42px;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 188, 212, 0.12), transparent 28%),
    radial-gradient(circle at 94% 88%, rgba(0, 125, 145, 0.09), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 253, 0.9));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.14),
    0 12px 34px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.dentist-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 43px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 35%),
    linear-gradient(310deg, rgba(0, 188, 212, 0.10), transparent 42%);
  z-index: -1;
  pointer-events: none;
}

.dentist-card::after {
  content: "\f5c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 42px;
  top: 36px;
  color: rgba(0, 166, 184, 0.055);
  font-size: 130px;
  line-height: 1;
  pointer-events: none;
}

/* PHOTO */
.dentist-photo {
  position: relative;
  border-radius: 34px;
  isolation: isolate;
}

.dentist-photo::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -2;
  border-radius: 44px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.28), rgba(0, 125, 145, 0.10));
}

.dentist-photo::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -25px;
  height: 42px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.25);
  filter: blur(20px);
}

.dentist-photo img {
  width: 100%;
  height: 455px;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
  border: 10px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 26px 70px rgba(6, 40, 61, 0.18),
    0 10px 26px rgba(0, 166, 184, 0.10);
  transition: 0.65s ease;
}

.dentist-photo:hover img {
  transform: translateY(-6px) scale(1.018);
}

/* INFO */
.dentist-info {
  position: relative;
  z-index: 2;
}

.dentist-info .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow: 0 12px 28px rgba(0, 166, 184, 0.08);
}

.dentist-info .section-tag::before {
  content: "\f0f0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.dentist-info h2 {
  margin: 0;
  color: #06283d;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.dentist-info h4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #007d91;
  font-size: 15px;
  font-weight: 900;
  background: rgba(0, 166, 184, 0.08);
  border: 1px solid rgba(0, 166, 184, 0.13);
}

.dentist-info h4::before {
  content: "\f19d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00a6b8;
}

.dentist-info p {
  max-width: 720px;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

/* META */
.doctor-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 32px;
}

.doctor-meta div {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 42px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.doctor-meta div::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  right: -34px;
  top: -34px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  transition: 0.35s ease;
}

.doctor-meta div::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  opacity: 0;
  transition: 0.35s ease;
}

.doctor-meta div:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.doctor-meta div:hover::before {
  transform: scale(1.22);
  background: rgba(0, 188, 212, 0.16);
}

.doctor-meta div:hover::after {
  opacity: 1;
}

.doctor-meta strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 8px;
  color: #06283d;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.doctor-meta span {
  position: relative;
  z-index: 2;
  display: block;
  color: #657d8c;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

/* ACTIONS */
.dentist-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.dentist-actions .btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 900;
}

.dentist-actions .btn-outline {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  color: #06283d;
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dentist-actions .btn-outline:hover {
  background: #06283d;
  color: #ffffff;
  border-color: #06283d;
  transform: translateY(-3px);
}

.dentist-actions .btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.dentist-actions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: 0.65s ease;
}

.dentist-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 50px rgba(0, 166, 184, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.dentist-actions .btn-primary:hover::before {
  left: 120%;
}

/* ==============================
   RESPONSIVE DENTIST SECTION
================================= */

@media (max-width: 1100px) {
  .dentist-card {
    grid-template-columns: 340px 1fr;
    gap: 38px;
    padding: 34px;
  }

  .dentist-photo img {
    height: 430px;
  }
}

@media (max-width: 991px) {
  .dentist-section {
    padding: 82px 0;
  }

  .dentist-card {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 760px;
  }

  .dentist-photo {
    max-width: 480px;
    margin: 0 auto;
  }

  .dentist-info {
    text-align: center;
  }

  .dentist-info p {
    margin-left: auto;
    margin-right: auto;
  }

  .doctor-meta {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .dentist-actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .dentist-section {
    padding: 68px 0;
  }

  .dentist-section::after {
    background-size: 34px 34px;
  }

  .dentist-card {
    padding: 24px;
    border-radius: 32px;
    gap: 34px;
  }

  .dentist-card::before {
    border-radius: 31px;
  }

  .dentist-card::after {
    right: 18px;
    top: 18px;
    font-size: 86px;
  }

  .dentist-photo::before {
    inset: -9px;
    border-radius: 36px;
  }

  .dentist-photo img {
    height: 390px;
    border-width: 8px;
    border-radius: 27px;
  }

  .dentist-info .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .dentist-info .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .dentist-info h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .dentist-info h4 {
    font-size: 13px;
    margin: 10px 0 16px;
  }

  .dentist-info p {
    font-size: 16px;
    line-height: 1.75;
  }

  .doctor-meta {
    grid-template-columns: 1fr;
    gap: 13px;
    margin: 26px 0 28px;
  }

  .doctor-meta div {
    min-height: auto;
    padding: 19px;
    text-align: left;
  }

  .dentist-actions {
    flex-direction: column;
  }

  .dentist-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .dentist-section {
    padding: 58px 0;
  }

  .dentist-card {
    padding: 18px;
    border-radius: 28px;
  }

  .dentist-card::before {
    border-radius: 27px;
  }

  .dentist-photo img {
    height: 320px;
    border-radius: 23px;
    border-width: 7px;
  }

  .dentist-info h2 {
    font-size: 30px;
  }

  .dentist-info h4 {
    border-radius: 18px;
    line-height: 1.4;
  }

  .dentist-info p {
    font-size: 15px;
  }

  .doctor-meta strong {
    font-size: 15px;
  }

  .doctor-meta span {
    font-size: 13px;
  }
}

/* ============================== DENTIST END ============================== */


/* ============================== BEFORE AFTER START ============================== */



/* ==============================
   ULTRA PREMIUM BEFORE AFTER
================================= */

.before-after-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.before-after-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.before-after-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.before-after-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.before-after-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.before-after-section .container {
  position: relative;
  z-index: 2;
}

/* HEADING */
.before-after-section .section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
}

.before-after-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow: 0 12px 28px rgba(0, 166, 184, 0.08);
}

.before-after-section .section-tag::before {
  content: "\f5c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.before-after-section .section-heading h2 {
  margin-bottom: 16px;
  color: #06283d;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.before-after-section .section-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

/* GRID */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* CARD */
.before-after-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.9));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
}

.before-after-card::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -66px;
  top: -66px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  transition: 0.42s ease;
  z-index: 1;
}

.before-after-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
  z-index: 3;
}

.before-after-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.before-after-card:hover::before {
  transform: scale(1.35);
  background: rgba(0, 188, 212, 0.16);
}

.before-after-card:hover::after {
  transform: scaleX(1);
}

/* IMAGES */
.ba-images {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 12px;
}

.ba-image-box {
  position: relative;
  overflow: hidden;
  height: 245px;
  border-radius: 24px;
  background: #e8fbff;
}

.ba-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 40, 61, 0.05), rgba(6, 40, 61, 0.28));
  pointer-events: none;
}

.ba-image-box span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.2px;
  background: rgba(6, 40, 61, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ba-image-box:nth-child(2) span {
  background:
    linear-gradient(135deg, rgba(0, 213, 240, 0.9), rgba(0, 125, 145, 0.9));
}

.ba-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.65s ease;
}

.before-after-card:hover .ba-image-box img {
  transform: scale(1.07);
}

/* CONTENT */
.ba-content {
  position: relative;
  z-index: 2;
  padding: 14px 26px 30px;
}

.ba-content h3 {
  margin: 0 0 10px;
  color: #06283d;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.ba-content p {
  margin: 0;
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 500;
}

.ba-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 11px 15px;
  border-radius: 999px;
  color: #007d91;
  font-size: 14px;
  font-weight: 900;
  background: rgba(0, 166, 184, 0.08);
  border: 1px solid rgba(0, 166, 184, 0.12);
  text-decoration: none;
  transition: 0.35s ease;
}

.ba-content a i {
  font-size: 12px;
  transition: 0.35s ease;
}

.ba-content a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.25);
}

.ba-content a:hover i {
  transform: translateX(4px);
}

/* ==============================
   RESPONSIVE BEFORE AFTER
================================= */

@media (max-width: 1200px) {
  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-card:last-child {
    grid-column: span 2;
  }

  .before-after-card:last-child .ba-image-box {
    height: 280px;
  }
}

@media (max-width: 991px) {
  .before-after-section {
    padding: 82px 0;
  }

  .before-after-section .section-heading {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .before-after-section {
    padding: 68px 0;
  }

  .before-after-section::before {
    background-size: 34px 34px;
  }

  .before-after-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .before-after-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .before-after-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .before-after-section .section-heading p {
    font-size: 16px;
    line-height: 1.75;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .before-after-card,
  .before-after-card:last-child {
    grid-column: span 1;
  }

  .before-after-card {
    border-radius: 28px;
  }

  .ba-images {
    gap: 8px;
    padding: 10px;
  }

  .ba-image-box,
  .before-after-card:last-child .ba-image-box {
    height: 230px;
    border-radius: 22px;
  }

  .ba-content {
    padding: 12px 22px 26px;
  }

  .ba-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .before-after-section {
    padding: 58px 0;
  }

  .before-after-section .section-heading {
    margin-bottom: 34px;
  }

  .before-after-section .section-heading h2 {
    font-size: 30px;
  }

  .ba-images {
    grid-template-columns: 1fr;
  }

  .ba-image-box,
  .before-after-card:last-child .ba-image-box {
    height: 220px;
  }

  .ba-content a {
    width: 100%;
    justify-content: center;
  }
}

/* ============================== BEFORE AFTER END ============================== */


/* ==============================   ULTRA PREMIUM SERVICES SECTION ============================== */


.services-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 188, 212, 0.10), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(0, 125, 145, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -300px;
  top: 120px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  filter: blur(18px);
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

/* SECTION HEADING */
.services-section .section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
}

.services-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow: 0 12px 28px rgba(0, 166, 184, 0.08);
}

.services-section .section-tag::before {
  content: "\f5c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.services-section .section-heading h2 {
  margin-bottom: 16px;
  color: #06283d;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.services-section .section-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

/* SERVICE CARD */
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  right: -62px;
  top: -62px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  transition: 0.42s ease;
  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
  z-index: 3;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.service-card:hover::before {
  transform: scale(1.35);
  background: rgba(0, 188, 212, 0.16);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* SERVICE IMAGE */
.service-img {
  position: relative;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: 26px;
  background: #e8fbff;
}

.service-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 45%, rgba(6, 40, 61, 0.22)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 36%);
  pointer-events: none;
}

.service-img img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  object-position: center;
  transition: 0.65s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* SERVICE ICON */
.service-icon {
  position: relative;
  z-index: 4;
  width: 64px;
  height: 64px;
  margin: -32px 24px 20px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 16px 32px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: 0.42s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-4deg);
  box-shadow:
    0 22px 42px rgba(0, 166, 184, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* CARD TEXT */
.service-card h3 {
  position: relative;
  z-index: 3;
  margin: 0 0 10px;
  padding: 0 24px;
  color: #06283d;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.service-card p {
  position: relative;
  z-index: 3;
  min-height: 54px;
  margin: 0;
  padding: 0 24px;
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 500;
}

/* READ MORE */
.service-card a {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 20px 24px 26px;
  padding: 11px 15px;
  border-radius: 999px;
  color: #007d91;
  font-size: 14px;
  font-weight: 900;
  background: rgba(0, 166, 184, 0.08);
  border: 1px solid rgba(0, 166, 184, 0.12);
  transition: 0.35s ease;
}

.service-card a i {
  font-size: 12px;
  transition: 0.35s ease;
}

.service-card a:hover {
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.25);
}

.service-card a:hover i {
  transform: translateX(4px);
}

/* VIEW ALL BUTTON */
.services-section .mt-40 {
  margin-top: 46px;
}

.services-section .btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 900;
  color: #fff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.services-section .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: 0.65s ease;
}

.services-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 50px rgba(0, 166, 184, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-section .btn-primary:hover::before {
  left: 120%;
}

/* ==============================
   RESPONSIVE SERVICES SECTION
================================= */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-img img {
    height: 230px;
  }
}

@media (max-width: 991px) {
  .services-section {
    padding: 82px 0;
  }

  .services-section .section-heading {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 68px 0;
  }

  .services-section::after {
    background-size: 34px 34px;
  }

  .services-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .services-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .services-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .services-section .section-heading p {
    font-size: 16px;
    line-height: 1.75;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    border-radius: 28px;
  }

  .service-img {
    border-radius: 22px;
    margin: 10px 10px 0;
  }

  .service-img img {
    height: 230px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    font-size: 22px;
    margin: -29px 22px 18px;
  }

  .service-card h3 {
    font-size: 20px;
    padding: 0 22px;
  }

  .service-card p {
    min-height: auto;
    padding: 0 22px;
  }

  .service-card a {
    margin: 18px 22px 24px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 58px 0;
  }

  .services-section .section-heading {
    margin-bottom: 34px;
  }

  .services-section .section-heading h2 {
    font-size: 30px;
  }

  .services-section .section-heading p {
    font-size: 15px;
  }

  .service-img img {
    height: 205px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-card p {
    font-size: 14px;
  }

  .services-section .btn-primary {
    width: 100%;
  }
}


/* ============================== Services SECTION END ================================ */



  /* ==============================
   SERVICE DETAIL PAGE HERO
================================= */

.service-detail-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 105px 0 115px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(0, 125, 145, 0.14), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(232, 251, 255, 0.95), transparent 45%),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 48%, #eefcff 100%);
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 92%);
  pointer-events: none;
}

.service-detail-hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.service-detail-hero-shape.shape-one {
  width: 330px;
  height: 330px;
  left: -135px;
  top: 80px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.86), transparent 26%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.20), rgba(0, 125, 145, 0.08));
  filter: blur(4px);
}

.service-detail-hero-shape.shape-two {
  width: 470px;
  height: 470px;
  right: -205px;
  bottom: -190px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.78), transparent 24%),
    linear-gradient(135deg, rgba(0, 125, 145, 0.13), rgba(0, 188, 212, 0.08));
  filter: blur(5px);
}

.service-detail-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 72px;
  align-items: center;
}

.service-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232,251,255,0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 14px 32px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.service-detail-tag i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.service-detail-hero-content h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #06283d;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: -2.8px;
  font-weight: 950;
}

.service-detail-hero-content p {
  max-width: 700px;
  color: #587382;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 32px;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.service-detail-actions .btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 950;
}

.service-detail-actions .btn-outline {
  color: #06283d;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

.service-detail-actions .btn-outline:hover {
  color: #ffffff;
  background: #06283d;
}

.service-detail-hero-image {
  position: relative;
  isolation: isolate;
}

.service-detail-hero-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.service-detail-hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 42px;
  border: 12px solid rgba(255,255,255,0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
}

.service-detail-float-card {
  position: absolute;
  left: -18px;
  bottom: 34px;
  z-index: 4;
  width: 245px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.95), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(240,252,255,0.86));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  animation: serviceDetailFloat 4.5s ease-in-out infinite;
}

.service-detail-float-card i {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 22px;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.service-detail-float-card strong {
  display: block;
  color: #06283d;
  font-size: 15px;
  font-weight: 950;
}

.service-detail-float-card span {
  display: block;
  color: #607989;
  font-size: 12px;
  font-weight: 850;
}

@keyframes serviceDetailFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


/* ==============================
   COMMON SERVICE DETAIL SECTIONS
================================= */

.service-overview-section,
.service-benefits-section,
.service-procedure-section,
.service-needed-section,
.service-aftercare-section,
.service-faq-section,
.related-services-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.service-overview-section,
.service-needed-section,
.related-services-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.service-benefits-section,
.service-procedure-section,
.service-aftercare-section,
.service-faq-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.service-overview-section::before,
.service-benefits-section::before,
.service-procedure-section::before,
.service-needed-section::before,
.service-aftercare-section::before,
.service-faq-section::before,
.related-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.74), transparent);
  pointer-events: none;
}

.service-overview-section .container,
.service-benefits-section .container,
.service-procedure-section .container,
.service-needed-section .container,
.service-aftercare-section .container,
.service-faq-section .container,
.related-services-section .container {
  position: relative;
  z-index: 2;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: 44px;
  align-items: start;
}

.service-overview-content h2,
.procedure-heading h2,
.service-needed-content h2,
.service-faq-left h2,
.service-benefits-section .section-heading h2,
.service-aftercare-section .section-heading h2,
.related-services-section .section-heading h2 {
  margin: 0 0 18px;
  color: #06283d;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.service-overview-content p,
.procedure-heading p,
.service-needed-content p,
.service-faq-left p,
.service-benefits-section .section-heading p,
.service-aftercare-section .section-heading p {
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 16px;
}

.service-overview-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.service-overview-points div,
.service-needed-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  border-radius: 22px;
  color: #06283d;
  font-size: 15px;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(242,252,255,0.84));
  border: 1px solid rgba(6,40,61,0.08);
  box-shadow: 0 16px 40px rgba(6,40,61,0.07);
}

.service-overview-points i,
.service-needed-list i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.service-quick-card {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,0.95), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,252,255,0.90));
  border: 1px solid rgba(6,40,61,0.08);
  box-shadow: 0 28px 74px rgba(6,40,61,0.12);
}

.quick-card-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 26px;
  color: #fff;
  font-size: 28px;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.service-quick-card h3 {
  color: #06283d;
  font-size: 25px;
  font-weight: 950;
  margin-bottom: 20px;
}

.service-quick-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.service-quick-card li {
  padding: 16px;
  border-radius: 20px;
  background: rgba(0,166,184,0.07);
  border: 1px solid rgba(0,166,184,0.10);
}

.service-quick-card span {
  display: block;
  color: #617989;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 5px;
}

.service-quick-card strong {
  display: block;
  color: #06283d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 950;
}

.service-quick-card .btn {
  width: 100%;
}


/* BENEFITS / AFTERCARE / RELATED CARDS */
.service-benefits-grid,
.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-benefit-card,
.aftercare-card,
.related-service-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 32px 28px;
  border-radius: 34px;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,252,255,0.90));
  border: 1px solid rgba(6,40,61,0.08);
  box-shadow: 0 20px 52px rgba(6,40,61,0.08);
  transition: 0.42s ease;
}

.service-benefit-card:hover,
.aftercare-card:hover,
.related-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 82px rgba(6,40,61,0.14);
}

.service-benefit-card i,
.aftercare-card i,
.related-service-card i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 24px;
  color: #fff;
  font-size: 26px;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0,166,184,0.26);
}

.service-benefit-card h3,
.aftercare-card h3,
.related-service-card h3 {
  color: #06283d;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 10px;
}

.service-benefit-card p,
.aftercare-card p,
.related-service-card p {
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}


/* PROCEDURE */
.procedure-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.procedure-list {
  display: grid;
  gap: 18px;
}

.procedure-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(6,40,61,0.08);
  box-shadow: 0 16px 40px rgba(6,40,61,0.07);
}

.procedure-item > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.procedure-item h3 {
  color: #06283d;
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 8px;
}

.procedure-item p {
  color: #617989;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}


/* WHEN NEEDED */
.service-needed-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.service-needed-image {
  position: relative;
  isolation: isolate;
}

.service-needed-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.service-needed-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255,255,255,0.86);
  box-shadow: 0 34px 90px rgba(6,40,61,0.18);
}

.needed-float-card {
  position: absolute;
  right: -18px;
  bottom: 34px;
  width: 245px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 24px 64px rgba(6,40,61,0.22);
  backdrop-filter: blur(16px);
}

.needed-float-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.needed-float-card strong {
  display: block;
  color: #06283d;
  font-weight: 950;
}

.needed-float-card span {
  color: #607989;
  font-size: 12px;
  font-weight: 850;
}

.service-needed-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}


/* SERVICE FAQ */
.service-faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.service-faq-list {
  display: grid;
  gap: 16px;
}

.service-faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,252,255,0.90));
  border: 1px solid rgba(6,40,61,0.08);
  box-shadow: 0 16px 40px rgba(6,40,61,0.07);
}

.service-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #06283d;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 950;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  transition: 0.35s ease;
}

.service-faq-item[open] summary i {
  transform: rotate(45deg);
}

.service-faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: #587382;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


/* ==============================
   RESPONSIVE SERVICE DETAIL
================================= */

@media (max-width: 1200px) {
  .service-benefits-grid,
  .aftercare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .service-detail-hero-grid,
  .service-overview-grid,
  .procedure-wrapper,
  .service-needed-grid,
  .service-faq-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-hero-content,
  .procedure-heading,
  .service-needed-content,
  .service-faq-left {
    text-align: center;
  }

  .service-detail-hero-content p,
  .procedure-heading p,
  .service-needed-content p,
  .service-faq-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .service-detail-actions {
    justify-content: center;
  }

  .service-detail-hero-image,
  .service-needed-image {
    max-width: 720px;
    margin: 0 auto;
  }

  .service-quick-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 991px) {
  .service-detail-hero,
  .service-overview-section,
  .service-benefits-section,
  .service-procedure-section,
  .service-needed-section,
  .service-aftercare-section,
  .service-faq-section,
  .related-services-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .service-detail-hero,
  .service-overview-section,
  .service-benefits-section,
  .service-procedure-section,
  .service-needed-section,
  .service-aftercare-section,
  .service-faq-section,
  .related-services-section {
    padding: 68px 0;
  }

  .service-detail-hero::before,
  .service-overview-section::before,
  .service-benefits-section::before,
  .service-procedure-section::before,
  .service-needed-section::before,
  .service-aftercare-section::before,
  .service-faq-section::before,
  .related-services-section::before {
    background-size: 34px 34px;
  }

  .service-detail-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .service-detail-tag i {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .service-detail-hero-content h1 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -1.5px;
  }

  .service-detail-hero-content p,
  .service-overview-content p,
  .procedure-heading p,
  .service-needed-content p,
  .service-faq-left p {
    font-size: 16px;
    line-height: 1.78;
  }

  .service-detail-actions {
    flex-direction: column;
  }

  .service-detail-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .service-detail-hero-image::before,
  .service-needed-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .service-detail-hero-image img,
  .service-needed-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .service-detail-float-card,
  .needed-float-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
    animation: none;
  }

  .service-overview-content h2,
  .procedure-heading h2,
  .service-needed-content h2,
  .service-faq-left h2,
  .service-benefits-section .section-heading h2,
  .service-aftercare-section .section-heading h2,
  .related-services-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .service-overview-points,
  .service-benefits-grid,
  .aftercare-grid,
  .related-services-grid {
    grid-template-columns: 1fr;
  }

  .service-quick-card {
    padding: 26px 22px;
    border-radius: 30px;
  }

  .procedure-item {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .service-needed-list li {
    text-align: left;
  }

  .service-faq-item summary {
    padding: 19px 18px;
    font-size: 15px;
  }

  .service-faq-item p {
    padding: 0 18px 20px;
  }
}

@media (max-width: 480px) {
  .service-detail-hero,
  .service-overview-section,
  .service-benefits-section,
  .service-procedure-section,
  .service-needed-section,
  .service-aftercare-section,
  .service-faq-section,
  .related-services-section {
    padding: 58px 0;
  }

  .service-detail-hero-content h1,
  .service-overview-content h2,
  .procedure-heading h2,
  .service-needed-content h2,
  .service-faq-left h2,
  .service-benefits-section .section-heading h2,
  .service-aftercare-section .section-heading h2,
  .related-services-section .section-heading h2 {
    font-size: 30px;
  }

  .service-detail-hero-content p,
  .service-overview-content p,
  .procedure-heading p,
  .service-needed-content p,
  .service-faq-left p {
    font-size: 15px;
  }

  .service-detail-hero-image img,
  .service-needed-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .service-benefit-card,
  .aftercare-card,
  .related-service-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 26px;
  }

  .service-benefit-card i,
  .aftercare-card i,
  .related-service-card i {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 22px;
  }

  .service-overview-points div,
  .service-needed-list li {
    padding: 15px;
    border-radius: 18px;
  }
}

/* ============================== SERVICE DETAIL END SECTION================================= */

  

/* ==============================
   ULTRA PREMIUM WHY CHOOSE SECTION
================================= */

.why-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 188, 212, 0.13), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
}

.why-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -320px;
  top: 80px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  filter: blur(18px);
  pointer-events: none;
}

.why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

/* SECTION HEADING */
.why-section .section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
}

.why-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow: 0 12px 28px rgba(0, 166, 184, 0.08);
}

.why-section .section-tag::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.why-section .section-heading h2 {
  margin-bottom: 0;
  color: #06283d;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* WHY CARD */
.why-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 32px 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.9));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
  isolation: isolate;
}

.why-card::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -65px;
  top: -65px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  z-index: -1;
  transition: 0.42s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
}

.why-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.why-card:hover::before {
  transform: scale(1.35);
  background: rgba(0, 188, 212, 0.16);
}

.why-card:hover::after {
  transform: scaleX(1);
}

/* ICON */
.why-card>i {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 27px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 16px 32px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: 0.42s ease;
}

.why-card>i::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  background: rgba(0, 188, 212, 0.11);
  z-index: -1;
}

.why-card:hover>i {
  transform: translateY(-4px) rotate(-4deg);
  box-shadow:
    0 22px 42px rgba(0, 166, 184, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* TEXT */
.why-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 11px;
  color: #06283d;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.why-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 500;
}

/* DIFFERENT ICON ACCENT */
.why-card:nth-child(2)>i {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #26e0ff 0%, #00a6b8 50%, #026c80 100%);
}

.why-card:nth-child(3)>i {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #1ed6c8 0%, #00a6b8 50%, #007d91 100%);
}

.why-card:nth-child(4)>i {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #009eb5 50%, #06556c 100%);
}

/* ==============================
   RESPONSIVE WHY CHOOSE SECTION
================================= */

@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card {
    min-height: 230px;
  }
}

@media (max-width: 991px) {
  .why-section {
    padding: 82px 0;
  }

  .why-section .section-heading {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .why-section {
    padding: 68px 0;
  }

  .why-section::after {
    background-size: 34px 34px;
  }

  .why-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .why-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .why-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    min-height: auto;
    padding: 26px 24px;
    border-radius: 28px;
  }

  .why-card>i {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    font-size: 23px;
    margin-bottom: 18px;
  }

  .why-card>i::after {
    border-radius: 24px;
  }

  .why-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 58px 0;
  }

  .why-section .section-heading {
    margin-bottom: 34px;
  }

  .why-section .section-heading h2 {
    font-size: 30px;
  }

  .why-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .why-card p {
    font-size: 14px;
  }
}



/* ==============================  WHY SECTION END ================================ */


/* ==============================
   ULTRA PREMIUM TESTIMONIAL SECTION
================================= */

.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.10), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.testimonial-section::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  left: -300px;
  top: 90px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  filter: blur(18px);
  pointer-events: none;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.testimonial-section .container {
  position: relative;
  z-index: 2;
}

/* HEADING */
.testimonial-section .section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
}

.testimonial-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow: 0 12px 28px rgba(0, 166, 184, 0.08);
}

.testimonial-section .section-tag::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.testimonial-section .section-heading h2 {
  margin-bottom: 0;
  color: #06283d;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* CARD */
.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 34px 30px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
  isolation: isolate;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 24px;
  top: 12px;
  z-index: -1;
  color: rgba(0, 166, 184, 0.08);
  font-size: 130px;
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 900;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

/* STARS */
.stars {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #ffc107;
  background: rgba(255, 193, 7, 0.10);
  border: 1px solid rgba(255, 193, 7, 0.18);
}

.stars i {
  font-size: 14px;
  filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.22));
}

/* REVIEW TEXT */
.testimonial-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: #526c7d;
  font-size: 15.5px;
  line-height: 1.85;
  font-weight: 500;
}

/* PATIENT NAME */
.testimonial-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 5px;
  color: #06283d;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.3px;
}

/* PATIENT TYPE */
.testimonial-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #007d91;
  font-size: 13px;
  font-weight: 900;
}

.testimonial-card span::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

/* CARD SMALL DECOR */
.testimonial-card .stars::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  right: -165px;
  top: -40px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  pointer-events: none;
  transition: 0.42s ease;
}

.testimonial-card:hover .stars::after {
  transform: scale(1.45);
  background: rgba(0, 188, 212, 0.18);
}

/* ==============================
   RESPONSIVE TESTIMONIAL SECTION
================================= */

@media (max-width: 1100px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .testimonial-section {
    padding: 82px 0;
  }

  .testimonial-section .section-heading {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 68px 0;
  }

  .testimonial-section::after {
    background-size: 34px 34px;
  }

  .testimonial-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .testimonial-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .testimonial-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card,
  .testimonial-card:last-child {
    grid-column: span 1;
  }

  .testimonial-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 28px;
  }

  .testimonial-card::before {
    right: 18px;
    top: 8px;
    font-size: 96px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.78;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 58px 0;
  }

  .testimonial-section .section-heading {
    margin-bottom: 34px;
  }

  .testimonial-section .section-heading h2 {
    font-size: 30px;
  }

  .testimonial-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .stars {
    padding: 8px 11px;
    gap: 4px;
  }

  .stars i {
    font-size: 13px;
  }

  .testimonial-card h4 {
    font-size: 18px;
  }

  .testimonial-card span {
    font-size: 12.5px;
  }
}

/* ==============================  TESTIMONIAL SECTION END ================================ */


/* ==============================
   ULTRA PREMIUM TIMING + CONTACT
================================= */

.timing-contact-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.11), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.08), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.timing-contact-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -330px;
  top: 60px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  filter: blur(18px);
  pointer-events: none;
}

.timing-contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.timing-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
}

/* COMMON CARD */
.timing-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.9));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  isolation: isolate;
}

.timing-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -78px;
  top: -78px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  z-index: -1;
}

.timing-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

/* TAG */
.timing-contact-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow: 0 12px 28px rgba(0, 166, 184, 0.08);
}

.timing-card .section-tag::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.contact-card .section-tag::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

/* HEADINGS */
.timing-card h2,
.contact-card h2 {
  margin: 0 0 24px;
  color: #06283d;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: 950;
}

/* TIMING LIST */
.timing-list {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
}

.timing-list li {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(6, 40, 61, 0.07);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(242, 252, 255, 0.75));
  box-shadow:
    0 12px 32px rgba(6, 40, 61, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.35s ease;
}

.timing-list li::before {
  content: "";
  width: 8px;
  align-self: stretch;
  border-radius: 999px;
  background: linear-gradient(180deg, #00d5f0, #007d91);
  flex: 0 0 auto;
}

.timing-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 20px 46px rgba(6, 40, 61, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.timing-list span {
  color: #617989;
  font-size: 14.5px;
  font-weight: 800;
}

.timing-list strong {
  color: #06283d;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
  text-align: right;
}

/* FORM */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 40, 61, 0.09);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 253, 0.94));
  border-radius: 20px;
  padding: 16px 17px;
  outline: none;
  color: #06283d;
  font-size: 15px;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(6, 40, 61, 0.045);
  transition: 0.3s ease;
}

.contact-form input {
  height: 58px;
}

.contact-form textarea {
  grid-column: span 2;
  min-height: 145px;
  resize: vertical;
  line-height: 1.7;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8aa0ad;
  font-weight: 700;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 166, 184, 0.45);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(0, 188, 212, 0.11),
    0 16px 34px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-form button {
  position: relative;
  overflow: hidden;
  width: max-content;
  min-height: 56px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.contact-form button::before,
.timing-card .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: 0.65s ease;
}

.contact-form button:hover,
.timing-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 50px rgba(0, 166, 184, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-form button:hover::before,
.timing-card .btn-primary:hover::before {
  left: 120%;
}

/* TIMING BUTTON */
.timing-card .btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 15px 30px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* ==============================
   RESPONSIVE TIMING + CONTACT
================================= */

@media (max-width: 1100px) {
  .timing-contact-grid {
    grid-template-columns: 1fr;
  }

  .timing-card,
  .contact-card {
    padding: 34px;
  }
}

@media (max-width: 991px) {
  .timing-contact-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .timing-contact-section {
    padding: 68px 0;
  }

  .timing-contact-section::after {
    background-size: 34px 34px;
  }

  .timing-card,
  .contact-card {
    padding: 26px 24px;
    border-radius: 30px;
  }

  .timing-contact-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .timing-card .section-tag::before,
  .contact-card .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .timing-card h2,
  .contact-card h2 {
    font-size: clamp(29px, 8vw, 40px);
    letter-spacing: -1.2px;
  }

  .timing-list li {
    align-items: flex-start;
    padding: 16px;
  }

  .timing-list span,
  .timing-list strong {
    font-size: 14px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form textarea {
    grid-column: span 1;
  }

  .contact-form button,
  .timing-card .btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .timing-contact-section {
    padding: 58px 0;
  }

  .timing-card,
  .contact-card {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .timing-card h2,
  .contact-card h2 {
    font-size: 29px;
  }

  .timing-list {
    margin: 24px 0 28px;
  }

  .timing-list li {
    flex-direction: column;
    gap: 6px;
  }

  .timing-list strong {
    text-align: left;
  }

  .contact-form input {
    height: 54px;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 16px;
    font-size: 14px;
  }
}

/* =============== TIMING + CONTACT SECTION END ================== */


/* ==============================
   ULTRA PREMIUM MAP SECTION
================================= */

.map-section {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 188, 212, 0.10), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(0, 125, 145, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.map-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -290px;
  bottom: -270px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  filter: blur(18px);
  pointer-events: none;
}

.map-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.map-section .container {
  position: relative;
  z-index: 2;
}

.map-box {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.9));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.map-box::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border-radius: 32px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 166, 184, 0.06);
}

.map-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 40, 61, 0.40) 0%, rgba(6, 40, 61, 0.18) 34%, transparent 66%),
    linear-gradient(180deg, transparent 58%, rgba(6, 40, 61, 0.18) 100%);
}

.map-box iframe {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  filter: saturate(0.88) contrast(1.03) brightness(1.02);
}

/* MAP INFO CARD */
.map-info {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 4;
  width: min(390px, calc(100% - 68px));
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.95), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.map-info::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(0, 166, 184, 0.10);
  font-size: 72px;
  line-height: 1;
  pointer-events: none;
}

.map-info::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.map-info h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: #06283d;
  font-size: 27px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.map-info p {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: #5c7484;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

/* GET DIRECTIONS BUTTON */
.map-info .btn-outline {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  color: #06283d;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(6, 40, 61, 0.12);
  box-shadow:
    0 14px 30px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: 0.35s ease;
}

.map-info .btn-outline i {
  color: #00a6b8;
  transition: 0.35s ease;
}

.map-info .btn-outline:hover {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow:
    0 20px 42px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.map-info .btn-outline:hover i {
  color: #ffffff;
  transform: translateX(3px);
}

/* ==============================
   RESPONSIVE MAP SECTION
================================= */

@media (max-width: 991px) {
  .map-section {
    padding: 82px 0;
  }

  .map-box {
    min-height: 470px;
    border-radius: 36px;
  }

  .map-box iframe {
    height: 500px;
  }

  .map-info {
    left: 26px;
    bottom: 26px;
    width: min(370px, calc(100% - 52px));
  }
}

@media (max-width: 767px) {
  .map-section {
    padding: 68px 0;
  }

  .map-section::after {
    background-size: 34px 34px;
  }

  .map-box {
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 30px;
  }

  .map-box::before {
    inset: 10px;
    border-radius: 24px;
  }

  .map-box::after {
    background:
      linear-gradient(180deg, transparent 52%, rgba(6, 40, 61, 0.14) 100%);
  }

  .map-box iframe {
    height: 390px;
  }

  .map-info {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 26px 24px;
    border-radius: 0;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 252, 255, 0.94));
    box-shadow: none;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .map-info h3 {
    font-size: 24px;
  }

  .map-info .btn-outline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 58px 0;
  }

  .map-box {
    border-radius: 26px;
  }

  .map-box iframe {
    height: 330px;
  }

  .map-info {
    padding: 24px 20px;
  }

  .map-info::before {
    font-size: 58px;
    right: 14px;
    top: 14px;
  }

  .map-info h3 {
    font-size: 22px;
  }

  .map-info p {
    font-size: 14px;
  }
}


/* ============================== MAP SECTION END ================================ */


/* ==============================
   ULTRA PREMIUM FINAL CTA
================================= */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 188, 212, 0.10), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.08), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -290px;
  top: -260px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  filter: blur(18px);
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.final-cta-box {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 52px;
  border-radius: 42px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.38), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(126, 231, 243, 0.22), transparent 34%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 44%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 18px 46px rgba(0, 166, 184, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  isolation: isolate;
}

.final-cta-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 41px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(310deg, rgba(6, 40, 61, 0.14), transparent 42%);
  z-index: -1;
  pointer-events: none;
}

.final-cta-box::after {
  content: "\f5c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 42px;
  top: 22px;
  color: rgba(255, 255, 255, 0.10);
  font-size: 150px;
  line-height: 1;
  pointer-events: none;
}

.final-cta-box>div:first-child {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.final-cta-box span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  padding: 9px 15px;
  border-radius: 999px;
  color: #eaffff;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.final-cta-box span::before {
  content: "\f004";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #007d91;
  background: #ffffff;
  font-size: 11px;
  box-shadow: 0 8px 18px rgba(6, 40, 61, 0.12);
}

.final-cta-box h2 {
  margin: 0;
  max-width: 700px;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -1.7px;
  font-weight: 950;
  text-shadow: 0 10px 28px rgba(6, 40, 61, 0.14);
}

.final-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.final-actions .btn {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  border: 0;
  transition: 0.35s ease;
}

.final-actions .btn-light {
  color: #007d91;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.95), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #e8fbff 100%);
  box-shadow:
    0 18px 38px rgba(6, 40, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.final-actions .btn-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #06283d 0%, #041e2f 100%);
  box-shadow:
    0 18px 38px rgba(6, 40, 61, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.final-actions .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  transition: 0.65s ease;
}

.final-actions .btn:hover {
  transform: translateY(-4px);
}

.final-actions .btn:hover::before {
  left: 120%;
}

.final-actions .btn-light:hover {
  color: #06283d;
  box-shadow:
    0 24px 48px rgba(255, 255, 255, 0.22),
    0 18px 38px rgba(6, 40, 61, 0.18);
}

.final-actions .btn-dark:hover {
  box-shadow:
    0 24px 52px rgba(6, 40, 61, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ==============================
   RESPONSIVE FINAL CTA
================================= */

@media (max-width: 991px) {
  .final-cta {
    padding: 82px 0;
  }

  .final-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 42px;
    border-radius: 36px;
  }

  .final-cta-box::before {
    border-radius: 35px;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .final-cta {
    padding: 68px 0;
  }

  .final-cta::after {
    background-size: 34px 34px;
  }

  .final-cta-box {
    padding: 32px 26px;
    border-radius: 30px;
    gap: 26px;
  }

  .final-cta-box::before {
    border-radius: 29px;
  }

  .final-cta-box::after {
    right: 18px;
    top: 18px;
    font-size: 92px;
  }

  .final-cta-box span {
    font-size: 12px;
    padding: 8px 13px;
  }

  .final-cta-box span::before {
    width: 23px;
    height: 23px;
    font-size: 10px;
  }

  .final-cta-box h2 {
    font-size: clamp(29px, 8vw, 40px);
    letter-spacing: -1.2px;
  }

  .final-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .final-cta {
    padding: 58px 0;
  }

  .final-cta-box {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .final-cta-box::before {
    border-radius: 25px;
  }

  .final-cta-box h2 {
    font-size: 29px;
  }

  .final-actions .btn {
    min-height: 54px;
    font-size: 14px;
  }
}

/* ===============  CTA SECTION END ================== */

/* ==============================
   ULTRA PREMIUM FOOTER
================================= */

.footer {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.18), transparent 34%),
    linear-gradient(135deg, #041e2f 0%, #06283d 48%, #031724 100%);
}

.footer::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -330px;
  top: -330px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
  filter: blur(20px);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 231, 243, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 231, 243, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 92%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr 1fr;
  gap: 42px;
}

/* FOOTER COLUMNS */
.footer-grid>div {
  position: relative;
}

.footer-grid>div:first-child {
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.footer-grid>div:first-child::before {
  content: "\f5c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 22px;
  bottom: 12px;
  font-size: 92px;
  line-height: 1;
  color: rgba(126, 231, 243, 0.08);
  pointer-events: none;
}

/* TITLES */
.footer h3,
.footer h4 {
  position: relative;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.2;
}

.footer h3 {
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.9px;
}

.footer h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5f0, #7ee7f3);
  box-shadow: 0 10px 22px rgba(0, 188, 212, 0.22);
}

.footer h4 {
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.footer h4::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5f0, #7ee7f3);
}

/* TEXT */
.footer p {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 500;
}

.footer-grid>div:first-child p {
  max-width: 390px;
}

/* LINKS */
.footer a {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  gap: 9px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 700;
  transition: 0.32s ease;
}

.footer a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7ee7f3;
  font-size: 11px;
  background: rgba(126, 231, 243, 0.10);
  border: 1px solid rgba(126, 231, 243, 0.14);
  transition: 0.32s ease;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.footer a:hover::before {
  color: #06283d;
  background: linear-gradient(135deg, #ffffff, #7ee7f3);
  border-color: transparent;
}

/* CONTACT TEXT */
.footer p i {
  width: 34px;
  height: 34px;
  margin-right: 9px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #06283d;
  background: linear-gradient(135deg, #ffffff, #7ee7f3);
  box-shadow: 0 10px 22px rgba(0, 188, 212, 0.18);
}

/* FOOTER BOTTOM */
.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 62px;
  padding: 24px 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 600;
}

/* ==============================
   RESPONSIVE FOOTER
================================= */

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
  }

  .footer-grid>div:first-child {
    grid-column: span 3;
  }

  .footer-grid>div:first-child p {
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 68px;
  }

  .footer::after {
    background-size: 34px 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }

  .footer-grid>div:first-child {
    grid-column: span 2;
    padding: 26px 24px;
    border-radius: 28px;
  }

  .footer h3 {
    font-size: 26px;
  }

  .footer h4 {
    font-size: 16px;
  }

  .footer-bottom {
    margin-top: 46px;
  }
}

@media (max-width: 520px) {
  .footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid>div:first-child {
    grid-column: span 1;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .footer-grid>div:first-child::before {
    font-size: 72px;
  }

  .footer h3 {
    font-size: 24px;
  }

  .footer a {
    width: 100%;
  }

  .footer p {
    font-size: 14px;
  }

  .footer p i {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .footer-bottom {
    margin-top: 36px;
    padding: 20px 14px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

/* ===============  FOOTER END ================== */


/* ==============================
   ULTRA PREMIUM FLOATING BUTTONS
================================= */

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* COMMON FLOAT BUTTON */
.float-btn {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 26px;
  text-decoration: none;
  isolation: isolate;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: 0.35s ease;
}

/* Glow ring */
.float-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -2;
  border-radius: 50%;
  opacity: 0.58;
  filter: blur(2px);
  animation: floatPulse 2.4s ease-in-out infinite;
}

/* Shine */
.float-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%);
  pointer-events: none;
}

.float-btn i {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.18));
  transition: 0.35s ease;
}

.float-btn:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.float-btn:hover i {
  transform: scale(1.08) rotate(-6deg);
}

/* WHATSAPP BUTTON */
.float-btn.whatsapp {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #35ee78 0%, #25d366 45%, #128c7e 100%);
}

.float-btn.whatsapp::before {
  background: rgba(37, 211, 102, 0.42);
}

/* CALL BUTTON */
.float-btn.call {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
}

.float-btn.call::before {
  background: rgba(0, 188, 212, 0.42);
}

/* Tooltip */
.float-btn.whatsapp:hover::selection,
.float-btn.call:hover::selection {
  background: transparent;
}

.float-btn.whatsapp .fa-whatsapp,
.float-btn.call .fa-phone {
  line-height: 1;
}

/* Label Tooltip using aria-label */
.float-btn[aria-label] {
  position: relative;
}

.float-btn[aria-label]::selection {
  background: transparent;
}

.float-btn[aria-label]:hover span {
  opacity: 1;
}

.float-btn[aria-label]:hover::after {
  opacity: 1;
}

/* Pulse Animation */
@keyframes floatPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.36;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.62;
  }

  100% {
    transform: scale(0.92);
    opacity: 0.36;
  }
}

/* Floating Button Entrance */
.float-btn.whatsapp {
  animation: floatButtonUp 0.65s ease both, softBounce 4s ease-in-out infinite 0.7s;
}

.float-btn.call {
  animation: floatButtonUp 0.65s ease both 0.12s, softBounce 4s ease-in-out infinite 1.1s;
}

@keyframes floatButtonUp {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.86);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softBounce {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -5px;
  }
}

/* ==============================
   RESPONSIVE FLOATING BUTTONS
================================= */

@media (max-width: 767px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
    gap: 11px;
  }

  .float-btn {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .float-btn::before {
    inset: -6px;
  }
}

@media (max-width: 480px) {
  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

















/* ==============================
   ABOUT PAGE CSS
================================= */
/* ==============================
   ULTRA PREMIUM HEADER / NAVBAR
================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 252, 255, 0.86));
  border-bottom: 1px solid rgba(6, 40, 61, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 188, 212, 0.08), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 125, 145, 0.07), transparent 30%);
  pointer-events: none;
}

.site-header.scrolled {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.94));
  box-shadow:
    0 16px 42px rgba(6, 40, 61, 0.10),
    0 4px 14px rgba(0, 166, 184, 0.05);
}

.header-wrapper {
  position: relative;
  z-index: 2;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* LOGO */
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.logo {
  width: 110px;
  height: 58px;
  padding: 5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.logo-text strong {
  color: #06283d;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.4px;
  text-transform: capitalize;
}

.logo-text small {
  margin-top: 3px;
  color: #007d91;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(6, 40, 61, 0.07);
  box-shadow:
    0 14px 34px rgba(6, 40, 61, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar a {
  position: relative;
  overflow: hidden;
  padding: 10px 13px;
  border-radius: 999px;
  color: #526a7a;
  font-size: 13.5px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: 0.32s ease;
}

.navbar a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), transparent 32%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.16), rgba(0, 125, 145, 0.08));
  opacity: 0;
  transform: scale(0.85);
  transition: 0.32s ease;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transition: 0.32s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #007d91;
}

.navbar a:hover::before,
.navbar a.active::before {
  opacity: 1;
  transform: scale(1);
}

.navbar a:hover::after,
.navbar a.active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}


/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: max-content;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #06283d;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 12px 28px rgba(6, 40, 61, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: 0.32s ease;
}

.header-call i {
  width: 30px;
  height: 30px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 10px 20px rgba(0, 166, 184, 0.22);
}

.header-call:hover {
  color: #007d91;
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(6, 40, 61, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-actions .btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  border: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 16px 34px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.header-actions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-18deg);
  transition: 0.65s ease;
}

.header-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 46px rgba(0, 166, 184, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.header-actions .btn-primary:hover::before {
  left: 120%;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(6, 40, 61, 0.10);
  color: #06283d;
  font-size: 20px;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 251, 255, 0.82));
  box-shadow:
    0 14px 30px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.3s ease;
}

.menu-toggle:hover {
  color: #007d91;
  transform: translateY(-2px);
}

/* ==============================
   RESPONSIVE HEADER
================================= */

@media (max-width: 1250px) {
  .navbar {
    gap: 4px;
    padding: 7px;
  }

  .navbar a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    padding: 8px;
  }
}

@media (max-width: 1080px) {

  .header-actions .btn-primary,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .navbar {
    position: fixed;
    left: 50%;
    top: 96px;
    width: min(92%, 520px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 16px;
    border-radius: 28px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(244, 252, 255, 0.94));
    border: 1px solid rgba(6, 40, 61, 0.08);
    box-shadow:
      0 30px 80px rgba(6, 40, 61, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translate(-50%, -18px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: 0.35s ease;
  }

  .navbar.active {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .navbar a {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    font-size: 15px;
    color: #06283d;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(6, 40, 61, 0.055);
  }

  .navbar a::after {
    left: 16px;
    bottom: 8px;
    transform: scaleX(0);
  }

  .navbar a:hover::after,
  .navbar a.active::after {
    transform: scaleX(1);
  }
}

@media (max-width: 640px) {
  .header-wrapper {
    height: 76px;
    gap: 14px;
  }

  .logo {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .logo-text strong {
    font-size: 16px;
  }

  .logo-text small {
    font-size: 10.5px;
    letter-spacing: 1.4px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px;
  }

  .navbar {
    top: 84px;
    width: min(92%, 430px);
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .logo-link {
    gap: 9px;
  }

  .logo {
    width: 150px;
    height: 80px;
  }

  .logo-text strong {
    font-size: 15px;
  }

  .logo-text small {
    font-size: 10px;
  }

  .navbar {
    width: calc(100% - 24px);
    top: 82px;
  }
}

/* ===============  HEADER END ================== */


/* ====================== ABOUT HERO SECTION ================== */

/* ==============================
   ULTRA PREMIUM ABOUT HERO
================================= */

.about-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 10px 0 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(0, 125, 145, 0.14), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(232, 251, 255, 0.95), transparent 45%),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 48%, #eefcff 100%);
}

/* Premium grid overlay */
.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  pointer-events: none;
}

/* Soft light layer */
.about-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  z-index: -2;
  width: min(900px, 90%);
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

/* Decorative shapes */
.about-hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.about-hero-shape.shape-one {
  width: 330px;
  height: 330px;
  left: -135px;
  top: 80px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.20), rgba(0, 125, 145, 0.08));
  filter: blur(4px);
  animation: aboutHeroBlobOne 9s ease-in-out infinite;
}

.about-hero-shape.shape-two {
  width: 470px;
  height: 470px;
  right: -205px;
  bottom: -190px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(0, 125, 145, 0.13), rgba(0, 188, 212, 0.08));
  filter: blur(5px);
  animation: aboutHeroBlobTwo 11s ease-in-out infinite;
}

@keyframes aboutHeroBlobOne {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(18px, -20px) scale(1.06);
  }
}

@keyframes aboutHeroBlobTwo {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 18px) scale(1.04);
  }
}

/* Hero content */
.about-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.about-page-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 14px 32px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-page-tag i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 9px 20px rgba(0, 166, 184, 0.26);
}

.about-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.03;
  letter-spacing: -2.8px;
  font-weight: 950;
}

.about-page-hero h1::after {
  content: "";
  display: block;
  width: min(190px, 45%);
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #00d5f0, #007d91, transparent);
  box-shadow: 0 12px 26px rgba(0, 166, 184, 0.24);
}

.about-page-hero p {
  max-width: 690px;
  margin: 0 auto 26px;
  color: #587382;
  font-size: 18px;
  line-height: 1.82;
  font-weight: 500;
}

/* Breadcrumb */
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  padding: 11px 17px;
  border-radius: 999px;
  color: #607989;
  font-size: 14px;
  font-weight: 850;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 252, 255, 0.74));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 14px 34px rgba(6, 40, 61, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.page-breadcrumb a {
  color: #007d91;
  font-weight: 950;
  text-decoration: none;
  transition: 0.3s ease;
}

.page-breadcrumb a:hover {
  color: #06283d;
}

.page-breadcrumb i {
  color: #00a6b8;
  font-size: 12px;
}

.page-breadcrumb span {
  color: #06283d;
}

/* ==============================
   RESPONSIVE ABOUT HERO
================================= */

@media (max-width: 991px) {
  .about-page-hero {
    padding: 90px 0 82px;
  }

  .about-hero-wrap {
    max-width: 780px;
  }

  .about-page-hero h1 {
    font-size: clamp(38px, 8vw, 58px);
    letter-spacing: -2px;
  }
}

@media (max-width: 767px) {
  .about-page-hero {
    padding: 76px 0 70px;
  }

  .about-page-hero::before {
    background-size: 34px 34px;
  }

  .about-hero-shape.shape-one {
    width: 240px;
    height: 240px;
    left: -135px;
    top: 70px;
  }

  .about-hero-shape.shape-two {
    width: 320px;
    height: 320px;
    right: -170px;
    bottom: -130px;
  }

  .about-page-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .about-page-tag i {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .about-page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .about-page-hero h1::after {
    height: 4px;
    margin-top: 18px;
  }

  .about-page-hero p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .page-breadcrumb {
    padding: 10px 14px;
    font-size: 13px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .about-page-hero {
    padding: 62px 0 58px;
  }

  .about-page-hero h1 {
    font-size: 32px;
    letter-spacing: -1.1px;
  }

  .about-page-hero p {
    font-size: 15px;
  }

  .page-breadcrumb {
    width: 100%;
    border-radius: 18px;
    flex-wrap: wrap;
  }
}

/* ===============  ABOUT HERO END ================== */





/* =======================   ABOUT INTRO START ======================= */

.about-intro-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 9% 18%, rgba(0, 188, 212, 0.11), transparent 31%),
    radial-gradient(circle at 90% 82%, rgba(0, 125, 145, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6fcfe 100%);
}

.about-intro-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -300px;
  bottom: -270px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  filter: blur(18px);
  pointer-events: none;
}

.about-intro-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.about-intro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

/* IMAGE SIDE */
.about-intro-image {
  position: relative;
  isolation: isolate;
}

.about-intro-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 50px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.about-intro-image::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -30px;
  height: 60px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.23);
  filter: blur(22px);
}

.about-intro-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
  transition: 0.65s ease;
}

.about-intro-image:hover img {
  transform: translateY(-6px) scale(1.015);
}

/* EXPERIENCE CARD */
.about-experience-card {
  position: absolute;
  right: -18px;
  bottom: 34px;
  z-index: 3;
  width: 190px;
  padding: 25px 23px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: aboutIntroFloat 4.5s ease-in-out infinite;
}

.about-experience-card::before {
  content: "";
  position: absolute;
  width: 94px;
  height: 94px;
  right: -36px;
  top: -34px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
}

.about-experience-card::after {
  content: "\f5c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(0, 166, 184, 0.12);
  font-size: 42px;
}

.about-experience-card strong {
  position: relative;
  z-index: 2;
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #00bcd4, #007d91);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 50px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.about-experience-card span {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 8px;
  color: #06283d;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

@keyframes aboutIntroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* CONTENT SIDE */
.about-intro-content {
  position: relative;
  z-index: 2;
}

.about-intro-content::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: 12px;
  top: -28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  pointer-events: none;
}

.about-intro-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-intro-content .section-tag::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.about-intro-content h2 {
  max-width: 690px;
  margin: 0 0 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.about-intro-content p {
  max-width: 690px;
  margin: 0 0 16px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* FEATURE LIST */
.about-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 32px 0 34px;
}

.about-feature-list div {
  position: relative;
  overflow: hidden;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border-radius: 22px;
  color: #06283d;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(242, 252, 255, 0.82));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.35s ease;
}

.about-feature-list div::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  right: -34px;
  top: -34px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.about-feature-list div:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-feature-list div:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.about-feature-list i {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  font-size: 15px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 10px 22px rgba(0, 166, 184, 0.25);
}

.about-feature-list span {
  position: relative;
  z-index: 2;
}

/* BUTTON */
.about-intro-content .btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 15px 30px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  border: 0;
  text-decoration: none;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.about-intro-content .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: 0.65s ease;
}

.about-intro-content .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 50px rgba(0, 166, 184, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-intro-content .btn-primary:hover::before {
  left: 120%;
}

/* ==============================
   RESPONSIVE ABOUT INTRO
================================= */

@media (max-width: 1100px) {
  .about-intro-grid {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .about-intro-image {
    max-width: 720px;
    margin: 0 auto;
  }

  .about-intro-content {
    text-align: center;
  }

  .about-intro-content h2,
  .about-intro-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-feature-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .about-intro-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .about-intro-section {
    padding: 68px 0;
  }

  .about-intro-section::after {
    background-size: 34px 34px;
  }

  .about-intro-grid {
    gap: 42px;
  }

  .about-intro-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .about-intro-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .about-experience-card {
    right: 16px;
    bottom: 18px;
    width: 156px;
    padding: 18px;
    border-radius: 24px;
    animation: none;
  }

  .about-experience-card strong {
    font-size: 38px;
  }

  .about-experience-card span {
    font-size: 12.5px;
  }

  .about-intro-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .about-intro-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .about-intro-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .about-intro-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .about-feature-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 30px;
  }

  .about-feature-list div {
    min-height: 62px;
    padding: 16px;
    border-radius: 19px;
    text-align: left;
  }

  .about-intro-content .btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-intro-section {
    padding: 58px 0;
  }

  .about-intro-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .about-experience-card {
    width: 138px;
    right: 12px;
    bottom: 14px;
    padding: 15px;
    border-radius: 20px;
  }

  .about-experience-card strong {
    font-size: 34px;
  }

  .about-experience-card span {
    font-size: 11.5px;
  }

  .about-intro-content h2 {
    font-size: 30px;
  }

  .about-intro-content p {
    font-size: 15px;
  }

  .about-feature-list i {
    width: 34px;
    height: 34px;
  }
}


/* ===============  ABOUT INTRO END ================== */


/* ========================  MISSION VISION START  ======================== */


.about-mission-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.about-mission-section::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  left: -310px;
  top: 70px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  filter: blur(18px);
  pointer-events: none;
}

.about-mission-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.about-mission-section .container {
  position: relative;
  z-index: 2;
}

/* GRID */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* CARD */
.mission-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 36px 32px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
  isolation: isolate;
}

.mission-card::before {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  z-index: -1;
  transition: 0.42s ease;
}

.mission-card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
}

.mission-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.mission-card:hover::before {
  transform: scale(1.35);
  background: rgba(0, 188, 212, 0.17);
}

.mission-card:hover::after {
  transform: scaleX(1);
}

/* ICON */
.mission-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 28px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 18px 36px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: 0.42s ease;
}

.mission-icon::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 31px;
  background: rgba(0, 188, 212, 0.11);
  z-index: -1;
}

.mission-card:hover .mission-icon {
  transform: translateY(-5px) rotate(-4deg);
  box-shadow:
    0 24px 46px rgba(0, 166, 184, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* DIFFERENT ICON COLORS */
.mission-card:nth-child(2) .mission-icon {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #26e0ff 0%, #00a6b8 50%, #026c80 100%);
}

.mission-card:nth-child(3) .mission-icon {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #1ed6c8 0%, #00a6b8 50%, #007d91 100%);
}

/* TEXT */
.mission-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #06283d;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.mission-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #617989;
  font-size: 15.5px;
  line-height: 1.85;
  font-weight: 500;
}

/* SMALL DECORATIVE NUMBER */
.mission-card h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

/* ==============================
   RESPONSIVE MISSION VISION
================================= */

@media (max-width: 1100px) {
  .mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-card:last-child {
    grid-column: span 2;
  }

  .mission-card {
    min-height: 280px;
  }
}

@media (max-width: 991px) {
  .about-mission-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .about-mission-section {
    padding: 68px 0;
  }

  .about-mission-section::after {
    background-size: 34px 34px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mission-card,
  .mission-card:last-child {
    grid-column: span 1;
  }

  .mission-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 30px;
  }

  .mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .mission-icon::before {
    border-radius: 27px;
  }

  .mission-card h3 {
    font-size: 22px;
  }

  .mission-card p {
    font-size: 15px;
    line-height: 1.78;
  }
}

@media (max-width: 480px) {
  .about-mission-section {
    padding: 58px 0;
  }

  .mission-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .mission-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 22px;
  }

  .mission-card h3 {
    font-size: 21px;
  }

  .mission-card p {
    font-size: 14.5px;
  }
}

/* ========================  MISSION VISION END  ======================== */


/* ========================  FACILITIES START  ======================== */

/* ==============================
   ULTRA PREMIUM FACILITIES SECTION
================================= */

.about-facility-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.about-facility-section::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  left: -300px;
  top: 90px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  filter: blur(18px);
  pointer-events: none;
}

.about-facility-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.about-facility-section .container {
  position: relative;
  z-index: 2;
}

/* HEADING */
.about-facility-section .section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
}

.about-facility-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-facility-section .section-tag::before {
  content: "\f0f8";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.about-facility-section .section-heading h2 {
  margin: 0 0 16px;
  color: #06283d;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.about-facility-section .section-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

/* GRID */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* CARD */
.facility-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 32px 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
  isolation: isolate;
}

.facility-card::before {
  content: "";
  position: absolute;
  width: 148px;
  height: 148px;
  right: -66px;
  top: -66px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  z-index: -1;
  transition: 0.42s ease;
}

.facility-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
}

.facility-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.facility-card:hover::before {
  transform: scale(1.35);
  background: rgba(0, 188, 212, 0.17);
}

.facility-card:hover::after {
  transform: scaleX(1);
}

/* ICON */
.facility-card>i {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 27px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 18px 36px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: 0.42s ease;
}

.facility-card>i::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 31px;
  background: rgba(0, 188, 212, 0.11);
  z-index: -1;
}

.facility-card:hover>i {
  transform: translateY(-5px) rotate(-4deg);
  box-shadow:
    0 24px 46px rgba(0, 166, 184, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* DIFFERENT ACCENTS */
.facility-card:nth-child(2)>i {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #26e0ff 0%, #00a6b8 50%, #026c80 100%);
}

.facility-card:nth-child(3)>i {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #1ed6c8 0%, #00a6b8 50%, #007d91 100%);
}

.facility-card:nth-child(4)>i {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #009eb5 50%, #06556c 100%);
}

/* TEXT */
.facility-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 11px;
  color: #06283d;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.facility-card h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.facility-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 500;
}

/* ==============================
   RESPONSIVE FACILITIES SECTION
================================= */

@media (max-width: 1200px) {
  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facility-card {
    min-height: 245px;
  }
}

@media (max-width: 991px) {
  .about-facility-section {
    padding: 82px 0;
  }

  .about-facility-section .section-heading {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .about-facility-section {
    padding: 68px 0;
  }

  .about-facility-section::after {
    background-size: 34px 34px;
  }

  .about-facility-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .about-facility-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .about-facility-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .about-facility-section .section-heading p {
    font-size: 16px;
    line-height: 1.75;
  }

  .facility-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .facility-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 30px;
  }

  .facility-card>i {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .facility-card>i::after {
    border-radius: 27px;
  }

  .facility-card h3 {
    font-size: 20px;
  }

  .facility-card p {
    font-size: 14.5px;
  }
}

@media (max-width: 480px) {
  .about-facility-section {
    padding: 58px 0;
  }

  .about-facility-section .section-heading {
    margin-bottom: 34px;
  }

  .about-facility-section .section-heading h2 {
    font-size: 30px;
  }

  .about-facility-section .section-heading p {
    font-size: 15px;
  }

  .facility-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .facility-card>i {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 22px;
  }
}

/* ========================  FACILITIES END  ======================== */


/* ========================  HYGIENE START  ======================== */


.hygiene-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.hygiene-section::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -300px;
  top: 70px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  filter: blur(18px);
  pointer-events: none;
}

.hygiene-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.hygiene-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 70px;
  align-items: center;
}

/* CONTENT */
.hygiene-content {
  position: relative;
  z-index: 2;
}

.hygiene-content::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: 20px;
  top: -28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  pointer-events: none;
}

.hygiene-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hygiene-content .section-tag::before {
  content: "\f3ed";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.hygiene-content h2 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.hygiene-content p {
  max-width: 720px;
  margin: 0 0 28px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* HYGIENE LIST */
.hygiene-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.hygiene-list li {
  position: relative;
  overflow: hidden;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border-radius: 22px;
  color: #06283d;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.hygiene-list li::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.hygiene-list li:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hygiene-list li:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.hygiene-list i {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  font-size: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 10px 22px rgba(0, 166, 184, 0.25);
}

/* IMAGE SIDE */
.hygiene-image {
  position: relative;
  isolation: isolate;
}

.hygiene-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 50px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.hygiene-image::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -30px;
  height: 60px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.23);
  filter: blur(22px);
}

.hygiene-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 525px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
  transition: 0.65s ease;
}

.hygiene-image:hover img {
  transform: translateY(-6px) scale(1.015);
}

/* PREMIUM FLOATING BADGE */
.hygiene-image .hygiene-badge {
  position: absolute;
  left: -18px;
  bottom: 34px;
  z-index: 3;
  width: 185px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ==============================
   RESPONSIVE HYGIENE SECTION
================================= */

@media (max-width: 1100px) {
  .hygiene-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hygiene-content {
    text-align: center;
  }

  .hygiene-content h2,
  .hygiene-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hygiene-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .hygiene-list li {
    text-align: left;
  }

  .hygiene-image {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .hygiene-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .hygiene-section {
    padding: 68px 0;
  }

  .hygiene-section::after {
    background-size: 34px 34px;
  }

  .hygiene-grid {
    gap: 42px;
  }

  .hygiene-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .hygiene-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .hygiene-content h2 {
    font-size: 45px;
    letter-spacing: -1.2px;
  }

  .hygiene-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .hygiene-list {
    gap: 12px;
  }

  .hygiene-list li {
    min-height: auto;
    padding: 16px;
    border-radius: 19px;
    font-size: 14.5px;
  }

  .hygiene-list i {
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }

  .hygiene-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .hygiene-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }
}

@media (max-width: 480px) {
  .hygiene-section {
    padding: 58px 0;
  }

  .hygiene-content h2 {
    font-size: 30px;
  }

  .hygiene-content p {
    font-size: 15px;
  }

  .hygiene-list li {
    align-items: flex-start;
    gap: 11px;
  }

  .hygiene-list i {
    margin-top: 2px;
  }

  .hygiene-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }
}


/* ========================  HYGIENE END  ======================== */


/* =============== .about-experience-card =============== */





/* ========================  DENTIST PROFILE START  ======================== */

/* HERO  ==============================  DENTIST NAME + PROFILE PHOTO================================= */




.dentist-profile-intro-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.13), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.dentist-profile-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.dentist-profile-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.dentist-profile-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.dentist-profile-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.dentist-profile-intro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 72px;
}

/* PHOTO SIDE */
.dentist-profile-photo-wrap {
  position: relative;
  isolation: isolate;
}

.dentist-profile-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.dentist-profile-photo-wrap::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -30px;
  height: 60px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.23);
  filter: blur(22px);
}

.dentist-profile-photo {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
}

.dentist-profile-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(0deg, rgba(6, 40, 61, 0.12), transparent 44%);
  pointer-events: none;
}

.dentist-profile-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  transition: 0.65s ease;
}

.dentist-profile-photo:hover img {
  transform: scale(1.055);
}

/* EXPERIENCE BADGE */
.dentist-profile-badge {
  position: absolute;
  right: -18px;
  bottom: 36px;
  z-index: 4;
  width: 205px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: dentistProfileFloat 4.5s ease-in-out infinite;
}

.dentist-profile-badge i {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.28);
}

.dentist-profile-badge strong {
  display: block;
  color: #06283d;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.dentist-profile-badge span {
  display: block;
  margin-top: 5px;
  color: #607989;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

@keyframes dentistProfileFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* CONTENT SIDE */
.dentist-profile-content {
  position: relative;
  z-index: 2;
}

.dentist-profile-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dentist-profile-content .section-tag::before {
  content: "\f0f0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.dentist-profile-content h2 {
  margin: 0;
  color: #06283d;
  font-size: 45px;
  line-height: 1.03;
  letter-spacing: -2.4px;
  font-weight: 950;
}

.dentist-profile-content h4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 20px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  background: rgba(0, 166, 184, 0.08);
  border: 1px solid rgba(0, 166, 184, 0.13);
}

.dentist-profile-content h4::before {
  content: "\f19d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.dentist-profile-content p {
  max-width: 700px;
  margin: 0 0 30px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* INFO BOXES */
.dentist-profile-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.dentist-profile-info div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.dentist-profile-info div::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.dentist-profile-info div:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.dentist-profile-info div:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.dentist-profile-info i {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 12px 24px rgba(0, 166, 184, 0.25);
}

.dentist-profile-info span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 5px;
  color: #607989;
  font-size: 13px;
  font-weight: 850;
}

.dentist-profile-info strong {
  position: relative;
  z-index: 2;
  display: block;
  color: #06283d;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 950;
}

/* ACTIONS */
.dentist-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dentist-profile-actions .btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.dentist-profile-actions .btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.dentist-profile-actions .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dentist-profile-actions .btn-primary:hover,
.dentist-profile-actions .btn-outline:hover {
  transform: translateY(-3px);
}

.dentist-profile-actions .btn-outline:hover {
  color: #ffffff;
  background: #06283d;
}

/* ==============================
   RESPONSIVE DENTIST PROFILE INTRO
================================= */

@media (max-width: 1100px) {
  .dentist-profile-intro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .dentist-profile-photo-wrap {
    max-width: 680px;
    margin: 0 auto;
  }

  .dentist-profile-content {
    text-align: center;
  }

  .dentist-profile-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .dentist-profile-info {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .dentist-profile-actions {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .dentist-profile-intro-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .dentist-profile-intro-section {
    padding: 68px 0;
  }

  .dentist-profile-intro-section::before {
    background-size: 34px 34px;
  }

  .dentist-profile-photo-wrap::before {
    inset: -10px;
    border-radius: 38px;
  }

  .dentist-profile-photo {
    border-radius: 30px;
    border-width: 8px;
  }

  .dentist-profile-photo img {
    height: 420px;
  }

  .dentist-profile-badge {
    right: 16px;
    bottom: 18px;
    width: 185px;
    padding: 16px;
    border-radius: 24px;
    animation: none;
  }

  .dentist-profile-badge i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .dentist-profile-badge strong {
    font-size: 26px;
  }

  .dentist-profile-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .dentist-profile-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .dentist-profile-content h2 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -1.5px;
  }

  .dentist-profile-content h4 {
    font-size: 13px;
    border-radius: 18px;
  }

  .dentist-profile-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .dentist-profile-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dentist-profile-info div {
    text-align: left;
    padding: 20px;
    border-radius: 21px;
  }

  .dentist-profile-actions {
    flex-direction: column;
  }

  .dentist-profile-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .dentist-profile-intro-section {
    padding: 58px 0;
  }

  .dentist-profile-photo img {
    height: 335px;
  }

  .dentist-profile-photo {
    border-radius: 26px;
    border-width: 7px;
  }

  .dentist-profile-badge {
    width: 160px;
    right: 12px;
    bottom: 14px;
    gap: 11px;
    padding: 14px;
    border-radius: 20px;
  }

  .dentist-profile-badge i {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .dentist-profile-badge strong {
    font-size: 23px;
  }

  .dentist-profile-badge span {
    font-size: 11px;
  }

  .dentist-profile-content h2 {
    font-size: 32px;
  }

  .dentist-profile-content p {
    font-size: 15px;
  }

  .dentist-profile-info i {
    width: 40px;
    height: 40px;
  }
}

/* ====================== HEROS AND PROFILES END ====================== */


/* ==============================
   QUALIFICATION & SPECIALIZATION
================================= */

.qualification-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.qualification-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.qualification-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.qualification-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.qualification-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.qualification-section .container {
  position: relative;
  z-index: 2;
}

/* HEADING */
.qualification-section .section-heading {
  max-width: 800px;
  margin: 0 auto 56px;
}

.qualification-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.qualification-section .section-tag::before {
  content: "\f19d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.qualification-section .section-heading h2 {
  margin: 0 0 16px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.qualification-section .section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

/* GRID */
.qualification-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: stretch;
}

/* MAIN QUALIFICATION CARD */
.qualification-main-card,
.specialization-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.qualification-main-card {
  padding: 38px;
  min-height: 100%;
  isolation: isolate;
}

.qualification-main-card::before,
.specialization-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -78px;
  top: -78px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  z-index: 0;
}

.qualification-main-card::after,
.specialization-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.qualification-card-icon {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 30px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 18px 36px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.qualification-main-card>span,
.specialization-header span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 10px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.qualification-main-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  color: #06283d;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.2px;
}

.qualification-main-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 26px;
  color: #587382;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
}

.qualification-main-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.qualification-main-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #06283d;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 850;
}

.qualification-main-card li i {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #ffffff;
  font-size: 12px;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

/* SPECIALIZATION CARD */
.specialization-card {
  padding: 34px;
}

.specialization-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.specialization-header h3 {
  margin: 0;
  color: #06283d;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -1.1px;
}

.specialization-header>i {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 23px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 25px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow: 0 16px 32px rgba(0, 166, 184, 0.28);
}

/* SPECIALIZATION ITEMS */
.specialization-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.specialization-item {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.specialization-item::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.specialization-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.specialization-item:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.specialization-item>i {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 12px 24px rgba(0, 166, 184, 0.25);
}

.specialization-item div {
  position: relative;
  z-index: 2;
}

.specialization-item h4 {
  margin: 0 0 7px;
  color: #06283d;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.specialization-item p {
  margin: 0;
  color: #617989;
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 500;
}

/* ==============================
   RESPONSIVE QUALIFICATION
================================= */

@media (max-width: 1100px) {
  .qualification-grid {
    grid-template-columns: 1fr;
  }

  .qualification-main-card {
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .qualification-section {
    padding: 82px 0;
  }

  .qualification-section .section-heading {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .qualification-section {
    padding: 68px 0;
  }

  .qualification-section::before {
    background-size: 34px 34px;
  }

  .qualification-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .qualification-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .qualification-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .qualification-section .section-heading p {
    font-size: 16px;
    line-height: 1.75;
  }

  .qualification-main-card,
  .specialization-card {
    border-radius: 30px;
  }

  .qualification-main-card {
    padding: 28px 24px;
  }

  .specialization-card {
    padding: 26px 22px;
  }

  .qualification-card-icon {
    width: 66px;
    height: 66px;
    border-radius: 24px;
    font-size: 25px;
    margin-bottom: 22px;
  }

  .qualification-main-card h3,
  .specialization-header h3 {
    font-size: 28px;
  }

  .specialization-header {
    flex-direction: column;
    margin-bottom: 22px;
  }

  .specialization-header>i {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 22px;
  }

  .specialization-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .specialization-item {
    padding: 18px;
    border-radius: 21px;
  }
}

@media (max-width: 480px) {
  .qualification-section {
    padding: 58px 0;
  }

  .qualification-section .section-heading {
    margin-bottom: 34px;
  }

  .qualification-section .section-heading h2 {
    font-size: 30px;
  }

  .qualification-section .section-heading p {
    font-size: 15px;
  }

  .qualification-main-card,
  .specialization-card {
    border-radius: 26px;
  }

  .qualification-main-card {
    padding: 24px 20px;
  }

  .specialization-card {
    padding: 24px 20px;
  }

  .qualification-main-card h3,
  .specialization-header h3 {
    font-size: 26px;
  }

  .qualification-main-card p {
    font-size: 15px;
  }

  .specialization-item {
    flex-direction: column;
  }

  .specialization-item>i {
    width: 42px;
    height: 42px;
  }
}

/* ==============================   QUALIFICATION & SPECIALIZATION END ============================== */



/* ==============================
   EXPERIENCE DETAILS SECTION
================================= */

.experience-details-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.experience-details-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.experience-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.experience-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.experience-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.experience-details-section .container {
  position: relative;
  z-index: 2;
}

/* HEADING */
.experience-details-section .section-heading {
  max-width: 820px;
  margin: 0 auto 56px;
}

.experience-details-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.experience-details-section .section-tag::before {
  content: "\f0f0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.experience-details-section .section-heading h2 {
  margin: 0 0 16px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.experience-details-section .section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

/* MAIN GRID */
.experience-details-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

/* SUMMARY CARD */
.experience-summary-card,
.experience-timeline-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.experience-summary-card {
  padding: 38px;
  isolation: isolate;
}

.experience-summary-card::before,
.experience-timeline-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -78px;
  top: -78px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  z-index: 0;
}

.experience-summary-card::after,
.experience-timeline-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.experience-icon {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 30px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 18px 36px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.experience-summary-card>span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 10px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-summary-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  color: #06283d;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.experience-summary-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 28px;
  color: #587382;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
}

/* PROGRESS */
.experience-progress-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.experience-progress {
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 14px 34px rgba(6, 40, 61, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.progress-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
}

.progress-title span {
  color: #06283d;
  font-size: 14px;
  font-weight: 950;
}

.progress-title strong {
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
}

.progress-bar {
  width: 100%;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 166, 184, 0.10);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, #00d5f0, #00a6b8, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.24);
}

/* TIMELINE CARD */
.experience-timeline-card {
  padding: 30px;
  display: grid;
  gap: 16px;
}

.experience-timeline-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.experience-timeline-item::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.experience-timeline-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.experience-timeline-item:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.experience-number {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.25);
}

.experience-content {
  position: relative;
  z-index: 2;
}

.experience-content h4 {
  margin: 0 0 8px;
  color: #06283d;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.3px;
}

.experience-content p {
  margin: 0;
  color: #617989;
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 500;
}

/* ==============================
   RESPONSIVE EXPERIENCE DETAILS
================================= */

@media (max-width: 1100px) {
  .experience-details-grid {
    grid-template-columns: 1fr;
  }

  .experience-summary-card,
  .experience-timeline-card {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .experience-details-section {
    padding: 82px 0;
  }

  .experience-details-section .section-heading {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .experience-details-section {
    padding: 68px 0;
  }

  .experience-details-section::before {
    background-size: 34px 34px;
  }

  .experience-details-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .experience-details-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .experience-details-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .experience-details-section .section-heading p {
    font-size: 16px;
    line-height: 1.75;
  }

  .experience-summary-card,
  .experience-timeline-card {
    border-radius: 30px;
  }

  .experience-summary-card {
    padding: 28px 24px;
  }

  .experience-timeline-card {
    padding: 22px;
  }

  .experience-icon {
    width: 66px;
    height: 66px;
    border-radius: 24px;
    font-size: 25px;
    margin-bottom: 22px;
  }

  .experience-summary-card h3 {
    font-size: 42px;
  }

  .experience-timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
  }

  .experience-number {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .experience-details-section {
    padding: 58px 0;
  }

  .experience-details-section .section-heading {
    margin-bottom: 34px;
  }

  .experience-details-section .section-heading h2 {
    font-size: 30px;
  }

  .experience-details-section .section-heading p {
    font-size: 15px;
  }

  .experience-summary-card,
  .experience-timeline-card {
    border-radius: 26px;
  }

  .experience-summary-card {
    padding: 24px 20px;
  }

  .experience-timeline-card {
    padding: 18px;
  }

  .experience-summary-card h3 {
    font-size: 38px;
  }

  .experience-summary-card p {
    font-size: 15px;
  }

  .experience-progress {
    padding: 16px;
    border-radius: 18px;
  }

  .progress-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .experience-timeline-item {
    padding: 18px;
  }

  .experience-content h4 {
    font-size: 17px;
  }

  .experience-content p {
    font-size: 14px;
  }
}

/* ==============================   EXPERIENCE DETAILS SECTION END ============================== */


/* ==============================
   DENTAL REGISTRATION SECTION
================================= */

.registration-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.registration-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.registration-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.registration-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.registration-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.registration-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.registration-content {
  position: relative;
}

.registration-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.registration-content .section-tag::before {
  content: "\f559";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.registration-content h2 {
  max-width: 680px;
  margin: 0 0 20px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.registration-content p {
  max-width: 660px;
  margin: 0 0 28px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

.registration-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 650px;
  padding: 18px;
  border-radius: 24px;
  color: #06283d;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.registration-note i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 10px 22px rgba(0, 166, 184, 0.25);
}

.registration-note span {
  color: #587382;
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 700;
}

/* RIGHT CARD */
.registration-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 38px;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 28px 74px rgba(6, 40, 61, 0.12),
    0 12px 34px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.registration-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -84px;
  top: -84px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.13);
  z-index: -1;
}

.registration-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.registration-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 30px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 18px 36px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.registration-card>span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.registration-card h3 {
  margin: 0 0 26px;
  color: #06283d;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 950;
  word-break: break-word;
}

.registration-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.registration-meta div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 14px 34px rgba(6, 40, 61, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.registration-meta div::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  right: -32px;
  top: -32px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
}

.registration-meta small {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 5px;
  color: #607989;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.registration-meta strong {
  position: relative;
  z-index: 2;
  display: block;
  color: #06283d;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 950;
}

.registration-card .btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.registration-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 50px rgba(0, 166, 184, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ==============================
   RESPONSIVE REGISTRATION SECTION
================================= */

@media (max-width: 1100px) {
  .registration-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .registration-content {
    text-align: center;
  }

  .registration-content h2,
  .registration-content p,
  .registration-note {
    margin-left: auto;
    margin-right: auto;
  }

  .registration-note {
    text-align: left;
  }

  .registration-card {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .registration-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .registration-section {
    padding: 68px 0;
  }

  .registration-section::before {
    background-size: 34px 34px;
  }

  .registration-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .registration-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .registration-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .registration-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .registration-card {
    padding: 28px 24px;
    border-radius: 30px;
  }

  .registration-icon {
    width: 66px;
    height: 66px;
    border-radius: 24px;
    font-size: 25px;
    margin-bottom: 22px;
  }

  .registration-card h3 {
    font-size: 26px;
  }

  .registration-card .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .registration-section {
    padding: 58px 0;
  }

  .registration-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .registration-content h2 {
    font-size: 30px;
  }

  .registration-content p {
    font-size: 15px;
  }

  .registration-note {
    padding: 16px;
    border-radius: 20px;
  }

  .registration-note i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .registration-note span {
    font-size: 13.5px;
  }

  .registration-card h3 {
    font-size: 23px;
  }

  .registration-meta div {
    padding: 16px;
    border-radius: 18px;
  }
}

/* ==============================   DENTAL REGISTRATION SECTION END ============================== */



/* ==============================
   AWARDS & CERTIFICATIONS SECTION
================================= */

.awards-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.awards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.awards-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.awards-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.awards-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.awards-section .container {
  position: relative;
  z-index: 2;
}

/* HEADING */
.awards-section .section-heading {
  max-width: 820px;
  margin: 0 auto 56px;
}

.awards-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.awards-section .section-tag::before {
  content: "\f559";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.awards-section .section-heading h2 {
  margin: 0 0 16px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.awards-section .section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

/* GRID */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* CARD */
.award-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 32px 28px;
  border-radius: 34px;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
}

.award-card::before {
  content: "";
  position: absolute;
  width: 148px;
  height: 148px;
  right: -66px;
  top: -66px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  z-index: -1;
  transition: 0.42s ease;
}

.award-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
}

.award-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.award-card:hover::before {
  transform: scale(1.35);
  background: rgba(0, 188, 212, 0.17);
}

.award-card:hover::after {
  transform: scaleX(1);
}

/* FEATURED CARD */
.featured-award {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(145deg, rgba(232, 251, 255, 0.96), rgba(255, 255, 255, 0.94));
  border-color: rgba(0, 166, 184, 0.16);
}

/* ICON */
.award-icon {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 27px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 18px 36px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: 0.42s ease;
}

.award-icon::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 31px;
  background: rgba(0, 188, 212, 0.11);
  z-index: -1;
}

.award-card:hover .award-icon {
  transform: translateY(-5px) rotate(-4deg);
  box-shadow:
    0 24px 46px rgba(0, 166, 184, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* TEXT */
.award-card>span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 10px;
  color: #007d91;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.award-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #06283d;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.award-card h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.award-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 500;
}

/* META */
.award-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(0, 166, 184, 0.08);
  border: 1px solid rgba(0, 166, 184, 0.12);
  color: #587382;
  font-size: 13px;
  font-weight: 800;
}

.award-meta i {
  color: #007d91;
  font-size: 14px;
}

.award-meta strong {
  color: #06283d;
  font-weight: 950;
}

.award-meta span {
  color: #007d91;
  font-weight: 950;
}

/* ==============================
   RESPONSIVE AWARDS SECTION
================================= */

@media (max-width: 1200px) {
  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award-card {
    min-height: 300px;
  }
}

@media (max-width: 991px) {
  .awards-section {
    padding: 82px 0;
  }

  .awards-section .section-heading {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .awards-section {
    padding: 68px 0;
  }

  .awards-section::before {
    background-size: 34px 34px;
  }

  .awards-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .awards-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .awards-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .awards-section .section-heading p {
    font-size: 16px;
    line-height: 1.75;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .award-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 30px;
  }

  .award-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .award-icon::after {
    border-radius: 27px;
  }

  .award-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .awards-section {
    padding: 58px 0;
  }

  .awards-section .section-heading {
    margin-bottom: 34px;
  }

  .awards-section .section-heading h2 {
    font-size: 30px;
  }

  .awards-section .section-heading p {
    font-size: 15px;
  }

  .award-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .award-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 22px;
  }

  .award-card p {
    font-size: 14px;
  }

  .award-meta {
    align-items: flex-start;
  }
}

/* ==============================  AWARDS & CERTIFICATIONS SECTION END ============================== */


/* ==============================
   ULTRA PREMIUM SHORT BIOGRAPHY
================================= */

.short-bio-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.short-bio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.short-bio-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.short-bio-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.short-bio-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.short-bio-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

/* IMAGE */
.short-bio-image {
  position: relative;
  isolation: isolate;
}

.short-bio-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.short-bio-image::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -30px;
  height: 60px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.23);
  filter: blur(22px);
}

.short-bio-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
  transition: 0.65s ease;
}

.short-bio-image:hover img {
  transform: translateY(-6px) scale(1.015);
}

/* BADGE */
.short-bio-badge {
  position: absolute;
  right: -18px;
  bottom: 34px;
  z-index: 3;
  width: 230px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: shortBioFloat 4.5s ease-in-out infinite;
}

.short-bio-badge i {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.28);
}

.short-bio-badge strong {
  display: block;
  color: #06283d;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.short-bio-badge span {
  display: block;
  margin-top: 4px;
  color: #607989;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

@keyframes shortBioFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* CONTENT */
.short-bio-content {
  position: relative;
  z-index: 2;
}

.short-bio-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.short-bio-content .section-tag::before {
  content: "\f2bd";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.short-bio-content h2 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.short-bio-content p {
  max-width: 720px;
  margin: 0 0 16px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* POINTS */
.short-bio-points {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
}

.short-bio-points div {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px 18px;
  border-radius: 22px;
  color: #06283d;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.short-bio-points div::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.short-bio-points div:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.short-bio-points div:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.short-bio-points i {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  font-size: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 10px 22px rgba(0, 166, 184, 0.25);
}

.short-bio-points span {
  position: relative;
  z-index: 2;
}

/* ACTIONS */
.short-bio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.short-bio-actions .btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.short-bio-actions .btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.short-bio-actions .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.short-bio-actions .btn-primary:hover,
.short-bio-actions .btn-outline:hover {
  transform: translateY(-3px);
}

.short-bio-actions .btn-outline:hover {
  color: #ffffff;
  background: #06283d;
}

/* ==============================
   RESPONSIVE SHORT BIOGRAPHY
================================= */

@media (max-width: 1100px) {
  .short-bio-wrapper {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .short-bio-image {
    max-width: 680px;
    margin: 0 auto;
  }

  .short-bio-content {
    text-align: center;
  }

  .short-bio-content h2,
  .short-bio-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .short-bio-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
  }

  .short-bio-points div {
    text-align: left;
  }

  .short-bio-actions {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .short-bio-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .short-bio-section {
    padding: 68px 0;
  }

  .short-bio-section::before {
    background-size: 34px 34px;
  }

  .short-bio-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .short-bio-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .short-bio-badge {
    right: 16px;
    bottom: 18px;
    width: 205px;
    padding: 15px;
    border-radius: 24px;
    animation: none;
  }

  .short-bio-badge i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .short-bio-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .short-bio-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .short-bio-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .short-bio-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .short-bio-points {
    gap: 12px;
    margin: 28px 0 30px;
  }

  .short-bio-points div {
    padding: 16px;
    border-radius: 19px;
  }

  .short-bio-actions {
    flex-direction: column;
  }

  .short-bio-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .short-bio-section {
    padding: 58px 0;
  }

  .short-bio-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .short-bio-badge {
    width: 185px;
    right: 12px;
    bottom: 14px;
    gap: 11px;
    padding: 13px;
    border-radius: 20px;
  }

  .short-bio-badge i {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .short-bio-badge strong {
    font-size: 14px;
  }

  .short-bio-badge span {
    font-size: 11px;
  }

  .short-bio-content h2 {
    font-size: 30px;
  }

  .short-bio-content p {
    font-size: 15px;
  }

  .short-bio-points i {
    width: 32px;
    height: 32px;
  }
}

/* ==============================  ULTRA PREMIUM SHORT BIOGRAPHY END ============================== */

/* ==============================
   CONSULTATION TIMING SECTION
================================= */

.consultation-timing-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.consultation-timing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.consultation-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.consultation-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.consultation-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.consultation-timing-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.consultation-content {
  position: relative;
}

.consultation-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.consultation-content .section-tag::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.consultation-content h2 {
  max-width: 680px;
  margin: 0 0 20px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.consultation-content p {
  max-width: 660px;
  margin: 0 0 32px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* ACTION BUTTONS */
.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.consultation-actions .btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.consultation-actions .btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.consultation-actions .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.consultation-actions .btn-primary:hover,
.consultation-actions .btn-outline:hover {
  transform: translateY(-3px);
}

.consultation-actions .btn-outline:hover {
  color: #ffffff;
  background: #06283d;
}

/* RIGHT CARD */
.consultation-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 38px;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 28px 74px rgba(6, 40, 61, 0.12),
    0 12px 34px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.consultation-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -84px;
  top: -84px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.13);
  z-index: -1;
}

.consultation-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.consultation-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.consultation-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 27px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 30px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 18px 36px rgba(0, 166, 184, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.consultation-card-head span {
  display: block;
  margin-bottom: 6px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.consultation-card-head h3 {
  margin: 0;
  color: #06283d;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.8px;
}

/* TIMING LIST */
.consultation-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 13px;
}

.consultation-list li {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 14px 34px rgba(6, 40, 61, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.consultation-list li::before {
  content: "";
  width: 7px;
  align-self: stretch;
  min-height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00d5f0, #007d91);
  flex: 0 0 auto;
}

.consultation-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 22px 50px rgba(6, 40, 61, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.consultation-list span {
  color: #617989;
  font-size: 14.5px;
  font-weight: 850;
}

.consultation-list strong {
  color: #06283d;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
  text-align: right;
}

/* NOTE */
.consultation-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px;
  border-radius: 22px;
  background: rgba(0, 166, 184, 0.08);
  border: 1px solid rgba(0, 166, 184, 0.12);
}

.consultation-note i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.consultation-note p {
  margin: 0;
  color: #587382;
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 700;
}

/* ==============================
   RESPONSIVE CONSULTATION TIMING
================================= */

@media (max-width: 1100px) {
  .consultation-timing-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .consultation-content {
    text-align: center;
  }

  .consultation-content h2,
  .consultation-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .consultation-actions {
    justify-content: center;
  }

  .consultation-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .consultation-timing-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .consultation-timing-section {
    padding: 68px 0;
  }

  .consultation-timing-section::before {
    background-size: 34px 34px;
  }

  .consultation-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .consultation-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .consultation-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .consultation-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .consultation-actions {
    flex-direction: column;
  }

  .consultation-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .consultation-card {
    padding: 28px 24px;
    border-radius: 30px;
  }

  .consultation-card-head {
    align-items: flex-start;
  }

  .consultation-icon {
    width: 64px;
    height: 64px;
    border-radius: 23px;
    font-size: 25px;
  }

  .consultation-card-head h3 {
    font-size: 26px;
  }

  .consultation-list li {
    align-items: flex-start;
    padding: 16px;
  }

  .consultation-list span,
  .consultation-list strong {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .consultation-timing-section {
    padding: 58px 0;
  }

  .consultation-content h2 {
    font-size: 30px;
  }

  .consultation-content p {
    font-size: 15px;
  }

  .consultation-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .consultation-card-head {
    flex-direction: column;
    gap: 14px;
  }

  .consultation-list li {
    flex-direction: column;
    gap: 7px;
  }

  .consultation-list strong {
    text-align: left;
  }

  .consultation-note {
    padding: 15px;
    border-radius: 18px;
  }

  .consultation-note p {
    font-size: 13px;
  }
}

/* ==============================  CONSULTATION TIMING END ============================== */

/* ============= DENTIST SECTION END ============= */


/* ======================= SERVIES SECTION START ======================= */


/* ==============================
   SERVICES PAGE HERO
================================= */

.services-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 10px 0 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(0, 125, 145, 0.14), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(232, 251, 255, 0.95), transparent 45%),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 48%, #eefcff 100%);
}

.services-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  pointer-events: none;
}

.services-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  z-index: -2;
  width: min(900px, 90%);
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

.services-hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.services-hero-shape.shape-one {
  width: 330px;
  height: 330px;
  left: -135px;
  top: 80px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.20), rgba(0, 125, 145, 0.08));
  filter: blur(4px);
}

.services-hero-shape.shape-two {
  width: 470px;
  height: 470px;
  right: -205px;
  bottom: -190px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(0, 125, 145, 0.13), rgba(0, 188, 212, 0.08));
  filter: blur(5px);
}

.services-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.services-page-tag {
  display: inline-flex;
  align-items: center;
  margin-top:10px;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 14px 32px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.services-page-tag i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 9px 20px rgba(0, 166, 184, 0.26);
}

.services-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.03;
  letter-spacing: -2.8px;
  font-weight: 950;
}

.services-page-hero h1::after {
  content: "";
  display: block;
  width: min(190px, 45%);
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #00d5f0, #007d91, transparent);
  box-shadow: 0 12px 26px rgba(0, 166, 184, 0.24);
}

.services-page-hero p {
  max-width: 710px;
  margin: 0 auto 26px;
  color: #587382;
  font-size: 18px;
  line-height: 1.82;
  font-weight: 500;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  padding: 11px 17px;
  border-radius: 999px;
  color: #607989;
  font-size: 14px;
  font-weight: 850;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 252, 255, 0.74));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 14px 34px rgba(6, 40, 61, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.page-breadcrumb a {
  color: #007d91;
  font-weight: 950;
  text-decoration: none;
}

.page-breadcrumb i {
  color: #00a6b8;
  font-size: 12px;
}

.page-breadcrumb span {
  color: #06283d;
}

/* ==============================
   ULTRA PREMIUM DENTAL CONSULTATION
================================= */

.dental-consultation-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.dental-consultation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.consultation-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.consultation-bg-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.consultation-bg-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.dental-consultation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

/* IMAGE SIDE */
.dental-consultation-image {
  position: relative;
  isolation: isolate;
}

.dental-consultation-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.dental-consultation-image::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -30px;
  height: 60px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.23);
  filter: blur(22px);
}

.dental-consultation-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
  transition: 0.65s ease;
}

.dental-consultation-image:hover img {
  transform: translateY(-6px) scale(1.015);
}

/* FLOATING CARD */
.consultation-float-card {
  position: absolute;
  right: -18px;
  bottom: 34px;
  z-index: 4;
  width: 245px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: consultationFloat 4.5s ease-in-out infinite;
}

.consultation-float-card i {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.28);
}

.consultation-float-card strong {
  display: block;
  color: #06283d;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.consultation-float-card span {
  display: block;
  margin-top: 4px;
  color: #607989;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

@keyframes consultationFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* CONTENT */
.dental-consultation-content {
  position: relative;
  z-index: 2;
}

.dental-consultation-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dental-consultation-content .section-tag::before {
  content: "\f0f0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.dental-consultation-content h2 {
  max-width: 730px;
  margin: 0 0 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.dental-consultation-content p {
  max-width: 720px;
  margin: 0 0 30px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* BENEFITS */
.consultation-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 30px 0 34px;
}

.consultation-benefits div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.consultation-benefits div::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.consultation-benefits div:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.consultation-benefits div:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.consultation-benefits i {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 12px 24px rgba(0, 166, 184, 0.25);
}

.consultation-benefits h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: #06283d;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.consultation-benefits p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #617989;
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 500;
}

/* ACTIONS */
.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.consultation-actions .btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.consultation-actions .btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.consultation-actions .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.consultation-actions .btn-primary:hover,
.consultation-actions .btn-outline:hover {
  transform: translateY(-3px);
}

.consultation-actions .btn-outline:hover {
  color: #ffffff;
  background: #06283d;
}

/* ==============================
   RESPONSIVE DENTAL CONSULTATION
================================= */

@media (max-width: 1100px) {
  .dental-consultation-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .dental-consultation-image {
    max-width: 720px;
    margin: 0 auto;
  }

  .dental-consultation-content {
    text-align: center;
  }

  .dental-consultation-content h2,
  .dental-consultation-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .consultation-benefits {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
  }

  .consultation-benefits div {
    text-align: left;
  }

  .consultation-actions {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .dental-consultation-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .dental-consultation-section {
    padding: 68px 0;
  }

  .dental-consultation-section::before {
    background-size: 34px 34px;
  }

  .dental-consultation-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .dental-consultation-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .consultation-float-card {
    right: 16px;
    bottom: 18px;
    width: 220px;
    padding: 15px;
    border-radius: 24px;
    animation: none;
  }

  .consultation-float-card i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .dental-consultation-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .dental-consultation-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .dental-consultation-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .dental-consultation-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .consultation-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 30px;
  }

  .consultation-benefits div {
    padding: 20px;
    border-radius: 21px;
  }

  .consultation-actions {
    flex-direction: column;
  }

  .consultation-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dental-consultation-section {
    padding: 58px 0;
  }

  .dental-consultation-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .consultation-float-card {
    width: 195px;
    right: 12px;
    bottom: 14px;
    gap: 11px;
    padding: 13px;
    border-radius: 20px;
  }

  .consultation-float-card i {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .consultation-float-card strong {
    font-size: 14px;
  }

  .consultation-float-card span {
    font-size: 11px;
  }

  .dental-consultation-content h2 {
    font-size: 30px;
  }

  .dental-consultation-content p {
    font-size: 15px;
  }

  .consultation-benefits i {
    width: 40px;
    height: 40px;
  }
}

/* ============================== DENTAL CONSULTATION END ============================== */



/* ==============================
   ULTRA PREMIUM TEETH CLEANING
================================= */

.teeth-cleaning-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.teeth-cleaning-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.cleaning-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.cleaning-bg-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.cleaning-bg-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.teeth-cleaning-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 72px;
  align-items: center;
}

/* CONTENT */
.teeth-cleaning-content {
  position: relative;
  z-index: 2;
}

.teeth-cleaning-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.teeth-cleaning-content .section-tag::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.teeth-cleaning-content h2 {
  max-width: 730px;
  margin: 0 0 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.teeth-cleaning-content p {
  max-width: 720px;
  margin: 0 0 30px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* BENEFITS */
.cleaning-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 30px 0 34px;
}

.cleaning-benefits div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.cleaning-benefits div::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.cleaning-benefits div:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cleaning-benefits div:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.cleaning-benefits i {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 12px 24px rgba(0, 166, 184, 0.25);
}

.cleaning-benefits h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: #06283d;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.cleaning-benefits p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #617989;
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 500;
}

/* ACTIONS */
.cleaning-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cleaning-actions .btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.cleaning-actions .btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.cleaning-actions .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.cleaning-actions .btn-primary:hover,
.cleaning-actions .btn-outline:hover {
  transform: translateY(-3px);
}

.cleaning-actions .btn-outline:hover {
  color: #ffffff;
  background: #06283d;
}

/* IMAGE SIDE */
.teeth-cleaning-image {
  position: relative;
  isolation: isolate;
}

.teeth-cleaning-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.teeth-cleaning-image::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -30px;
  height: 60px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.23);
  filter: blur(22px);
}

.teeth-cleaning-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
  transition: 0.65s ease;
}

.teeth-cleaning-image:hover img {
  transform: translateY(-6px) scale(1.015);
}

/* FLOAT CARD */
.cleaning-float-card {
  position: absolute;
  left: -18px;
  bottom: 34px;
  z-index: 4;
  width: 245px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: cleaningFloat 4.5s ease-in-out infinite;
}

.cleaning-float-card i {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.28);
}

.cleaning-float-card strong {
  display: block;
  color: #06283d;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.cleaning-float-card span {
  display: block;
  margin-top: 4px;
  color: #607989;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

@keyframes cleaningFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ==============================
   RESPONSIVE TEETH CLEANING
================================= */

@media (max-width: 1100px) {
  .teeth-cleaning-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .teeth-cleaning-content {
    text-align: center;
  }

  .teeth-cleaning-content h2,
  .teeth-cleaning-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cleaning-benefits {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
  }

  .cleaning-benefits div {
    text-align: left;
  }

  .cleaning-actions {
    justify-content: center;
  }

  .teeth-cleaning-image {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .teeth-cleaning-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .teeth-cleaning-section {
    padding: 68px 0;
  }

  .teeth-cleaning-section::before {
    background-size: 34px 34px;
  }

  .teeth-cleaning-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .teeth-cleaning-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .teeth-cleaning-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .teeth-cleaning-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .cleaning-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 30px;
  }

  .cleaning-benefits div {
    padding: 20px;
    border-radius: 21px;
  }

  .cleaning-actions {
    flex-direction: column;
  }

  .cleaning-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .teeth-cleaning-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .teeth-cleaning-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .cleaning-float-card {
    left: 16px;
    bottom: 18px;
    width: 220px;
    padding: 15px;
    border-radius: 24px;
    animation: none;
  }

  .cleaning-float-card i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .teeth-cleaning-section {
    padding: 58px 0;
  }

  .teeth-cleaning-content h2 {
    font-size: 30px;
  }

  .teeth-cleaning-content p {
    font-size: 15px;
  }

  .cleaning-benefits i {
    width: 40px;
    height: 40px;
  }

  .teeth-cleaning-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .cleaning-float-card {
    width: 195px;
    left: 12px;
    bottom: 14px;
    gap: 11px;
    padding: 13px;
    border-radius: 20px;
  }

  .cleaning-float-card i {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .cleaning-float-card strong {
    font-size: 14px;
  }

  .cleaning-float-card span {
    font-size: 11px;
  }
}

/* ==============================   ULTRA PREMIUM TEETH CLEANING END ============================== */

/* ==============================
   ULTRA PREMIUM ROOT CANAL
================================= */

.root-canal-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.root-canal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.root-canal-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.root-canal-bg-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.root-canal-bg-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.root-canal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

/* IMAGE SIDE */
.root-canal-image {
  position: relative;
  isolation: isolate;
}

.root-canal-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.root-canal-image::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -30px;
  height: 60px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.23);
  filter: blur(22px);
}

.root-canal-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
  transition: 0.65s ease;
}

.root-canal-image:hover img {
  transform: translateY(-6px) scale(1.015);
}

/* FLOATING CARD */
.root-canal-float-card {
  position: absolute;
  right: -18px;
  bottom: 34px;
  z-index: 4;
  width: 245px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: rootCanalFloat 4.5s ease-in-out infinite;
}

.root-canal-float-card i {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.28);
}

.root-canal-float-card strong {
  display: block;
  color: #06283d;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.root-canal-float-card span {
  display: block;
  margin-top: 4px;
  color: #607989;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

@keyframes rootCanalFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* CONTENT */
.root-canal-content {
  position: relative;
  z-index: 2;
}

.root-canal-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.root-canal-content .section-tag::before {
  content: "\f5c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.root-canal-content h2 {
  max-width: 730px;
  margin: 0 0 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.root-canal-content p {
  max-width: 720px;
  margin: 0 0 30px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* BENEFITS */
.root-canal-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 30px 0 34px;
}

.root-canal-benefits div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.root-canal-benefits div::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.root-canal-benefits div:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.root-canal-benefits div:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.root-canal-benefits i {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 12px 24px rgba(0, 166, 184, 0.25);
}

.root-canal-benefits h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: #06283d;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.root-canal-benefits p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #617989;
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 500;
}

/* ACTIONS */
.root-canal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.root-canal-actions .btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.root-canal-actions .btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.root-canal-actions .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.root-canal-actions .btn-primary:hover,
.root-canal-actions .btn-outline:hover {
  transform: translateY(-3px);
}

.root-canal-actions .btn-outline:hover {
  color: #ffffff;
  background: #06283d;
}

/* ==============================
   RESPONSIVE ROOT CANAL
================================= */

@media (max-width: 1100px) {
  .root-canal-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .root-canal-image {
    max-width: 720px;
    margin: 0 auto;
  }

  .root-canal-content {
    text-align: center;
  }

  .root-canal-content h2,
  .root-canal-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .root-canal-benefits {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
  }

  .root-canal-benefits div {
    text-align: left;
  }

  .root-canal-actions {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .root-canal-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .root-canal-section {
    padding: 68px 0;
  }

  .root-canal-section::before {
    background-size: 34px 34px;
  }

  .root-canal-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .root-canal-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .root-canal-float-card {
    right: 16px;
    bottom: 18px;
    width: 220px;
    padding: 15px;
    border-radius: 24px;
    animation: none;
  }

  .root-canal-float-card i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .root-canal-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .root-canal-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .root-canal-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .root-canal-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .root-canal-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 30px;
  }

  .root-canal-benefits div {
    padding: 20px;
    border-radius: 21px;
  }

  .root-canal-actions {
    flex-direction: column;
  }

  .root-canal-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .root-canal-section {
    padding: 58px 0;
  }

  .root-canal-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .root-canal-float-card {
    width: 195px;
    right: 12px;
    bottom: 14px;
    gap: 11px;
    padding: 13px;
    border-radius: 20px;
  }

  .root-canal-float-card i {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .root-canal-float-card strong {
    font-size: 14px;
  }

  .root-canal-float-card span {
    font-size: 11px;
  }

  .root-canal-content h2 {
    font-size: 30px;
  }

  .root-canal-content p {
    font-size: 15px;
  }

  .root-canal-benefits i {
    width: 40px;
    height: 40px;
  }
}

/* ==============================   ULTRA PREMIUM ROOT CANAL END ============================== */


/* ==============================
   ULTRA PREMIUM TOOTH EXTRACTION
================================= */

.tooth-extraction-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.tooth-extraction-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.extraction-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.extraction-bg-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.extraction-bg-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.tooth-extraction-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 72px;
  align-items: center;
}

/* CONTENT */
.tooth-extraction-content {
  position: relative;
  z-index: 2;
}

.tooth-extraction-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tooth-extraction-content .section-tag::before {
  content: "\f5c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.tooth-extraction-content h2 {
  max-width: 730px;
  margin: 0 0 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.tooth-extraction-content p {
  max-width: 720px;
  margin: 0 0 30px;
  color: #587382;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

/* BENEFITS */
.extraction-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 30px 0 34px;
}

.extraction-benefits div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.35s ease;
}

.extraction-benefits div::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.10);
  transition: 0.35s ease;
}

.extraction-benefits div:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.extraction-benefits div:hover::before {
  transform: scale(1.18);
  background: rgba(0, 188, 212, 0.16);
}

.extraction-benefits i {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 12px 24px rgba(0, 166, 184, 0.25);
}

.extraction-benefits h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: #06283d;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.extraction-benefits p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #617989;
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 500;
}

/* ACTIONS */
.extraction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.extraction-actions .btn {
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.extraction-actions .btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow:
    0 18px 38px rgba(0, 166, 184, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.35s ease;
}

.extraction-actions .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.extraction-actions .btn-primary:hover,
.extraction-actions .btn-outline:hover {
  transform: translateY(-3px);
}

.extraction-actions .btn-outline:hover {
  color: #ffffff;
  background: #06283d;
}

/* IMAGE SIDE */
.tooth-extraction-image {
  position: relative;
  isolation: isolate;
}

.tooth-extraction-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.tooth-extraction-image::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -30px;
  height: 60px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(6, 40, 61, 0.23);
  filter: blur(22px);
}

.tooth-extraction-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
  transition: 0.65s ease;
}

.tooth-extraction-image:hover img {
  transform: translateY(-6px) scale(1.015);
}

/* FLOAT CARD */
.extraction-float-card {
  position: absolute;
  left: -18px;
  bottom: 34px;
  z-index: 4;
  width: 245px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: extractionFloat 4.5s ease-in-out infinite;
}

.extraction-float-card i {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.28);
}

.extraction-float-card strong {
  display: block;
  color: #06283d;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.extraction-float-card span {
  display: block;
  margin-top: 4px;
  color: #607989;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

@keyframes extractionFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ==============================
   RESPONSIVE TOOTH EXTRACTION
================================= */

@media (max-width: 1100px) {
  .tooth-extraction-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .tooth-extraction-content {
    text-align: center;
  }

  .tooth-extraction-content h2,
  .tooth-extraction-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .extraction-benefits {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
  }

  .extraction-benefits div {
    text-align: left;
  }

  .extraction-actions {
    justify-content: center;
  }

  .tooth-extraction-image {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .tooth-extraction-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .tooth-extraction-section {
    padding: 68px 0;
  }

  .tooth-extraction-section::before {
    background-size: 34px 34px;
  }

  .tooth-extraction-content .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .tooth-extraction-content .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .tooth-extraction-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .tooth-extraction-content p {
    font-size: 16px;
    line-height: 1.78;
  }

  .extraction-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 30px;
  }

  .extraction-benefits div {
    padding: 20px;
    border-radius: 21px;
  }

  .extraction-actions {
    flex-direction: column;
  }

  .extraction-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .tooth-extraction-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .tooth-extraction-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .extraction-float-card {
    left: 16px;
    bottom: 18px;
    width: 220px;
    padding: 15px;
    border-radius: 24px;
    animation: none;
  }

  .extraction-float-card i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .tooth-extraction-section {
    padding: 58px 0;
  }

  .tooth-extraction-content h2 {
    font-size: 30px;
  }

  .tooth-extraction-content p {
    font-size: 15px;
  }

  .extraction-benefits i {
    width: 40px;
    height: 40px;
  }

  .tooth-extraction-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .extraction-float-card {
    width: 195px;
    left: 12px;
    bottom: 14px;
    gap: 11px;
    padding: 13px;
    border-radius: 20px;
  }

  .extraction-float-card i {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .extraction-float-card strong {
    font-size: 14px;
  }

  .extraction-float-card span {
    font-size: 11px;
  }
}

/* ==============================   ULTRA PREMIUM TOOTH EXTRACTION END ============================== */

/*  ============== SERVIES SECTION END ============== */




/* ================ GALLERY SECTION START ================= */


/* ==============================
   GALLERY PAGE HERO
================================= */

.gallery-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0px 0 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(0, 125, 145, 0.14), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(232, 251, 255, 0.95), transparent 45%),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 48%, #eefcff 100%);
}

.gallery-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  pointer-events: none;
}

.gallery-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  z-index: -2;
  width: min(900px, 90%);
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

.gallery-hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.gallery-hero-shape.shape-one {
  width: 330px;
  height: 330px;
  left: -135px;
  top: 80px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.20), rgba(0, 125, 145, 0.08));
  filter: blur(4px);
}

.gallery-hero-shape.shape-two {
  width: 470px;
  height: 470px;
  right: -205px;
  bottom: -190px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(0, 125, 145, 0.13), rgba(0, 188, 212, 0.08));
  filter: blur(5px);
}

.gallery-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.gallery-page-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 14px 32px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.gallery-page-tag i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 9px 20px rgba(0, 166, 184, 0.26);
}

.gallery-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.03;
  letter-spacing: -2.8px;
  font-weight: 950;
}

.gallery-page-hero h1::after {
  content: "";
  display: block;
  width: min(190px, 45%);
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #00d5f0, #007d91, transparent);
  box-shadow: 0 12px 26px rgba(0, 166, 184, 0.24);
}

.gallery-page-hero p {
  max-width: 710px;
  margin: 0 auto 26px;
  color: #587382;
  font-size: 18px;
  line-height: 1.82;
  font-weight: 500;
}


/* ==============================
   ULTRA PREMIUM GALLERY
================================= */

.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.gallery-section::before,
.gallery-before-after-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.gallery-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.gallery-bg-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.gallery-bg-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.gallery-section .container,
.gallery-before-after-section .container {
  position: relative;
  z-index: 2;
}

.gallery-section .section-heading,
.gallery-before-after-section .section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
}

.gallery-section .section-tag,
.gallery-before-after-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.gallery-section .section-tag::before,
.gallery-before-after-section .section-tag::before {
  content: "\f03e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.gallery-section .section-heading h2,
.gallery-before-after-section .section-heading h2 {
  margin: 0 0 16px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.gallery-section .section-heading p,
.gallery-before-after-section .section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

/* TABS */
.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 42px;
}

.gallery-tabs button {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(6, 40, 61, 0.09);
  color: #526a7a;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 251, 255, 0.78));
  box-shadow:
    0 12px 28px rgba(6, 40, 61, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.3s ease;
}

.gallery-tabs button:hover,
.gallery-tabs button.active {
  color: #ffffff;
  border-color: transparent;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 18px 38px rgba(0, 166, 184, 0.24);
  transform: translateY(-3px);
}

/* GRID */
.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 245px;
  gap: 22px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 30px;
  background: #e8fbff;
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  isolation: isolate;
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  opacity: 0;
  transition: 0.42s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.7s ease;
}

.gallery-card:hover img {
  transform: scale(1.09);
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 30%, rgba(6, 40, 61, 0.78) 100%);
  opacity: 0;
  transition: 0.42s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  background: rgba(0, 166, 184, 0.88);
  backdrop-filter: blur(12px);
}

.gallery-overlay h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin: 0;
}

.gallery-overlay i {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #007d91;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}


/* ==============================
   BEFORE AFTER GALLERY
================================= */

.gallery-before-after-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.10), transparent 32%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.gallery-ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.gallery-ba-card {
  position: relative;
  overflow: hidden;
  padding: 14px 14px 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.gallery-ba-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.gallery-ba-images div {
  position: relative;
  overflow: hidden;
  height: 270px;
  border-radius: 24px;
  background: #e8fbff;
}

.gallery-ba-images div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 40, 61, 0.02), rgba(6, 40, 61, 0.22));
}

.gallery-ba-images span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  background: rgba(6, 40, 61, 0.68);
  backdrop-filter: blur(12px);
}

.gallery-ba-images div:nth-child(2) span {
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.gallery-ba-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-ba-card h3 {
  padding: 0 14px;
  color: #06283d;
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 9px;
}

.gallery-ba-card p {
  padding: 0 14px;
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}


/* ==============================
   RESPONSIVE GALLERY PAGE
================================= */

@media (max-width: 1200px) {
  .premium-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-card.large {
    grid-column: span 2;
  }

  .gallery-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {

  .gallery-page-hero,
  .gallery-section,
  .gallery-before-after-section {
    padding: 82px 0;
  }

  .premium-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-card.large,
  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-ba-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .gallery-page-hero {
    padding: 76px 0 70px;
  }

  .gallery-page-hero::before,
  .gallery-section::before,
  .gallery-before-after-section::before {
    background-size: 34px 34px;
  }

  .gallery-page-tag,
  .gallery-section .section-tag,
  .gallery-before-after-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .gallery-page-tag i,
  .gallery-section .section-tag::before,
  .gallery-before-after-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .gallery-page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .gallery-page-hero p,
  .gallery-section .section-heading p,
  .gallery-before-after-section .section-heading p {
    font-size: 16px;
    line-height: 1.75;
  }

  .gallery-section,
  .gallery-before-after-section {
    padding: 68px 0;
  }

  .gallery-section .section-heading h2,
  .gallery-before-after-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .gallery-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .gallery-tabs button {
    flex: 0 0 auto;
  }

  .premium-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 285px;
    gap: 18px;
  }

  .gallery-card {
    border-radius: 26px;
  }

  .gallery-overlay {
    opacity: 1;
    padding: 20px;
  }

  .gallery-overlay h3 {
    font-size: 20px;
  }

  .gallery-ba-images {
    grid-template-columns: 1fr;
  }

  .gallery-ba-images div {
    height: 245px;
  }
}

@media (max-width: 480px) {

  .gallery-page-hero,
  .gallery-section,
  .gallery-before-after-section {
    padding: 58px 0;
  }

  .gallery-page-hero h1 {
    font-size: 32px;
  }

  .gallery-page-hero p,
  .gallery-section .section-heading p,
  .gallery-before-after-section .section-heading p {
    font-size: 15px;
  }

  .gallery-section .section-heading,
  .gallery-before-after-section .section-heading {
    margin-bottom: 34px;
  }

  .gallery-section .section-heading h2,
  .gallery-before-after-section .section-heading h2 {
    font-size: 30px;
  }

  .premium-gallery-grid {
    grid-auto-rows: 245px;
  }

  .gallery-overlay i {
    width: 40px;
    height: 40px;
  }

  .gallery-ba-card {
    border-radius: 26px;
    padding: 10px 10px 24px;
  }

  .gallery-ba-images div {
    height: 220px;
    border-radius: 20px;
  }

  .gallery-ba-card h3 {
    font-size: 20px;
  }
}


/* ==============================  GALLERY SECTION END ================== */


/* ================ TESTIMONIALS SECTION START ================= */

/* ==============================
   TESTIMONIAL PAGE HERO
================================= */

.testimonial-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0 0 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(0, 125, 145, 0.14), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(232, 251, 255, 0.95), transparent 45%),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 48%, #eefcff 100%);
}

.testimonial-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  pointer-events: none;
}

.testimonial-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  z-index: -2;
  width: min(900px, 90%);
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

.testimonial-hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.testimonial-hero-shape.shape-one {
  width: 330px;
  height: 330px;
  left: -135px;
  top: 80px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.20), rgba(0, 125, 145, 0.08));
  filter: blur(4px);
}

.testimonial-hero-shape.shape-two {
  width: 470px;
  height: 470px;
  right: -205px;
  bottom: -190px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(0, 125, 145, 0.13), rgba(0, 188, 212, 0.08));
  filter: blur(5px);
}

.testimonial-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-page-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 14px 32px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.testimonial-page-tag i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 9px 20px rgba(0, 166, 184, 0.26);
}

.testimonial-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.03;
  letter-spacing: -2.8px;
  font-weight: 950;
}

.testimonial-page-hero h1::after {
  content: "";
  display: block;
  width: min(190px, 45%);
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #00d5f0, #007d91, transparent);
  box-shadow: 0 12px 26px rgba(0, 166, 184, 0.24);
}

.testimonial-page-hero p {
  max-width: 710px;
  margin: 0 auto 26px;
  color: #587382;
  font-size: 18px;
  line-height: 1.82;
  font-weight: 500;
}

/* ==============================
   RATING SUMMARY
================================= */

.rating-summary-section {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.rating-summary-section::before,
.testimonials-page-section::before,
.review-highlight-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.rating-shape,
.testimonials-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.rating-shape.shape-left,
.testimonials-bg-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.rating-shape.shape-right,
.testimonials-bg-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.rating-summary-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.rating-summary-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 28px 74px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.rating-summary-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.rating-score {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 14px;
}

.rating-score strong {
  color: #06283d;
  font-size: 72px;
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -3px;
}

.rating-score span {
  color: #007d91;
  font-size: 24px;
  font-weight: 950;
}

.rating-stars,
.review-stars {
  display: flex;
  gap: 5px;
  color: #ffc107;
  margin-bottom: 20px;
}

.rating-summary-card h3 {
  color: #06283d;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 12px;
}

.rating-summary-card p {
  color: #587382;
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0;
}

.rating-stat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rating-stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.35s ease;
}

.rating-stat-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 74px rgba(6, 40, 61, 0.13);
}

.rating-stat-box i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  color: #ffffff;
  font-size: 24px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.26);
}

.rating-stat-box strong {
  display: block;
  color: #06283d;
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 7px;
}

.rating-stat-box span {
  color: #617989;
  font-size: 14px;
  font-weight: 850;
}

/* ==============================
   TESTIMONIALS GRID
================================= */

.testimonials-page-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.testimonials-page-section .container,
.review-highlight-section .container {
  position: relative;
  z-index: 2;
}

.testimonials-page-section .section-heading {
  max-width: 820px;
  margin: 0 auto 56px;
}

.testimonials-page-section .section-tag,
.review-highlight-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.testimonials-page-section .section-tag::before,
.review-highlight-section .section-tag::before {
  content: "\f4ad";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.testimonials-page-section .section-heading h2,
.review-highlight-content h2 {
  margin: 0 0 16px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.testimonials-page-section .section-heading p,
.review-highlight-content p {
  max-width: 700px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-page-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 32px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
}

.testimonial-page-card::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -66px;
  top: -66px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  transition: 0.42s ease;
}

.testimonial-page-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
}

.testimonial-page-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.testimonial-page-card:hover::before {
  transform: scale(1.3);
  background: rgba(0, 188, 212, 0.16);
}

.testimonial-page-card:hover::after {
  transform: scaleX(1);
}

.featured-review {
  grid-column: span 2;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(145deg, rgba(232, 251, 255, 0.96), rgba(255, 255, 255, 0.94));
}

.quote-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.26);
}

.testimonial-page-card p {
  position: relative;
  z-index: 2;
  color: #526c7d;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 26px;
}

.review-author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 19px;
  font-weight: 950;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 12px 24px rgba(0, 166, 184, 0.22);
}

.review-author h4 {
  color: #06283d;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 5px;
}

.review-author span {
  color: #007d91;
  font-size: 13px;
  font-weight: 850;
}

/* ==============================
   REVIEW HIGHLIGHT
================================= */

.review-highlight-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.review-highlight-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.review-highlight-image {
  position: relative;
  isolation: isolate;
}

.review-highlight-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.review-highlight-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 34px 90px rgba(6, 40, 61, 0.18),
    0 12px 34px rgba(0, 166, 184, 0.11);
}

.review-highlight-badge {
  position: absolute;
  right: -18px;
  bottom: 34px;
  z-index: 4;
  width: 235px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(6, 40, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.review-highlight-badge i {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.review-highlight-badge strong {
  display: block;
  color: #06283d;
  font-size: 15px;
  font-weight: 950;
}

.review-highlight-badge span {
  display: block;
  color: #607989;
  font-size: 12px;
  font-weight: 850;
}

.review-highlight-content p {
  margin: 0 0 30px;
}

.review-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0 34px;
}

.review-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  color: #06283d;
  font-size: 15px;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow: 0 16px 40px rgba(6, 40, 61, 0.07);
}

.review-points i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  font-size: 14px;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

/* ==============================
   RESPONSIVE TESTIMONIAL PAGE
================================= */

@media (max-width: 1200px) {
  .testimonials-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-review {
    grid-column: span 2;
  }
}

@media (max-width: 1100px) {

  .rating-summary-grid,
  .review-highlight-grid {
    grid-template-columns: 1fr;
  }

  .review-highlight-image {
    max-width: 720px;
    margin: 0 auto;
  }

  .review-highlight-content {
    text-align: center;
  }

  .review-highlight-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {

  .testimonial-page-hero,
  .rating-summary-section,
  .testimonials-page-section,
  .review-highlight-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .testimonial-page-hero {
    padding: 76px 0 70px;
  }

  .testimonial-page-hero::before,
  .rating-summary-section::before,
  .testimonials-page-section::before,
  .review-highlight-section::before {
    background-size: 34px 34px;
  }

  .testimonial-page-tag,
  .testimonials-page-section .section-tag,
  .review-highlight-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .testimonial-page-tag i,
  .testimonials-page-section .section-tag::before,
  .review-highlight-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .testimonial-page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .testimonial-page-hero p,
  .testimonials-page-section .section-heading p,
  .review-highlight-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .rating-stat-list,
  .testimonials-page-grid,
  .review-points {
    grid-template-columns: 1fr;
  }

  .featured-review {
    grid-column: span 1;
  }

  .rating-summary-card,
  .testimonial-page-card {
    border-radius: 28px;
  }

  .rating-summary-card {
    padding: 30px 24px;
  }

  .rating-score strong {
    font-size: 58px;
  }

  .testimonial-page-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .review-highlight-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .review-highlight-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .review-highlight-badge {
    right: 16px;
    bottom: 18px;
    width: 215px;
    padding: 15px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {

  .testimonial-page-hero,
  .rating-summary-section,
  .testimonials-page-section,
  .review-highlight-section {
    padding: 58px 0;
  }

  .testimonial-page-hero h1 {
    font-size: 32px;
  }

  .testimonial-page-hero p,
  .testimonials-page-section .section-heading p,
  .review-highlight-content p {
    font-size: 15px;
  }

  .testimonials-page-section .section-heading h2,
  .review-highlight-content h2 {
    font-size: 30px;
  }

  .rating-stat-box {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .testimonial-page-card p {
    font-size: 15px;
  }

  .review-highlight-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .review-highlight-badge {
    width: 190px;
    right: 12px;
    bottom: 14px;
    gap: 11px;
    padding: 13px;
    border-radius: 20px;
  }

  .review-highlight-badge i {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
}

/* ==============================  TESTIMONIALS SECTION END ================== */


/* ================  FAQ SECTION START ================= */

/* ==============================
   FAQ PAGE HERO
================================= */

.faq-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0px 0 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(0, 125, 145, 0.14), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(232, 251, 255, 0.95), transparent 45%),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 48%, #eefcff 100%);
}

.faq-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  pointer-events: none;
}

.faq-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  z-index: -2;
  width: min(900px, 90%);
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

.faq-hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.faq-hero-shape.shape-one {
  width: 330px;
  height: 330px;
  left: -135px;
  top: 80px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.20), rgba(0, 125, 145, 0.08));
  filter: blur(4px);
}

.faq-hero-shape.shape-two {
  width: 470px;
  height: 470px;
  right: -205px;
  bottom: -190px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(0, 125, 145, 0.13), rgba(0, 188, 212, 0.08));
  filter: blur(5px);
}

.faq-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.faq-page-tag {
  display: inline-flex;
      margin-top: 10px;

  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 14px 32px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.faq-page-tag i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 9px 20px rgba(0, 166, 184, 0.26);
}

.faq-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.03;
  letter-spacing: -2.8px;
  font-weight: 950;
}

.faq-page-hero h1::after {
  content: "";
  display: block;
  width: min(190px, 45%);
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #00d5f0, #007d91, transparent);
  box-shadow: 0 12px 26px rgba(0, 166, 184, 0.24);
}

.faq-page-hero p {
  max-width: 710px;
  margin: 0 auto 26px;
  color: #587382;
  font-size: 18px;
  line-height: 1.82;
  font-weight: 500;
}


/* ==============================
   FAQ CATEGORY
================================= */

.faq-category-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.faq-category-section::before,
.faq-main-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.faq-category-shape,
.faq-main-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.faq-category-shape.shape-left,
.faq-main-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.faq-category-shape.shape-right,
.faq-main-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.faq-category-section .container,
.faq-main-section .container {
  position: relative;
  z-index: 2;
}

.faq-category-section .section-heading {
  max-width: 820px;
  margin: 0 auto 56px;
}

.faq-category-section .section-tag,
.faq-main-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.faq-category-section .section-tag::before,
.faq-main-section .section-tag::before {
  content: "\f059";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.faq-category-section .section-heading h2,
.faq-left-content h2 {
  margin: 0 0 16px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.faq-category-section .section-heading p,
.faq-left-content p {
  max-width: 700px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.faq-category-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 32px 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
}

.faq-category-card::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -66px;
  top: -66px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  transition: 0.42s ease;
}

.faq-category-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
}

.faq-category-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.10);
}

.faq-category-card:hover::before {
  transform: scale(1.3);
  background: rgba(0, 188, 212, 0.16);
}

.faq-category-card:hover::after {
  transform: scaleX(1);
}

.faq-category-card>i {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 26px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.26);
}

.faq-category-card h3 {
  position: relative;
  z-index: 2;
  color: #06283d;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 10px;
}

.faq-category-card p {
  position: relative;
  z-index: 2;
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}


/* ==============================
   FAQ MAIN ACCORDION
================================= */

.faq-main-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.faq-main-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.faq-left-content {
  position: sticky;
  top: 112px;
}

.faq-left-content p {
  margin: 0 0 28px;
}

.faq-support-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  margin: 30px 0;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 255, 0.84));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.faq-support-card i {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 12px 24px rgba(0, 166, 184, 0.25);
}

.faq-support-card strong {
  display: block;
  color: #06283d;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 4px;
}

.faq-support-card span {
  color: #617989;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 700;
}

.faq-left-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.faq-left-actions .btn {
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.faq-left-actions .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
  box-shadow:
    0 15px 34px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.faq-left-actions .btn-outline:hover {
  color: #ffffff;
  background: #06283d;
}

.faq-accordion {
  display: grid;
  gap: 16px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 16px 40px rgba(6, 40, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.35s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -52px;
  top: -52px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.09);
  transition: 0.35s ease;
}

.faq-item[open],
.faq-item:hover {
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 24px 58px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.faq-item[open]::before,
.faq-item:hover::before {
  transform: scale(1.2);
  background: rgba(0, 188, 212, 0.14);
}

.faq-item summary {
  position: relative;
  z-index: 2;
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #06283d;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 950;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  font-size: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 10px 22px rgba(0, 166, 184, 0.22);
  transition: 0.35s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 24px 24px;
  color: #587382;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}


/* ==============================
   FAQ CTA
================================= */

.faq-cta-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-cta-box {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border-radius: 38px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(135deg, #00bcd4, #007d91);
  box-shadow:
    0 28px 80px rgba(6, 40, 61, 0.18),
    0 14px 34px rgba(0, 166, 184, 0.18);
}

.faq-cta-box::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.faq-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.faq-cta-content span {
  display: block;
  font-size: 14px;
  font-weight: 900;
  opacity: 0.92;
  margin-bottom: 10px;
}

.faq-cta-content h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-weight: 950;
}

.faq-cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.faq-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}


/* ==============================
   RESPONSIVE FAQ PAGE
================================= */

@media (max-width: 1200px) {
  .faq-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-main-grid {
    gap: 34px;
  }
}

@media (max-width: 1100px) {
  .faq-main-grid {
    grid-template-columns: 1fr;
  }

  .faq-left-content {
    position: relative;
    top: auto;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
  }

  .faq-left-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-support-card {
    text-align: left;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-left-actions {
    justify-content: center;
  }
}

@media (max-width: 991px) {

  .faq-page-hero,
  .faq-category-section,
  .faq-main-section {
    padding: 82px 0;
  }

  .faq-cta-section {
    padding: 68px 0;
  }

  .faq-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .faq-page-hero {
    padding: 76px 0 70px;
  }

  .faq-page-hero::before,
  .faq-category-section::before,
  .faq-main-section::before {
    background-size: 34px 34px;
  }

  .faq-page-tag,
  .faq-category-section .section-tag,
  .faq-main-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .faq-page-tag i,
  .faq-category-section .section-tag::before,
  .faq-main-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .faq-page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .faq-page-hero p,
  .faq-category-section .section-heading p,
  .faq-left-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .faq-category-section,
  .faq-main-section {
    padding: 68px 0;
  }

  .faq-category-section .section-heading h2,
  .faq-left-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .faq-category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-category-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 30px;
  }

  .faq-category-card>i {
    width: 60px;
    height: 60px;
    border-radius: 21px;
    font-size: 23px;
  }

  .faq-item {
    border-radius: 22px;
  }

  .faq-item summary {
    padding: 19px 18px;
    font-size: 15px;
  }

  .faq-item summary i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .faq-item p {
    padding: 0 18px 20px;
    font-size: 14.5px;
  }

  .faq-left-actions {
    flex-direction: column;
  }

  .faq-left-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .faq-cta-box {
    padding: 32px 26px;
    border-radius: 30px;
  }

  .faq-cta-actions,
  .faq-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .faq-page-hero,
  .faq-category-section,
  .faq-main-section {
    padding: 58px 0;
  }

  .faq-page-hero h1 {
    font-size: 32px;
  }

  .faq-page-hero p,
  .faq-category-section .section-heading p,
  .faq-left-content p {
    font-size: 15px;
  }

  .faq-category-section .section-heading {
    margin-bottom: 34px;
  }

  .faq-category-section .section-heading h2,
  .faq-left-content h2 {
    font-size: 30px;
  }

  .faq-category-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .faq-support-card {
    padding: 17px;
    border-radius: 22px;
  }

  .faq-support-card i {
    width: 48px;
    height: 48px;
    border-radius: 17px;
  }

  .faq-item summary {
    align-items: flex-start;
  }

  .faq-cta-section {
    padding: 58px 0;
  }

  .faq-cta-box {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .faq-cta-content h2 {
    font-size: 28px;
  }

  .faq-cta-content p {
    font-size: 14.5px;
  }
}

/* ==============================  FAQ SECTION END ================== */

/* ================  CONTACT SECTION START ================= */

/* ==============================
   CONTACT PAGE HERO
================================= */

.contact-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0px 0 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(0, 125, 145, 0.14), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(232, 251, 255, 0.95), transparent 45%),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 48%, #eefcff 100%);
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  pointer-events: none;
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  z-index: -2;
  width: min(900px, 90%);
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

.contact-hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.contact-hero-shape.shape-one {
  width: 330px;
  height: 330px;
  left: -135px;
  top: 80px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.20), rgba(0, 125, 145, 0.08));
  filter: blur(4px);
}

.contact-hero-shape.shape-two {
  width: 470px;
  height: 470px;
  right: -205px;
  bottom: -190px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(0, 125, 145, 0.13), rgba(0, 188, 212, 0.08));
  filter: blur(5px);
}

.contact-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.contact-page-tag {
  display: inline-flex;
  align-items: center;
      margin-top: 10px;

  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 14px 32px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-page-tag i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 9px 20px rgba(0, 166, 184, 0.26);
}

.contact-page-hero h1 {
  max-width: 920px;
  margin: 0 auto 22px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.03;
  letter-spacing: -2.8px;
  font-weight: 950;
}

.contact-page-hero h1::after {
  content: "";
  display: block;
  width: min(190px, 45%);
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #00d5f0, #007d91, transparent);
  box-shadow: 0 12px 26px rgba(0, 166, 184, 0.24);
}

.contact-page-hero p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: #587382;
  font-size: 18px;
  line-height: 1.82;
  font-weight: 500;
}


/* ==============================
   CONTACT INFO CARDS
================================= */

.contact-info-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.contact-info-section::before,
.contact-main-section::before,
.contact-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
}

.contact-info-shape,
.contact-main-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.contact-info-shape.shape-left,
.contact-main-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.contact-info-shape.shape-right,
.contact-main-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.contact-info-section .container,
.contact-main-section .container,
.contact-map-section .container {
  position: relative;
  z-index: 2;
}

.contact-info-section .section-heading,
.contact-map-section .section-heading {
  max-width: 820px;
  margin: 0 auto 56px;
}

.contact-info-section .section-tag,
.contact-main-section .section-tag,
.contact-map-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 251, 255, 0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-info-section .section-tag::before,
.contact-main-section .section-tag::before,
.contact-map-section .section-tag::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.contact-info-section .section-heading h2,
.contact-form-card h2,
.contact-map-section .section-heading h2 {
  margin: 0 0 16px;
  color: #06283d;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.contact-info-section .section-heading p,
.contact-form-card p,
.contact-map-section .section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 32px 28px;
  border-radius: 34px;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.42s ease;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -66px;
  top: -66px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.11);
  transition: 0.42s ease;
}

.contact-info-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.42s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 166, 184, 0.22);
  box-shadow:
    0 34px 82px rgba(6, 40, 61, 0.14),
    0 14px 34px rgba(0, 166, 184, 0.10);
}

.contact-info-card:hover::before {
  transform: scale(1.3);
  background: rgba(0, 188, 212, 0.16);
}

.contact-info-card:hover::after {
  transform: scaleX(1);
}

.contact-info-card>i {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 26px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.26);
}

.contact-info-card span {
  position: relative;
  z-index: 2;
  display: block;
  color: #007d91;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 9px;
}

.contact-info-card h3 {
  position: relative;
  z-index: 2;
  color: #06283d;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 950;
  margin-bottom: 10px;
  word-break: break-word;
}

.contact-info-card p {
  position: relative;
  z-index: 2;
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}


/* ==============================
   CONTACT MAIN FORM
================================= */

.contact-main-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 30px;
  align-items: start;
}

.contact-form-card,
.clinic-timing-card,
.contact-help-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 28px 74px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-form-card {
  padding: 38px;
}

.contact-form-card::after,
.clinic-timing-card::after,
.contact-help-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.contact-form-card p {
  margin: 0 0 30px;
}

.premium-contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  color: #06283d;
  font-size: 13px;
  font-weight: 950;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(6, 40, 61, 0.10);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 252, 255, 0.82));
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  color: #06283d;
  font-size: 15px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.3s ease;
}

.form-group input,
.form-group select {
  height: 54px;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8aa0ac;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 166, 184, 0.42);
  box-shadow:
    0 0 0 4px rgba(0, 188, 212, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.premium-contact-form .btn {
  width: max-content;
  min-height: 56px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
}

.contact-side-card {
  display: grid;
  gap: 24px;
}

.clinic-timing-card,
.contact-help-card {
  padding: 30px;
}

.timing-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.timing-head>i,
.contact-help-card>i {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 24px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.26);
}

.timing-head span {
  display: block;
  color: #007d91;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timing-head h3,
.contact-help-card h3 {
  color: #06283d;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 950;
  margin: 0;
}

.clinic-timing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.clinic-timing-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6, 40, 61, 0.08);
}

.clinic-timing-list li:last-child {
  border-bottom: 0;
}

.clinic-timing-list span {
  color: #617989;
  font-size: 14px;
  font-weight: 800;
}

.clinic-timing-list strong {
  color: #06283d;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 950;
  text-align: right;
}

.contact-help-card>i {
  margin-bottom: 20px;
}

.contact-help-card p {
  color: #587382;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  margin: 12px 0 22px;
}

.contact-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-help-actions .btn {
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.contact-help-actions .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
}


/* ==============================
   CONTACT MAP
================================= */

.contact-map-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.contact-map-box {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 30px 84px rgba(6, 40, 61, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-map-box iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.contact-map-info {
  position: absolute;
  left: 30px;
  bottom: 30px;
  max-width: 390px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 22px 58px rgba(6, 40, 61, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-map-info h3 {
  color: #06283d;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 8px;
}

.contact-map-info p {
  color: #587382;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 18px;
}

.contact-map-info .btn-outline {
  color: #06283d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
}


/* ==============================
   RESPONSIVE CONTACT PAGE
================================= */

@media (max-width: 1200px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-side-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {

  .contact-page-hero,
  .contact-info-section,
  .contact-main-section,
  .contact-map-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .contact-page-hero {
    padding: 76px 0 70px;
  }

  .contact-page-hero::before,
  .contact-info-section::before,
  .contact-main-section::before,
  .contact-map-section::before {
    background-size: 34px 34px;
  }

  .contact-page-tag,
  .contact-info-section .section-tag,
  .contact-main-section .section-tag,
  .contact-map-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .contact-page-tag i,
  .contact-info-section .section-tag::before,
  .contact-main-section .section-tag::before,
  .contact-map-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .contact-page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .contact-page-hero p,
  .contact-info-section .section-heading p,
  .contact-form-card p,
  .contact-map-section .section-heading p {
    font-size: 16px;
    line-height: 1.75;
  }

  .contact-info-section,
  .contact-main-section,
  .contact-map-section {
    padding: 68px 0;
  }

  .contact-info-section .section-heading h2,
  .contact-form-card h2,
  .contact-map-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .contact-info-grid,
  .contact-side-card,
  .premium-contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .contact-info-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 30px;
  }

  .contact-info-card>i {
    width: 60px;
    height: 60px;
    border-radius: 21px;
    font-size: 23px;
  }

  .contact-form-card {
    padding: 28px 24px;
    border-radius: 30px;
  }

  .premium-contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  .clinic-timing-card,
  .contact-help-card {
    padding: 26px 22px;
    border-radius: 30px;
  }

  .clinic-timing-list li {
    flex-direction: column;
    gap: 5px;
  }

  .clinic-timing-list strong {
    text-align: left;
  }

  .contact-help-actions {
    flex-direction: column;
  }

  .contact-help-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-map-box {
    border-radius: 30px;
  }

  .contact-map-box iframe {
    height: 430px;
  }

  .contact-map-info {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 480px) {

  .contact-page-hero,
  .contact-info-section,
  .contact-main-section,
  .contact-map-section {
    padding: 58px 0;
  }

  .contact-page-hero h1 {
    font-size: 32px;
  }

  .contact-page-hero p,
  .contact-info-section .section-heading p,
  .contact-form-card p,
  .contact-map-section .section-heading p {
    font-size: 15px;
  }

  .contact-info-section .section-heading,
  .contact-map-section .section-heading {
    margin-bottom: 34px;
  }

  .contact-info-section .section-heading h2,
  .contact-form-card h2,
  .contact-map-section .section-heading h2 {
    font-size: 30px;
  }

  .contact-info-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .contact-form-card,
  .clinic-timing-card,
  .contact-help-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .timing-head {
    align-items: flex-start;
  }

  .timing-head>i,
  .contact-help-card>i {
    width: 54px;
    height: 54px;
    border-radius: 19px;
    font-size: 21px;
  }

  .contact-map-box {
    border-radius: 26px;
  }

  .contact-map-box iframe {
    height: 380px;
  }

  .contact-map-info {
    padding: 22px;
  }
}

/* ==============================  CONTACT SECTION END ================== */


/* ============ APPOINTMENT SECTION START =========== */
/* ==============================
   APPOINTMENT PAGE HERO
================================= */

.appointment-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 115px 0 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.18), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(0, 125, 145, 0.14), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(232, 251, 255, 0.95), transparent 45%),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 48%, #eefcff 100%);
}

.appointment-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 92%);
  pointer-events: none;
}

.appointment-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  z-index: -2;
  width: min(900px, 90%);
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

.appointment-hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.appointment-hero-shape.shape-one {
  width: 330px;
  height: 330px;
  left: -135px;
  top: 80px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.86), transparent 26%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.20), rgba(0, 125, 145, 0.08));
  filter: blur(4px);
}

.appointment-hero-shape.shape-two {
  width: 470px;
  height: 470px;
  right: -205px;
  bottom: -190px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.78), transparent 24%),
    linear-gradient(135deg, rgba(0, 125, 145, 0.13), rgba(0, 188, 212, 0.08));
  filter: blur(5px);
}

.appointment-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.appointment-page-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232,251,255,0.9));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 14px 32px rgba(0, 166, 184, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.appointment-page-tag i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 9px 20px rgba(0, 166, 184, 0.26);
}

.appointment-page-hero h1 {
  max-width: 920px;
  margin: 0 auto 22px;
  color: #06283d;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -2.8px;
  font-weight: 950;
}

.appointment-page-hero h1::after {
  content: "";
  display: block;
  width: min(190px, 45%);
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #00d5f0, #007d91, transparent);
  box-shadow: 0 12px 26px rgba(0, 166, 184, 0.24);
}

.appointment-page-hero p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: #587382;
  font-size: 18px;
  line-height: 1.82;
  font-weight: 500;
}


/* ==============================
   APPOINTMENT MAIN
================================= */

.appointment-main-section,
.appointment-process-section,
.appointment-guidelines-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.appointment-main-section,
.appointment-guidelines-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.12), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 125, 145, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.appointment-process-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 188, 212, 0.10), transparent 32%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.appointment-main-section::before,
.appointment-process-section::before,
.appointment-guidelines-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 184, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 184, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.74), transparent);
  pointer-events: none;
}

.appointment-main-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.appointment-main-shape.shape-left {
  width: 560px;
  height: 560px;
  left: -300px;
  top: 80px;
  background: rgba(0, 188, 212, 0.10);
}

.appointment-main-shape.shape-right {
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -250px;
  background: rgba(0, 125, 145, 0.09);
}

.appointment-main-section .container,
.appointment-process-section .container,
.appointment-guidelines-section .container {
  position: relative;
  z-index: 2;
}

.appointment-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 30px;
  align-items: start;
}

.appointment-form-card,
.appointment-side-card,
.appointment-help-card,
.appointment-note-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,0.95), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,252,255,0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 28px 74px rgba(6, 40, 61, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.appointment-form-card {
  padding: 38px;
}

.appointment-form-card::after,
.appointment-side-card::after,
.appointment-help-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00d5f0, #007d91);
}

.appointment-form-card .section-tag,
.appointment-process-section .section-tag,
.appointment-guidelines-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #007d91;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232,251,255,0.88));
  border: 1px solid rgba(0, 166, 184, 0.16);
  box-shadow:
    0 12px 28px rgba(0, 166, 184, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.appointment-form-card .section-tag::before,
.appointment-process-section .section-tag::before,
.appointment-guidelines-section .section-tag::before {
  content: "\f274";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,0.38), transparent 30%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 8px 18px rgba(0, 166, 184, 0.25);
}

.appointment-form-card h2,
.appointment-process-section .section-heading h2,
.appointment-guidelines-content h2 {
  margin: 0 0 16px;
  color: #06283d;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.appointment-form-card p,
.appointment-process-section .section-heading p,
.appointment-guidelines-content p {
  max-width: 700px;
  margin: 0 0 30px;
  color: #587382;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

/* FORM */
.premium-appointment-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.premium-appointment-form .form-group {
  display: grid;
  gap: 8px;
}

.premium-appointment-form .form-group.full {
  grid-column: span 2;
}

.premium-appointment-form label {
  color: #06283d;
  font-size: 13px;
  font-weight: 950;
}

.premium-appointment-form input,
.premium-appointment-form select,
.premium-appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 40, 61, 0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(242,252,255,0.82));
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  color: #06283d;
  font-size: 15px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  transition: 0.3s ease;
}

.premium-appointment-form input,
.premium-appointment-form select {
  height: 54px;
}

.premium-appointment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.premium-appointment-form input::placeholder,
.premium-appointment-form textarea::placeholder {
  color: #8aa0ac;
}

.premium-appointment-form input:focus,
.premium-appointment-form select:focus,
.premium-appointment-form textarea:focus {
  border-color: rgba(0, 166, 184, 0.42);
  box-shadow:
    0 0 0 4px rgba(0, 188, 212, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.premium-appointment-form .btn {
  width: max-content;
  min-height: 56px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
}

/* SIDE */
.appointment-side-wrap {
  display: grid;
  gap: 24px;
}

.appointment-side-card,
.appointment-help-card,
.appointment-note-card {
  padding: 30px;
}

.appointment-side-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.appointment-side-head > i,
.appointment-help-card > i,
.appointment-note-card > i {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 24px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0, #007d91);
  box-shadow: 0 14px 28px rgba(0, 166, 184, 0.26);
}

.appointment-side-head span {
  display: block;
  color: #007d91;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.appointment-side-head h3,
.appointment-help-card h3 {
  color: #06283d;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 950;
  margin: 0;
}

.appointment-timing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.appointment-timing-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6, 40, 61, 0.08);
}

.appointment-timing-list li:last-child {
  border-bottom: 0;
}

.appointment-timing-list span {
  color: #617989;
  font-size: 14px;
  font-weight: 800;
}

.appointment-timing-list strong {
  color: #06283d;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 950;
  text-align: right;
}

.appointment-help-card > i {
  margin-bottom: 20px;
}

.appointment-help-card p {
  color: #587382;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  margin: 12px 0 22px;
}

.appointment-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.appointment-help-actions .btn {
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.appointment-help-actions .btn-outline {
  color: #06283d;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(6, 40, 61, 0.13);
}

.appointment-note-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.appointment-note-card > i {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  font-size: 21px;
}

.appointment-note-card strong {
  display: block;
  color: #06283d;
  font-size: 16px;
  font-weight: 950;
  margin-bottom: 6px;
}

.appointment-note-card span {
  display: block;
  color: #617989;
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 700;
}


/* ==============================
   APPOINTMENT PROCESS
================================= */

.appointment-process-section .section-heading {
  max-width: 820px;
  margin: 0 auto 56px;
}

.appointment-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.appointment-process-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 32px 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,252,255,0.90));
  border: 1px solid rgba(6, 40, 61, 0.08);
  box-shadow:
    0 20px 52px rgba(6, 40, 61, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transition: 0.42s ease;
}

.appointment-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 82px rgba(6, 40, 61, 0.14);
}

.appointment-process-card > span {
  position: absolute;
  right: 26px;
  top: 24px;
  color: rgba(0, 166, 184, 0.12);
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
}

.appointment-process-card i {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 27px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,0.42), transparent 32%),
    linear-gradient(135deg, #00d5f0 0%, #00a6b8 45%, #007d91 100%);
  box-shadow: 0 18px 36px rgba(0, 166, 184, 0.32);
}

.appointment-process-card h3 {
  color: #06283d;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 10px;
}

.appointment-process-card p {
  color: #617989;
  font-size: 14.5px;
  line-height: 1.75;
}


/* ==============================
   APPOINTMENT GUIDELINES
================================= */

.appointment-guidelines-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 72px;
  align-items: center;
}

.appointment-guidelines-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.appointment-guidelines-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border-radius: 22px;
  color: #06283d;
  font-size: 15px;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(242,252,255,0.84));
  border: 1px solid rgba(6,40,61,0.08);
  box-shadow: 0 16px 40px rgba(6,40,61,0.07);
}

.appointment-guidelines-list i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.appointment-guidelines-image {
  position: relative;
  isolation: isolate;
}

.appointment-guidelines-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  border-radius: 52px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.95), transparent 28%),
    linear-gradient(135deg, rgba(0, 213, 240, 0.24), rgba(0, 125, 145, 0.10));
}

.appointment-guidelines-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  border: 12px solid rgba(255,255,255,0.86);
  box-shadow: 0 34px 90px rgba(6,40,61,0.18);
}

.guidelines-float-card {
  position: absolute;
  left: -18px;
  bottom: 34px;
  width: 245px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 24px 64px rgba(6,40,61,0.22);
  backdrop-filter: blur(16px);
}

.guidelines-float-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #00d5f0, #007d91);
}

.guidelines-float-card strong {
  display: block;
  color: #06283d;
  font-weight: 950;
}

.guidelines-float-card span {
  color: #607989;
  font-size: 12px;
  font-weight: 850;
}


/* ==============================
   RESPONSIVE APPOINTMENT PAGE
================================= */

@media (max-width: 1200px) {
  .appointment-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .appointment-main-grid {
    grid-template-columns: 1fr;
  }

  .appointment-side-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .appointment-note-card {
    grid-column: span 2;
  }
}

@media (max-width: 1100px) {
  .appointment-guidelines-grid {
    grid-template-columns: 1fr;
  }

  .appointment-guidelines-content {
    text-align: center;
  }

  .appointment-guidelines-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .appointment-guidelines-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .appointment-guidelines-list li {
    text-align: left;
  }

  .appointment-guidelines-image {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .appointment-page-hero,
  .appointment-main-section,
  .appointment-process-section,
  .appointment-guidelines-section {
    padding: 82px 0;
  }
}

@media (max-width: 767px) {
  .appointment-page-hero {
    padding: 76px 0 70px;
  }

  .appointment-page-hero::before,
  .appointment-main-section::before,
  .appointment-process-section::before,
  .appointment-guidelines-section::before {
    background-size: 34px 34px;
  }

  .appointment-page-tag,
  .appointment-form-card .section-tag,
  .appointment-process-section .section-tag,
  .appointment-guidelines-section .section-tag {
    font-size: 12px;
    padding: 8px 13px;
  }

  .appointment-page-tag i,
  .appointment-form-card .section-tag::before,
  .appointment-process-section .section-tag::before,
  .appointment-guidelines-section .section-tag::before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .appointment-page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .appointment-page-hero p,
  .appointment-form-card p,
  .appointment-process-section .section-heading p,
  .appointment-guidelines-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .appointment-main-section,
  .appointment-process-section,
  .appointment-guidelines-section {
    padding: 68px 0;
  }

  .appointment-form-card h2,
  .appointment-process-section .section-heading h2,
  .appointment-guidelines-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.2px;
  }

  .premium-appointment-form,
  .appointment-side-wrap,
  .appointment-process-grid {
    grid-template-columns: 1fr;
  }

  .premium-appointment-form .form-group.full,
  .appointment-note-card {
    grid-column: span 1;
  }

  .appointment-form-card,
  .appointment-side-card,
  .appointment-help-card,
  .appointment-note-card {
    padding: 26px 22px;
    border-radius: 30px;
  }

  .premium-appointment-form .btn {
    width: 100%;
    justify-content: center;
  }

  .appointment-timing-list li {
    flex-direction: column;
    gap: 5px;
  }

  .appointment-timing-list strong {
    text-align: left;
  }

  .appointment-help-actions {
    flex-direction: column;
  }

  .appointment-help-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .appointment-process-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 28px;
  }

  .appointment-guidelines-image::before {
    inset: -10px;
    border-radius: 38px;
  }

  .appointment-guidelines-image img {
    height: 410px;
    border-radius: 30px;
    border-width: 8px;
  }

  .guidelines-float-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .appointment-page-hero,
  .appointment-main-section,
  .appointment-process-section,
  .appointment-guidelines-section {
    padding: 58px 0;
  }

  .appointment-page-hero h1 {
    font-size: 32px;
  }

  .appointment-page-hero p,
  .appointment-form-card p,
  .appointment-process-section .section-heading p,
  .appointment-guidelines-content p {
    font-size: 15px;
  }

  .appointment-form-card h2,
  .appointment-process-section .section-heading h2,
  .appointment-guidelines-content h2 {
    font-size: 30px;
  }

  .appointment-form-card,
  .appointment-side-card,
  .appointment-help-card,
  .appointment-note-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .appointment-side-head {
    align-items: flex-start;
  }

  .appointment-side-head > i,
  .appointment-help-card > i,
  .appointment-note-card > i {
    width: 54px;
    height: 54px;
    border-radius: 19px;
    font-size: 21px;
  }

  .appointment-process-card {
    padding: 24px 20px;
  }

  .appointment-process-card i {
    width: 60px;
    height: 60px;
    border-radius: 21px;
    font-size: 23px;
  }

  .appointment-guidelines-image img {
    height: 335px;
    border-radius: 26px;
    border-width: 7px;
  }

  .appointment-guidelines-list li {
    align-items: flex-start;
    padding: 15px;
    border-radius: 18px;
  }
}

.alert-success {
  padding: 14px 16px;
  border: 1px solid #BBF7D0;
  border-radius: 14px;
  background: #F0FDF4;
  color: #166534;
  font-size: 14px;
  font-weight: 600;
}

.text-danger {
  display: block;
  margin-top: 7px;
  color: #DC2626;
  font-size: 12px;
  font-weight: 600;
}
