:root {
  --hpGold: #f6b707;
  --hpRed: #cd2029;
  --hpDark: #001a23;
  --hpDark2: #002935;

  --hpText: #0f172a;
  --hpMuted: #64748b;
  --hpBorder: rgba(15, 23, 42, .12);

  --hpCard: rgba(255, 255, 255, .90);
  --hpShadow: 0 18px 55px rgba(15, 23, 42, .12);
  --hpShadow2: 0 28px 85px rgba(15, 23, 42, .14);
  --hpRadius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  
  color: var(--hpText);
  background: #fff;
}


/* Main Hero */
.doctor-hero {
  position: relative;
  /* min-height: 700px; */
  background: linear-gradient(135deg, #07539e 0%, #0774ca 100%);
  color: #ffffff;
  overflow: hidden;
}

/* Dark wave shape */
.doctor-hero::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 0px;
  width: 660px;
  height: 270px;
  background: rgba(0, 38, 91, 0.2);
  border-radius: 55% 55% 0 0;
  z-index: 1;
}

/* Light big shape right */
.doctor-hero::after {
  content: "";
  position: absolute;
  right: 80px;
  bottom: -115px;
  width: 540px;
  height: 395px;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

/* Decorations */
.hero-dot-top {
  position: absolute;
  left: 35px;
  top: -12px;
  font-size: 28px;
  letter-spacing: 12px;
  color: rgba(255, 255, 255, 0.9);
  z-index: 3;
}

.hero-dot-bottom {
  position: absolute;
  right: 28px;
  bottom: 145px;
  font-size: 28px;
  letter-spacing: 12px;
  color: rgba(255, 255, 255, 0.95);
  z-index: 3;
}

.hero-left-circle {
  position: absolute;
  left: -75px;
  top: 92px;
  width: 155px;
  height: 155px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.hero-right-white-circle {
  position: absolute;
  right: -85px;
  top: -125px;
  width: 225px;
  height: 225px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 2;
}

.hero-ring-circle {
  position: absolute;
  right: -60px;
  top: 165px;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    rgba(255, 255, 255, 0.24) 0 2px,
    transparent 3px 12px
  );
  z-index: 2;
}

/* Container */
.hero-container {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Left Text */
.hero-content {
  max-width: 570px;
}

.doctor-name {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
}

.doctor-name span {
  width: 74px;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  display: inline-block;
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.22;
  /* font-weight: 800; */
  /* letter-spacing: 3px; */
  margin-bottom: 28px;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 34px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 195px;
  height: 52px;
  background: #ffffff;
  color: #1268b6;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #eaf5ff;
  transform: translateY(-3px);
}

/* Image Area */
.hero-image-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot-pattern {
  position: absolute;
  left: 25px;
  bottom: 18px;
  width: 190px;
  height: 150px;
  background-image: radial-gradient(#ffffff 2px, transparent 2px);
  background-size: 11px 11px;
  opacity: 0.72;
  z-index: 1;
}

.doctor-image-circle {
  position: relative;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #ffffff;
  padding: 28px;
  z-index: 3;
  box-shadow: 0 20px 45px rgba(0, 30, 80, 0.22);
}

.doctor-image-circle::before {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 18px solid #004f98;
  z-index: 2;
  pointer-events: none;
}

.doctor-image-circle img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  z-index: 1;
}


/* Responsive */
@media (max-width: 991px) {
  .doctor-hero {
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding: 90px 24px 45px;
  }

  .hero-image-area {
    order: 1;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  .doctor-name {
    justify-content: center;
  }

  .doctor-name span {
    width: 50px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .doctor-image-circle {
    width: 350px;
    height: 350px;
    padding: 22px;
  }

  .doctor-image-circle::before {
    inset: 48px;
    border-width: 14px;
  }
}

@media (max-width: 575px) {
  .hero-container {
    padding: 70px 18px 35px;
  }
  .hero-right-white-circle{
    width: 180px;
    height: 180px;
   
  }

  .hero-content h1 {
    font-size: 34px;
    /* letter-spacing: 1.5px; */
  }

  .hero-content p {
    font-size: 13px;
  }

  .doctor-image-circle {
    width: 270px;
    height: 270px;
    padding: 17px;
  }

  .doctor-image-circle::before {
    inset: 25px;
    border-width: 11px;
  }

}



/* section */
.hpSection {
  padding: 72px 0;
}

.hpText {
  color: var(--hpMuted);
  line-height: 1.75;
  /* font-weight: 600; */
}

.hpTextMax {
  max-width: 100%;
}

.hpHead {
  margin-bottom: 22px;
}

.hpHeadRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.hpKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(246, 183, 7, .10);
  border: 1px solid rgba(246, 183, 7, .22);
  /* font-weight: 900; */
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--hpDark2);
}

.hpKDot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--hpRed);
  box-shadow: 0 0 0 6px rgba(205, 32, 41, .10);
}

.hpH1 {
  /* font-weight: 1000; */
  letter-spacing: -.02em;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.07;
  margin: 14px 0 12px;
}

.hpH1 span {
  color: var(--hpGold);
}

.hpH2 {
  /* font-weight: 1000; */
  letter-spacing: -.02em;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.12;
  margin: 12px 0;
}

/* ===== Buttons ===== */
.hpBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  /* font-weight: 950; */
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, .10);
  transition: transform .18s ease, filter .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}

.hpBtn:focus {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(246, 183, 7, .22);
}

.hpBtnPrimary {
  color: #fff;
  background: linear-gradient(180deg, var(--hpDark), var(--hpDark2));
  border-color: rgba(246, 183, 7, .55);
}

.hpBtnPrimary:hover {
  filter: brightness(1.06);
  color: #fff;
  transform: translateY(-1px);
}

.hpBtnGhost {
  color: var(--hpDark2);
  background: rgba(255, 255, 255, .70);
  border-color: rgba(15, 23, 42, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hpBtnGhost:hover {
  background: rgba(246, 183, 7, .10);
  border-color: rgba(246, 183, 7, .25);
  transform: translateY(-1px);
}

.hpBtnSoft {
  color: var(--hpDark2);
  background: rgba(246, 183, 7, .14);
  border-color: rgba(246, 183, 7, .28);
}

.hpBtnSoft:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}


/* =========================
   FULL SCREEN HERO SLIDER
   ========================= */

/* Section */
.hpHero {
  position: relative;
  padding: 0px;
  min-height: 87vh;
  background: linear-gradient(180deg, #f9fcfd, #eef4f7);
  overflow: hidden;
}

/* top wave */
.hpHero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 70%;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(0, 160, 180, .18), transparent 60%),
    radial-gradient(60% 80% at 20% 10%, rgba(205, 32, 41, .12), transparent 65%);
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

/* bottom softness */
.hpHero::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% -30%;
  height: 60%;
  background:
    radial-gradient(50% 70% at 50% 100%, rgba(0, 120, 255, .12), transparent 65%);
}


/* Carousel shell */
.hpCarousel {
  width: 100%;
  min-height: 87vh;
  border-radius: 0px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 30px 90px rgba(15, 23, 42, .12);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Bootstrap height fixes */
.hpCarousel,
.hpCarousel .carousel-inner,
.hpCarousel .carousel-item {
  height: 87vh;
}

/* ===== Modern Shape Background for Hero Carousel ===== */
.hpCarousel {
  position: relative;
  overflow: hidden;
}

/* ensure slide content stays above shapes */
.hpCarousel .carousel-inner {
  position: relative;
  isolation: isolate;
  /* keeps pseudo elements behind content */
  border-radius: 10px;
  /* matches your shell */
  background: #ffffff;
}

/* SHAPE LAYER */
.hpCarousel .carousel-inner::before,
.hpCarousel .carousel-inner::after {
  content: "";
  position: absolute;
  inset: -80px;
  z-index: -1;
  pointer-events: none;
}

/* Top-right “blob + ring” */
.hpCarousel .carousel-inner::before {
  background:
    radial-gradient(420px 320px at 82% 18%, rgba(0, 163, 255, .22), transparent 60%),
    radial-gradient(360px 260px at 78% 22%, rgba(0, 255, 209, .18), transparent 62%),
    radial-gradient(260px 220px at 88% 8%, rgba(205, 32, 41, .12), transparent 62%),
    conic-gradient(from 210deg at 84% 20%,
      rgba(246, 183, 7, .22), rgba(0, 163, 255, .15), rgba(0, 255, 209, .12), rgba(246, 183, 7, .22));
  filter: blur(0px);
  opacity: .9;
  transform: rotate(-4deg);
  clip-path: ellipse(55% 42% at 78% 22%);
}

/* Bottom-left “wave sheet + soft glow” */
.hpCarousel .carousel-inner::after {
  background:
    radial-gradient(620px 420px at 18% 82%, rgba(246, 183, 7, .18), transparent 65%),
    radial-gradient(520px 380px at 18% 88%, rgba(205, 32, 41, .12), transparent 70%),
    radial-gradient(520px 380px at 30% 92%, rgba(0, 163, 255, .10), transparent 70%),
    linear-gradient(135deg, rgba(0, 41, 53, .06), transparent 45%);
  opacity: 1;
  transform: rotate(6deg);
  clip-path: polygon(0% 55%,
      12% 50%,
      26% 54%,
      40% 48%,
      56% 52%,
      70% 46%,
      86% 50%,
      100% 45%,
      100% 100%,
      0% 100%);
}

/* Optional: add a very subtle texture so it feels “designed” */
.hpCarousel .carousel-inner {
  background-image:
    radial-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
}


/* Slide */
.hpSlide {
  height: 100%;
  padding: clamp(20px, 3vw, 48px);
  display: flex;
  align-items: center;
}

/* Left content */
.hpH1 {
  margin: 10px 0;
  /* font-weight: 1000; */
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--hpDark2);
}

.hpH1 span {
  color: var(--hpRed);
}

.hpLead {
  margin: 0;
  color: #334155;
  /* font-weight: 650; */
  line-height: 1.85;
  max-width: 100%;
}

/* Badge */
.hpBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 41, 53, .06);
  border: 1px solid rgba(0, 41, 53, .10);
  color: var(--hpDark2);
  /* font-weight: 900; */
  font-size: 13px;
}

.hpBadge i {
  color: var(--hpRed);
}

.hpBadgeAlt i {
  color: var(--hpGold);
}

.hpBadgeGreen i {
  color: #16a34a;
}

/* CTA row */
.hpActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Hint */
.hpHeroHint {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px dashed rgba(15, 23, 42, .18);
  background: rgba(255, 255, 255, .78);
  color: #334155;
  /* font-weight: 750; */
}

.hpHeroHint i {
  color: var(--hpGold);
}

.hpHeroHintAlt i {
  color: var(--hpRed);
}

/* Right image card */
.hpHeroCard {
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .86);
  overflow: hidden;
  box-shadow: var(--hpShadow2);
}

.hpHeroCardAlt {
  background: rgba(255, 255, 255, .92);
}

/* Media */
.hpHeroMedia {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hpHeroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Overlay */
.hpHeroMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .25));
}

/* Glow */
.hpGlow {
  position: absolute;
  inset: auto -40px -60px -40px;
  height: 160px;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 183, 7, .32), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(205, 32, 41, .22), transparent 65%);
  pointer-events: none;
}


/* Arrows */
.hpArrow {
  opacity: .45;
  transition: opacity .2s ease;
}

.hpArrow:hover {
  opacity: .9;
}

.hpArrow .carousel-control-prev-icon,
.hpArrow .carousel-control-next-icon {
  filter: drop-shadow(0 10px 20px rgba(15, 23, 42, .28));
}

/* Motion */
.hpCarousel .carousel-item {
  transition: transform .7s ease, opacity .45s ease;
}

.hpSlide {
  animation: hpSlideIn .6s ease both;
}

.hpCarousel {
  position: relative;
}

.hpDotsCustom {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  margin: 0;
  z-index: 50;
}

.hpDotsCustom button {
  width: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px;
  background: #0f0f0f !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

.hpDotsCustom button.active {
  width: 28px !important;
  background: #ff3158 !important;
}

.hpArrow {
  z-index: 51;
}

@keyframes hpSlideIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

/* Mobile fix */
@media (max-width: 991.98px) {

  .hpCarousel,
  .hpCarousel .carousel-inner,
  .hpCarousel .carousel-item {
    height: auto;
    min-height: 100vh;
  }

  .hpSlide {
    padding: 22px 18px;
  }

  .hpHeroCard {
    height: auto;
  }

  .hpHeroMedia {
    height: 260px;
  }
}

@media (max-width: 527.98px) {

  .hpCarousel,
  .hpCarousel .carousel-inner,
  .hpCarousel .carousel-item {
    height: auto;
    min-height: 100%;
  }

  .hpHero {
    position: relative;
    padding: 10px;
    min-height: 87vh;

  }
}



/* ===== ABOUT ===== */
.hpAbout {
  background: #fff;
}

.hpAboutMedia {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: var(--hpShadow);
}

.hpAboutMedia img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.hpAboutMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .22));
  pointer-events: none;
}

.hpAboutFloat {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .12);
  z-index: 2;
}

.hpAboutFloatT {
  margin: 0;
  /* font-weight: 1000; */
  color: var(--hpDark2);
}

.hpAboutFloatS {
  margin: 0;
  color: var(--hpMuted);
  /* font-weight: 700; */
}

.hpAboutGrid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hpAboutCard {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 10px;
  background: rgba(0, 41, 53, .04);
  border: 1px solid rgba(0, 41, 53, .08);
}

.hpAboutCard i {
  color: var(--hpGold);
  font-size: 18px;
  margin-top: 2px;
}

.hpAboutCard strong {
  display: block;
  /* font-weight: 1000; */
}

.hpAboutCard span {
  display: block;
  color: var(--hpMuted);
  /* font-weight: 700; */
  font-size: 13px;
}

.hpAboutStats {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hpStatBox {
  flex: 1 1 150px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 40px rgba(15, 23, 42, .06);
}

.hpSBNum {
  display: block;
  /* font-weight: 1100; */
  font-size: 26px;
  color: var(--hpDark2);
}

.hpSBTxt {
  display: block;
  color: var(--hpMuted);
  /* font-weight: 800; */
}

.hpAboutActions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== SERVICES ===== */
.hpServices {
  background:
    radial-gradient(1200px 520px at 0% 0%, rgba(246, 183, 7, .10), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7fbfb);
}

.hpSvcCard {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px;
  border-radius: var(--hpRadius);
  text-decoration: none;
  color: var(--hpText);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .10);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hpSvcCard::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto -80px;
  height: 160px;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 209, .16), transparent 60%),
    radial-gradient(circle at 85% 15%, rgba(0, 163, 255, .16), transparent 60%);
  pointer-events: none;
}

.hpSvcTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hpSvcIcon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(246, 183, 7, .16);
  border: 1px solid rgba(246, 183, 7, .28);
  color: var(--hpDark2);
  font-size: 18px;
}

.hpSvcTag {
  /* font-weight: 1000; */
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .68);
}

.hpSvcCard h3 {
  margin: 2px 0 0;
  /* font-weight: 1000; */
  letter-spacing: -.01em;
}

.hpSvcCard p {
  margin: 0;
  color: var(--hpMuted);
  line-height: 1.7;
  /* font-weight: 650; */
}

.hpSvcMeta {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(15, 23, 42, .70);
  /* font-weight: 800; */
  font-size: 13px;
  position: relative;
}

.hpSvcMeta i {
  color: var(--hpGold);
}

.hpSvcArrow {
  margin-top: 6px;
  /* font-weight: 1000; */
  color: var(--hpDark2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.hpSvcCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, .14);
  border-color: rgba(246, 183, 7, .25);
}

.hpSvcCardCTA {
  background:
    radial-gradient(1000px 420px at 0% 0%, rgba(0, 255, 209, .16), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(0, 163, 255, .18), transparent 55%),
    linear-gradient(180deg, var(--hpDark), var(--hpDark2));
  color: #fff;
  border-color: rgba(246, 183, 7, .45);
}

.hpSvcCardCTA p,
.hpSvcCardCTA .hpSvcTag {
  color: rgba(255, 255, 255, .80);
}

.hpSvcCardCTA .hpSvcIcon {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.hpSvcCTA {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  /* font-weight: 1000; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== UNIQUE PROCESS: ZIG-ZAG TIMELINE ===== */
.hpProcessZig {
  background:
    radial-gradient(1200px 520px at 0% 0%, rgba(205, 32, 41, .08), transparent 60%),
    radial-gradient(1000px 520px at 100% 0%, rgba(0, 163, 255, .10), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7fbfb);
}

/* wrapper */
.hpZig {
  margin-top: 24px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 14px 4px 8px;
}

/* glowing rail */
.hpZig::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(205, 32, 41, .55), rgba(246, 183, 7, .55), rgba(0, 163, 255, .45));
  box-shadow: 0 0 0 6px rgba(246, 183, 7, .06), 0 18px 60px rgba(0, 0, 0, .08);
  opacity: .95;
  pointer-events: none;
}

/* item structure */
.hpZItem {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  min-height: 260px;
  min-width: 0;
}

/* alternate card positions */
.hpZItem:nth-child(odd) {
  grid-template-rows: auto 1fr;
}

.hpZItem:nth-child(odd) .hpZCard {
  align-self: end;
  margin-bottom: 14px;
}

.hpZItem:nth-child(even) .hpZCard {
  align-self: start;
  margin-top: 14px;
}

/* dot */
.hpZDot {
  width: 54px;
  height: 54px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .14);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .12);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.hpZDot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 20%, rgba(246, 183, 7, .30), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(205, 32, 41, .22), transparent 55%);
  z-index: -1;
  opacity: .9;
}

.hpZDot span {
  color: var(--hpRed);
  letter-spacing: .6px;
}

/* card */
.hpZCard {
  width: 100%;
  min-width: 0;
  padding: 16px 16px 14px;
  border-radius: var(--hpRadius);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
  z-index: 1;
}

.hpZCard::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(205, 32, 41, .38), rgba(246, 183, 7, .35), rgba(0, 163, 255, .30));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .22s ease;
}

.hpZCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 85px rgba(15, 23, 42, .12);
  border-color: rgba(246, 183, 7, .18);
}

.hpZCard:hover::before {
  opacity: 1;
}

.hpZTag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .5px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(205, 32, 41, .10);
  color: var(--hpRed);
  border: 1px solid rgba(205, 32, 41, .18);
}

.hpZCard h3 {
  margin: 10px 0 6px;
}

.hpZCard p {
  margin: 0;
  color: var(--hpMuted);
  line-height: 1.7;
}

/* tablet */
@media (max-width: 1100px) {
  .hpZig {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hpZig::before {
    left: 8%;
    right: 8%;
    top: 50%;
  }

  .hpZItem {
    min-height: 250px;
  }
}

/* mobile */
@media (max-width: 640px) {
  .hpZig {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
    margin-top: 18px;
  }

  .hpZig::before {
    left: 21px;
    top: 0;
    bottom: 0;
    right: auto;
    width: 2px;
    height: auto;
    transform: none;
  }

  .hpZItem {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto;
    column-gap: 12px;
    align-items: start;
    justify-items: stretch;
    min-height: unset;
  }

  .hpZItem:nth-child(odd),
  .hpZItem:nth-child(even) {
    grid-template-rows: auto;
  }

  .hpZItem:nth-child(odd) .hpZCard,
  .hpZItem:nth-child(even) .hpZCard {
    align-self: start;
    margin: 0 !important;
  }

  .hpZDot {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    grid-column: 1;
    grid-row: 1;
    margin-top: 4px;
  }

  .hpZCard {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0 !important;
    padding: 14px;
  }
}

/* ===========================
   HOME GALLERY
=========================== */
.hpGallery {
  background:
    radial-gradient(1200px 520px at 100% 0%, rgba(0, 163, 255, .12), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7fbfb);
}

.hpGalleryGrid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.hpGalleryCard {
  position: relative;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hpGalleryCard--lg {
  grid-row: span 2;
}

.hpGalleryMedia {
  position: absolute;
  inset: 0;
  display: block;
}

.hpGalleryMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
  filter: saturate(1.04) contrast(1.03);
}

.hpGalleryOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .68) 100%);
  pointer-events: none;
}

.hpGalleryMeta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: #fff;
}

.hpGalleryTag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .20);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.hpGalleryMeta strong {
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.3;
}

.hpGalleryMeta small {
  font-size: 13px;
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
  line-height: 1.5;
}

.hpGalleryCard:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 183, 7, .26);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .14);
}

.hpGalleryCard:hover .hpGalleryMedia img {
  transform: scale(1.07);
}

.hpGalleryEmpty {
  margin-top: 18px;
  padding: 32px 20px;
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
}

.hpGalleryEmpty h3 {
  margin-bottom: 8px;
  font-weight: 900;
}

.hpGalleryEmpty p {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

/* Lightbox */
.hpGalleryModal {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .12);
}

.hpGalleryModalTop {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.hpGalleryModalText h3 {
  margin: 0;
  font-weight: 1000;
  color: #002935;
}

.hpGalleryModalText p {
  margin: 4px 0 0;
  color: #64748b;
  font-weight: 600;
}

.hpGalleryClose {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(0, 41, 53, .04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hpGalleryClose:hover {
  background: rgba(246, 183, 7, .10);
  border-color: rgba(246, 183, 7, .26);
}

.hpGalleryModalBody {
  padding: 14px;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(0, 255, 209, .08), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(0, 163, 255, .12), transparent 55%),
    linear-gradient(180deg, #001a23, #002935);
}

.hpGalleryModalBody img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hpGalleryGrid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }

  .hpGalleryCard--lg {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 575.98px) {
  .hpGalleryGrid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .hpGalleryCard--lg {
    grid-column: span 1;
  }

  .hpGalleryMeta {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hpGalleryMeta strong {
    font-size: 16px;
  }

  .hpGalleryMeta small {
    font-size: 12px;
  }
  .hpAboutGrid {
 
  grid-template-columns: 1fr;
}
}

.hpGalleryCard {
  position: relative;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hpGalleryPreview {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.hpGalleryPreview i {
  font-size: 18px;
  color: #002935;
  transition: transform .25s ease, color .25s ease;
}

.hpGalleryCard:hover .hpGalleryPreview {
  transform: scale(1.08);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.hpGalleryCard:hover .hpGalleryPreview i {
  transform: rotate(90deg);
  color: #cd2029;
}

/* ===== TESTIMONIALS ===== */
.hpTesti {
  background: #fff;
}

.hpTCard {
  height: 100%;
  padding: 18px;
  border-radius: var(--hpRadius);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .10);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
}

.hpTCard:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 183, 7, .25);
}

.hpTCard::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto -80px;
  height: 160px;
  background:
    radial-gradient(circle at 20% 30%, rgba(246, 183, 7, .16), transparent 60%),
    radial-gradient(circle at 85% 15%, rgba(205, 32, 41, .12), transparent 60%);
  pointer-events: none;
}

.hpTCardAlt::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 209, .14), transparent 60%),
    radial-gradient(circle at 85% 15%, rgba(0, 163, 255, .14), transparent 60%);
}

.hpTRating i {
  color: var(--hpGold);
}

.hpTText {
  margin: 12px 0 0;
  color: #334155;
  /* font-weight: 700; */
  line-height: 1.85;
  position: relative;
}

.hpTUser {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.hpTAvatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  /* font-weight: 1100; */
  color: #fff;
  background: linear-gradient(180deg, var(--hpDark), var(--hpDark2));
  border: 1px solid rgba(246, 183, 7, .45);
}

.hpTUser strong {
  display: block;
  /* font-weight: 1000; */
}

.hpTUser span {
  display: block;
  color: var(--hpMuted);
  /* font-weight: 700; */
  font-size: 13px;
}

.hpCenterCTA {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}


/* =========================
   BLOG
   ========================= */
.hpBlog {
  background:
    radial-gradient(1200px 520px at 0% 0%, rgba(205, 32, 41, .08), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7fbfb);
}

.hpBlogCard {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .10);
  color: var(--hpText);
}

.hpBlogImg {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.hpBlogImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .25s ease;
}

.hpBlogCard:hover .hpBlogImg img {
  transform: scale(1.06);
}

.hpBlogBadge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .10);
  /* font-weight: 1000; */
  font-size: 12px;
  color: var(--hpDark2);
}

.hpBlogBadgeAlt {
  background: rgba(246, 183, 7, .16);
  border-color: rgba(246, 183, 7, .25);
}

.hpBlogBadgeGreen {
  background: rgba(34, 197, 94, .14);
  border-color: rgba(34, 197, 94, .22);
}

.hpBlogBody {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hpBlogBody h3 {
  margin: 0;
  /* font-weight: 1000; */
  letter-spacing: -.01em;
}

.hpBlogBody p {
  margin: 0;
  color: var(--hpMuted);
  /* font-weight: 650; */
  line-height: 1.7;
}

.hpBlogLink {
  margin-top: auto;
  /* font-weight: 1000; */
  color: var(--hpDark2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* =========================
   FAQ
   ========================= */
.hpFaq {
  background: #fff;
}

.hpAcc .accordion-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
  margin-bottom: 12px;
}

.hpAcc .accordion-button {
  /* font-weight: 950; */
  color: var(--hpDark2);
  background: rgba(255, 255, 255, .92);
}

.hpAcc .accordion-button:focus {
  box-shadow: none;
}


/* =========================
   VIDEO SLIDER (ONLY)
   ========================= */
.hpVideoOnly {
  padding: 72px 0;
  background:
    radial-gradient(1200px 520px at 100% 0%, rgba(246, 183, 7, .10), transparent 55%),
    radial-gradient(1000px 520px at 0% 0%, rgba(0, 163, 255, .10), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7fbfb);
}

.hpVideoCar {
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 30px 90px rgba(15, 23, 42, .10);
  overflow: hidden;
}

.hpVideoSlide {
  padding: clamp(14px, 2vw, 26px);
}

.hpVideoFrame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: var(--hpShadow2);
  background:
    radial-gradient(520px 320px at 70% 10%, rgba(0, 163, 255, .16), transparent 60%),
    radial-gradient(520px 320px at 20% 90%, rgba(205, 32, 41, .12), transparent 65%),
    linear-gradient(180deg, rgba(0, 26, 35, .06), rgba(0, 41, 53, .06));
  aspect-ratio: 16 / 9;
}

/* iframe injected by JS */
.hpVideoFrame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Click-to-play overlay (no text) */
.hpVideoPlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .28));
  display: grid;
  place-items: center;
  cursor: pointer;

}

.hpVideoPlayIcon {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .20);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, filter .18s ease;
  font-size: 22px;
}

.hpVideoPlay:hover .hpVideoPlayIcon {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.hpVideoDots {
  bottom: 14px;
}

.hpVideoArrow {
  opacity: .45;
}

.hpVideoArrow:hover {
  opacity: .9;
}

.hpVideoFrameStatic {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 30px 90px rgba(15, 23, 42, .10);
}

.hpVideoFrameStatic iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hpVideoOnly {
  padding: 40px 0;
}

.hpVideoCar {
  max-width: 100%;
  margin: auto;
}

.hpVideoSlide {
  padding: 12px;
}

.hpVideoFrameStatic {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.hpVideoFrameStatic iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}





/* Animation css.................................... */

/* =========================================
   TRUE CENTER CURTAIN OPEN — FULL REVEAL
   ========================================= */

.hpHeroMedia {
  position: relative;
  overflow: hidden;
}

/* BOTH curtains start from center */
.hpHeroMedia::before,
.hpHeroMedia::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, #ffffff, #eef4f7);
  z-index: 5;
  pointer-events: none;
  transition: transform 1.4s cubic-bezier(.77, 0, .18, 1);
}

/* LEFT curtain — positioned at center */
.hpHeroMedia::before {
  left: 50%;
  transform: translateX(-100%);
  transform-origin: right;
}

/* RIGHT curtain — positioned at center */
.hpHeroMedia::after {
  left: 50%;
  transform: translateX(0);
  transform-origin: left;
}

/* OPEN animation */
.hpCarousel .carousel-item.active .hpHeroMedia::before {
  transform: translateX(-200%);
}

.hpCarousel .carousel-item.active .hpHeroMedia::after {
  transform: translateX(100%);
}




/* =====================================
   CLEAN TEXT ANIMATION (NO DESIGN CHANGE)
   ===================================== */

/* Initial hidden state */
.hpCarousel .carousel-item .hpBadge,
.hpCarousel .carousel-item .hpH1,
.hpCarousel .carousel-item .hpLead {
  opacity: 0;
  transform: translateY(40px);
}

/* Animate when slide becomes active */
.hpCarousel .carousel-item.active .hpBadge,
.hpCarousel .carousel-item.active .hpH1,
.hpCarousel .carousel-item.active .hpLead {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

/* Stagger timing */
.hpCarousel .carousel-item.active .hpBadge {
  transition-delay: .2s;
}

.hpCarousel .carousel-item.active .hpH1 {
  transition-delay: .4s;
}

.hpCarousel .carousel-item.active .hpLead {
  transition-delay: .6s;
}


/* =====================================
   CLEAN ABOUT SECTION ANIMATION
   ===================================== */

/* Initial hidden state */
.hpReveal .col-lg-6>*,
.hpReveal .hpAboutStats,
.hpReveal .hpAboutGrid>*,
.hpReveal .hpAboutActions {
  opacity: 0;
  transform: translateY(50px);
}

/* Trigger when section enters viewport */
.hpReveal.in-view .col-lg-6>*,
.hpReveal.in-view .hpAboutStats,
.hpReveal.in-view .hpAboutGrid>*,
.hpReveal.in-view .hpAboutActions {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s ease, transform .8s ease;
}

/* Stagger timing for feature cards */
.hpReveal.in-view .hpAboutGrid>*:nth-child(1) {
  transition-delay: .2s;
}

.hpReveal.in-view .hpAboutGrid>*:nth-child(2) {
  transition-delay: .35s;
}

.hpReveal.in-view .hpAboutGrid>*:nth-child(3) {
  transition-delay: .5s;
}

.hpReveal.in-view .hpAboutGrid>*:nth-child(4) {
  transition-delay: .65s;
}

.hpReveal.in-view .hpAboutActions {
  transition-delay: .8s;
}









.med-cross {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 8px;
}

.med-cross::before,
.med-cross::after {
  content: '';
  position: absolute;
  background: #ff3158;
}

.med-cross::before {
  width: 60%;
  height: 8px;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

.med-cross::after {
  height: 60%;
  width: 8px;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
}

.med-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
}


.glass-plus {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff3158;
  font-size: 22px;
}




/* PRESS RELEASE */
.hpPressRelease {
  background: #f7f7f7;
}

.hpPressFeatured {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #e7e7e7;
  transition: 0.3s;
}

.hpPressFeatured:hover {
  transform: translateY(-4px);
}

.hpPressFeaturedMedia {
  position: relative;
}

.hpPressFeaturedMedia img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hpPressDateBadge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff6b35;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.hpPressFeaturedBody {
  padding: 20px;
}

.hpPressFeaturedBody h3 {
  font-size: 22px;
  /* font-weight: 800; */
  margin-bottom: 10px;
}

.hpPressFeaturedBody p {
  color: #666;
}

.hpPressList {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hpPressItem {
  display: flex;
  gap: 15px;
  background: #f1f1f1;
  padding: 15px;
  border-radius: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.hpPressItem:hover {
  background: #fff;
}

.hpPressThumb {
  width: 120px;
  height: 80px;
  overflow: hidden;
  border-radius: 10px;
}

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

.hpPressContent h4 {
  font-size: 15px;
  /* font-weight: 700; */
  margin-bottom: 6px;
}

.hpPressMeta {
  font-size: 13px;
  color: #888;
}