/* ===================================================
   نبض — جمعية رعاية مرضى القلب  |  style.css
=================================================== */
:root {
  --red: #C62828;
  --red-dark: #8B0000;
  --red-light: #EF5350;
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --green-light: #4CAF50;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-bg: #F4F7F4;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  background: var(--white);
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: #f1f1f1
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px
}

/* ======= NAVBAR ======= */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: all .4s ease;
  z-index: 1000;
  border-bottom: 1px solid transparent;
}

#mainNav.scrolled {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

#mainNav.scrolled .nav-link {
  color: var(--text-dark) !important
}

#mainNav.scrolled .brand-title {
  color: var(--red)
}

#mainNav.scrolled .brand-sub {
  color: var(--text-muted)
}

.brand-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  box-shadow: 0 4px 12px rgba(198, 40, 40, .3)
}

.brand-title {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1
}

.brand-sub {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, .75);
  line-height: 1
}

.nav-link {
  color: rgba(255, 255, 255, .92) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 13px !important;
  border-radius: 8px;
  transition: var(--tr);
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 13px;
  left: 13px;
  height: 2px;
  background: var(--red-light);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s ease
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1)
}

.nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, .1)
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff !important;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  transition: var(--tr);
  box-shadow: 0 4px 12px rgba(198, 40, 40, .3)
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 40, 40, .4);
  color: #fff !important
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 8px;
  padding: 4px 8px
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

#mainNav.scrolled .navbar-toggler {
  border-color: var(--red)
}

#mainNav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28198,40,40,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

/* ======= HERO SLIDES ======= */
#hero {
  position: relative
}

.hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}

.slide-1 {
  background: linear-gradient(135deg, #5D0000 0%, #B71C1C 45%, #1A3A1A 100%)
}

.slide-2 {
  background: linear-gradient(135deg, #1B3A1B 0%, #2E7D32 45%, #5D0000 100%)
}

.slide-3 {
  background: linear-gradient(160deg, #B71C1C 0%, #7B0000 55%, #1B3A1B 100%)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, .05) 0%, transparent 55%), radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .04) 0%, transparent 40%)
}

/* ---- Decorative shapes (shared base) ---- */
.sl-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

/* Slide 1 shapes */
.sl1-shape-a {
  width: 500px;
  height: 500px;
  top: -160px;
  left: -160px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%
}

.sl1-shape-b {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: 10%;
  background: rgba(255, 255, 255, .035);
  border-radius: 50%
}

.sl1-shape-c {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 5%;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  animation: floatShape 6s ease-in-out infinite
}

/* Slide 2 shapes */
.sl2-shape-a {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%
}

.sl2-shape-b {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: 8%;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%
}

/* Slide 3 shapes */
.sl3-shape-a {
  width: 460px;
  height: 460px;
  bottom: -150px;
  left: -100px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%
}

.sl3-shape-b {
  width: 180px;
  height: 180px;
  top: 20%;
  right: 5%;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  animation: floatShape 5s ease-in-out infinite reverse
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-18px) scale(1.04)
  }
}

/* Slide 2 side visual */
.sl2-icon-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center
}

.sl2-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .15)
}

.sl2-main-icon {
  font-size: 80px;
  color: rgba(255, 255, 255, .8);
  position: relative;
  z-index: 2;
  animation: heartPulse 2s ease-in-out infinite
}

.sl2-badge {
  position: absolute;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  z-index: 3
}

.sl2-badge i {
  font-size: 13px
}

.sl2-badge-1 {
  top: 20px;
  right: -20px;
  animation: floatShape 4s ease-in-out infinite
}

.sl2-badge-2 {
  bottom: 40px;
  right: -30px;
  animation: floatShape 4.5s ease-in-out infinite .5s
}

.sl2-badge-3 {
  bottom: 20px;
  left: -10px;
  animation: floatShape 5s ease-in-out infinite 1s
}

/* Slide 3 side visual */
.sl3-visual {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center
}

.sl3-circle-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .2);
  animation: spinSlow 20s linear infinite
}

.sl3-circle-inner {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .15)
}

.sl3-heart-icon {
  font-size: 72px;
  color: rgba(255, 255, 255, .75);
  position: relative;
  z-index: 2;
  animation: heartPulse 1.6s ease-in-out infinite
}

/* ECG Strip */
.hero-ecg-strip {
  position: absolute;
  bottom: 72px;
  left: 0;
  right: 0;
  height: 50px;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpolyline points='0,30 80,30 100,8 120,52 140,30 220,30 240,8 260,52 280,30 360,30 380,8 400,52 420,30 500,30 520,8 540,52 560,30 640,30 660,8 680,52 700,30 780,30 800,8 820,52 840,30 920,30 940,8 960,52 980,30 1060,30 1080,8 1100,52 1120,30 1200,30' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 600px 50px;
  animation: ecgScroll 5s linear infinite
}

@keyframes ecgScroll {
  from {
    background-position: 0 0
  }

  to {
    background-position: 600px 0
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px
}

.hero-center-content {
  text-align: center
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .5px;
  text-transform: uppercase
}

.hero-line {
  flex: 0 0 30px;
  height: 2px;
  background: var(--red-light);
  border-radius: 1px
}

.green-line {
  background: var(--green-light)
}

.green-ey {
  color: rgba(255, 255, 255, .85)
}

.hero-title {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .2)
}

.hero-dot {
  color: var(--red-light)
}

.hero-accent {
  display: inline-block;
  position: relative
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 3px;
  right: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, .35);
  border-radius: 2px
}

.green-acc::after {
  background: rgba(76, 175, 80, .5)
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .85);
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.9
}

.hero-center-content .hero-desc {
  margin: 0 auto 30px
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-h-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red-dark);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  transition: var(--tr);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15)
}

.btn-h-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  color: var(--red)
}

.btn-h-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .65);
  font-size: 14px;
  transition: var(--tr)
}

.btn-h-ghost:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  transform: translateY(-3px)
}

.green-primary {
  color: var(--green-dark)
}

.green-primary:hover {
  color: var(--green)
}

/* Slide 2 mini stats */
.hero-mini-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap
}

.hms-item {
  display: flex;
  flex-direction: column
}

.hms-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1
}

.hms-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .7)
}

.hms-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .2)
}

/* Big heart slide 3 */
.hero-big-heart-wrap {
  margin-bottom: 20px
}

.hero-big-heart {
  font-size: 60px;
  color: rgba(255, 255, 255, .25);
  animation: heartPulse 1.6s ease-in-out infinite
}

@keyframes heartPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .25
  }

  50% {
    transform: scale(1.12);
    opacity: .4
  }
}

/* Orbit Visual (Slide 1) */
.hero-orbit-visual {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15)
}

.r1 {
  width: 280px;
  height: 280px;
  animation: spinSlow 18s linear infinite
}

.r2 {
  width: 200px;
  height: 200px;
  animation: spinSlow 12s linear infinite reverse
}

.r3 {
  width: 120px;
  height: 120px;
  border-color: rgba(255, 255, 255, .25);
  animation: spinSlow 8s linear infinite
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.orb-center {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(255, 255, 255, .85);
  border: 2px solid rgba(255, 255, 255, .25);
  z-index: 2;
  animation: heartPulse 1.8s ease-in-out infinite
}

.orb-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  opacity: .7
}

.d1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: orbitA 18s linear infinite
}

.d2 {
  bottom: 10px;
  right: 10px;
  animation: orbitA 12s linear infinite reverse
}

.d3 {
  top: 40%;
  left: 0;
  animation: orbitA 8s linear infinite
}

@keyframes orbitA {
  from {
    transform: rotate(0deg) translateX(140px) rotate(0deg)
  }

  to {
    transform: rotate(360deg) translateX(140px) rotate(-360deg)
  }
}

/* Custom Hero Nav Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  cursor: pointer
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateY(-50%) scale(1.05)
}

.hero-arrow-prev {
  right: 24px
}

.hero-arrow-next {
  left: 24px
}

/* Progress Indicators */
.hero-prog-wrap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10
}

.hero-prog-item {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 4px;
  opacity: .5;
  transition: opacity .3s
}

.hero-prog-item.active {
  opacity: 1
}

.prog-num {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  font-family: 'Tajawal', sans-serif
}

.prog-bar {
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, .25);
  border-radius: 2px;
  overflow: hidden
}

.prog-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: width 6s linear
}

.hero-prog-item.active .prog-fill {
  width: 100%
}

/* ======= STATS BAR ======= */
.stats-bar {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 0;
  position: relative;
  z-index: 10
}

.stat-item {
  padding: 24px 16px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, .12);
  transition: background .3s
}

.stat-item:last-child {
  border-left: none
}

.stat-item:hover {
  background: rgba(255, 255, 255, .08)
}

.stat-item i {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .65)
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px
}

.stat-label {
  font-size: 12px;
  opacity: .8;
  font-weight: 500
}

/* ======= SECTION COMMONS ======= */
.section-pad {
  padding: 96px 0
}

.bg-light-section {
  background: var(--light-bg)
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 14px
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.35
}

.text-accent {
  color: var(--red)
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto
}

.divider-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--red), var(--green));
  border-radius: 2px;
  margin-top: 14px
}

.section-text {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 12px
}

/* ======= ABOUT ======= */
.about-img-wrap {
  position: relative;
  height: 420px
}

.about-img-bg {
  position: absolute;
  inset: 20px 20px 0 0;
  background: linear-gradient(135deg, var(--red), var(--green));
  border-radius: var(--radius-lg);
  opacity: .1
}

.about-img-card {
  position: absolute;
  inset: 0 0 20px 20px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.about-img-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%
}

.about-heart-icon {
  font-size: 80px;
  opacity: .2;
  position: absolute;
  bottom: 20px;
  left: 20px;
  animation: heartPulse 1.6s ease-in-out infinite
}

.about-quote {
  position: relative;
  z-index: 2;
  text-align: center
}

.about-quote i {
  font-size: 28px;
  opacity: .5;
  margin-bottom: 12px;
  display: block
}

.about-quote p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5
}

.about-badge-float {
  position: absolute;
  top: 16px;
  left: -8px;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 10
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.value-chip {
  background: rgba(198, 40, 40, .07);
  color: var(--red-dark);
  border: 1px solid rgba(198, 40, 40, .2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px
}

.value-chip i {
  color: var(--green)
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: var(--tr);
  box-shadow: 0 4px 14px rgba(198, 40, 40, .3)
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(198, 40, 40, .4)
}

/* ======= GOALS — TIMELINE ======= */
.goals-timeline {
  position: relative;
  padding: 20px 0
}

.gtl-center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--green));
  border-radius: 2px;
  transform: translateX(-50%)
}

.gtl-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  gap: 0;
  position: relative
}

.gtl-left {
  flex-direction: row
}

.gtl-right {
  flex-direction: row-reverse
}

.gtl-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 13px 44px;
  width: calc(50% - 48px);
  border: 1px solid var(--border);
  transition: var(--tr);
  position: relative
}

.gtl-left .gtl-card {
  margin-left: auto;
  margin-right: 46px
}

.gtl-right .gtl-card {
  margin-right: auto;
  margin-left: 46px
}

.gtl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 40, 40, .15)
}

.gtl-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  flex-shrink: 0
}

.gtl-icon.red {
  background: rgba(198, 40, 40, .08);
  color: var(--red)
}

.gtl-icon.green {
  background: rgba(46, 125, 50, .08);
  color: var(--green)
}

.gtl-card:hover .gtl-icon.red {
  background: var(--red);
  color: #fff
}

.gtl-card:hover .gtl-icon.green {
  background: var(--green);
  color: #fff
}

.gtl-card h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px
}

.gtl-card p {
  font-size: .93rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75
}

.gtl-node {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--light-bg), 0 0 0 6px var(--red-light);
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

/* mobile fallback for timeline */
@media(max-width:768px) {
  .gtl-center-line {
    left: 24px;
    transform: none
  }

  .gtl-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-right: 0;
    padding-left: 60px
  }

  .gtl-card {
    width: 100% !important;
    margin: 0 !important
  }

  .gtl-node {
    left: 0 !important;
    transform: none;
    top: 0;
    position: relative;
    margin-bottom: 12px;
    flex-shrink: 0
  }

  .gtl-item {
    flex-direction: column
  }
}

/* ======= SERVICES (with animations) ======= */
.srv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 30px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  cursor: pointer;
  height: 100%
}

.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.srv-featured {
  border-color: rgba(198, 40, 40, .2);
  box-shadow: 0 6px 24px rgba(198, 40, 40, .08)
}

.srv-icon-area {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 22px
}

.srv-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: transform .4s ease, box-shadow .4s ease
}

.srv-card:hover .srv-icon-circle {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(198, 40, 40, .35)
}

.green-circle {
  background: linear-gradient(135deg, var(--green), var(--green-dark))
}

.srv-card:hover .green-circle {
  box-shadow: 0 8px 24px rgba(46, 125, 50, .35)
}

/* Ripple animation */
.srv-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(198, 40, 40, .2);
  animation: rippleOut 2s ease-out infinite
}

.srv-ripple-2 {
  animation-delay: .8s
}

.srv-featured .srv-ripple,
.srv-featured .srv-ripple-2 {
  border-color: rgba(198, 40, 40, .25)
}

@keyframes rippleOut {
  0% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    transform: scale(2.2);
    opacity: 0
  }
}

.srv-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 0, 0, .05);
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: 'Tajawal', sans-serif
}

.srv-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px
}

.srv-desc {
  color: var(--text-muted);
  font-size: .93rem;
  margin-bottom: 18px;
  line-height: 1.8
}

.srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.srv-tags span {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(198, 40, 40, .07);
  color: var(--red-dark);
  border: 1px solid rgba(198, 40, 40, .14);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600
}

.srv-bottom-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left
}

.srv-card:hover .srv-bottom-bar {
  transform: scaleX(1)
}

.green-bar {
  background: linear-gradient(90deg, var(--green), var(--green-light))
}

/* ======= PROGRAMS ======= */
.program-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--tr)
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 40, 40, .2)
}

.program-card.program-featured {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(198, 40, 40, .1)
}

.program-icon-wrap {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 36px;
  text-align: center;
  color: #fff;
  font-size: 52px;
  line-height: 1
}

.program-icon-wrap.alt {
  background: linear-gradient(135deg, var(--green-dark), var(--green))
}

.program-body {
  padding: 28px;
  flex: 1
}

.program-badge {
  display: inline-block;
  background: rgba(198, 40, 40, .08);
  color: var(--red);
  border: 1px solid rgba(198, 40, 40, .2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px
}

.program-badge.alt {
  background: rgba(46, 125, 50, .08);
  color: var(--green);
  border-color: rgba(46, 125, 50, .2)
}

.program-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px
}

.program-body p {
  color: var(--text-muted);
  font-size: .93rem;
  margin-bottom: 16px;
  line-height: 1.8
}

.program-features {
  list-style: none;
  padding: 0;
  margin: 0
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .93rem;
  color: var(--text-mid);
  margin-bottom: 8px
}

.program-features li i {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0
}

/* ======= BOARD — CARD STYLE ======= */
.bmc {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--tr);
  position: relative;
  overflow: hidden
}

.bmc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.bmc-chairman {
  border: 2px solid rgba(198, 40, 40, .25);
  box-shadow: 0 8px 30px rgba(198, 40, 40, .1)
}

.bmc-chairman::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light))
}

.bmc-crown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px
}

.bmc-crown-badge i {
  font-size: 11px;
  color: #FFD700
}

.bmc-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center
}

.bmc-avatar-ring-outer,
.bmc-avatar-ring-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: spinSlow 20s linear infinite
}

.chairman-wrap .bmc-avatar-ring-outer {
  border: 2px dashed rgba(198, 40, 40, .3)
}

.chairman-wrap .bmc-avatar-ring-inner {
  width: 85%;
  height: 85%;
  margin: auto;
  inset: auto;
  border: 2px dashed rgba(198, 40, 40, .15);
  animation-direction: reverse
}

.bmc-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  position: relative;
  z-index: 2
}

.chairman-wrap .bmc-avatar {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  box-shadow: 0 6px 20px rgba(198, 40, 40, .3);
  width: 90px;
  height: 90px
}

.vice-wrap .bmc-avatar {
  background: linear-gradient(135deg, #E91E63, #AD1457);
  box-shadow: 0 6px 20px rgba(233, 30, 99, .3)
}

.member-wrap .bmc-avatar {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 6px 20px rgba(46, 125, 50, .3)
}

.female-av {
  background: linear-gradient(135deg, #9C27B0, #6A1B9A) !important;
  box-shadow: 0 6px 20px rgba(156, 39, 176, .3) !important
}

.bmc-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4
}

.bmc-divider {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin: 0 auto 10px
}

.bmc-chairman .bmc-divider {
  background: linear-gradient(90deg, var(--red), var(--red-light))
}

.vice-div {
  background: linear-gradient(90deg, #E91E63, #AD1457)
}

.member-div {
  background: linear-gradient(90deg, var(--green), var(--green-light))
}

.bmc-role {
  font-size: .85rem;
  font-weight: 600
}

.bmc-chairman .bmc-role {
  color: var(--red)
}

.vice-role {
  color: #AD1457
}

.member-role {
  color: var(--green)
}

/* ======= CONTACT FORM ======= */
.contact-info-panel {
  background: linear-gradient(155deg, var(--red-dark), var(--red));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
  height: 100%
}

.cip-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.cip-main-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 14px;
  opacity: .85
}

.cip-header h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px
}

.cip-header p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
  margin: 0
}

.cip-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px
}

.cip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  transition: var(--tr);
  border-radius: 10px;
  padding: 4px
}

.cip-item:hover {
  background: rgba(255, 255, 255, .08)
}

.cip-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0
}

.phone-ic {
  background: rgba(255, 255, 255, .15)
}

.email-ic {
  background: rgba(255, 255, 255, .15)
}

.loc-ic {
  background: rgba(255, 255, 255, .15)
}

.cip-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .65)
}

.cip-value {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: #fff
}

.cip-social-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 12px
}

.cip-socials {
  display: flex;
  gap: 10px
}

.cip-soc {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  transition: var(--tr)
}

.cip-soc:hover {
  background: rgba(255, 255, 255, .25);
  color: #fff;
  transform: translateY(-3px)
}

/* Form Panel */
.contact-form-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md)
}

.cfp-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px
}

.cfp-sub {
  color: var(--text-muted);
  font-size: .93rem;
  margin-bottom: 28px
}

.field-wrap {
  display: flex;
  flex-direction: column
}

.field-wrap label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px
}

.req {
  color: var(--red)
}

.input-box {
  position: relative;
  display: flex;
  align-items: center
}

.input-ic {
  position: absolute;
  right: 14px;
  color: var(--text-muted);
  font-size: 15px;
  pointer-events: none;
  z-index: 1;
  transition: color .2s
}

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 44px 12px 14px;
  font-size: 14px;
  font-family: 'Cairo', 'Tajawal', sans-serif;
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  direction: rtl
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, .1);
  background: #fff
}

.input-box input:focus~.input-ic,
.input-box select:focus~.input-ic,
.input-box textarea:focus~.input-ic {
  color: var(--red)
}

.input-box.select-box .input-ic {
  right: 14px
}

.select-arrow {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 12px;
  pointer-events: none
}

.input-box select {
  appearance: none;
  padding-left: 36px
}

.textarea-box {
  align-items: flex-start
}

.textarea-ic {
  top: 14px
}

.input-box textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 12px
}

.input-box.invalid input,
.input-box.invalid select,
.input-box.invalid textarea {
  border-color: var(--red-light) !important
}

.field-err {
  font-size: 12px;
  color: var(--red-light);
  margin-top: 5px;
  display: none
}

.field-wrap.has-error .field-err {
  display: block
}

.btn-submit {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 4px 16px rgba(198, 40, 40, .3);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 40, 40, .4)
}

.submit-loading {
  display: flex;
  align-items: center;
  gap: 8px
}

/* Success */
.form-success {
  text-align: center;
  padding: 40px 20px
}

.success-check {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin: 0 auto 20px;
  animation: popIn .5s ease
}

@keyframes popIn {
  0% {
    transform: scale(0)
  }

  70% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

.form-success h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px
}

.form-success p {
  color: var(--text-muted);
  font-size: .95rem
}

/* ======= CTA ======= */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green), var(--green-dark));
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, .06) 0%, transparent 60%)
}

.cta-icon {
  font-size: 48px;
  color: rgba(255, 255, 255, .8);
  display: block;
  animation: heartPulse 1.6s ease-in-out infinite
}

.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1
}

.cta-desc {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1
}

.btn-cta-white {
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  transition: var(--tr);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  position: relative;
  z-index: 1
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  color: var(--green)
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .65);
  font-size: 15px;
  transition: var(--tr);
  position: relative;
  z-index: 1
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  transform: translateY(-3px)
}

/* ======= FOOTER ======= */
.main-footer {
  background: #0D1117
}

.footer-top {
  padding: 64px 0 40px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.footer-logo>i {
  font-size: 28px;
  color: var(--red-light)
}

.footer-brand-name {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1
}

.footer-brand-sub {
  display: block;
  font-size: 11px;
  color: #6B7280
}

.footer-about {
  color: #9CA3AF;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px
}

.footer-social {
  display: flex;
  gap: 10px
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 15px;
  transition: var(--tr)
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px)
}

.footer-heading {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 1px
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-links li {
  margin-bottom: 10px
}

.footer-links a {
  color: #9CA3AF;
  font-size: 14px;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px
}

.footer-links a::before {
  content: '›';
  color: var(--red-light);
  font-size: 16px
}

.footer-links a:hover {
  color: #fff
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #9CA3AF;
  font-size: 14px
}

.footer-contact-item i {
  color: var(--red-light);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0
}

.footer-bottom {
  background: rgba(0, 0, 0, .3);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0
}

.footer-bottom p {
  margin: 0;
  color: #6B7280;
  font-size: 13px
}

/* ======= BACK TO TOP ======= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--tr);
  box-shadow: 0 4px 16px rgba(198, 40, 40, .35);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(198, 40, 40, .45)
}

/* ======= SCROLL REVEAL ======= */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .75s ease, transform .75s ease
}

.reveal-up {
  transform: translateY(40px)
}

.reveal-left {
  transform: translateX(-40px)
}

.reveal-right {
  transform: translateX(40px)
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0)
}

.delay-1 {
  transition-delay: .12s !important
}

.delay-2 {
  transition-delay: .24s !important
}

.delay-3 {
  transition-delay: .36s !important
}

/* ======= RESPONSIVE ======= */

/* ---- Tablet (≤992px) ---- */
@media(max-width:992px) {
  .section-pad {
    padding: 64px 0
  }

  /* Navbar */
  #mainNav .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }

  #mainNav .navbar-collapse .nav-link {
    color: var(--text-dark) !important
  }

  #mainNav .navbar-collapse .nav-link::after {
    background: var(--red)
  }

  /* Hero */
  .hero-content {
    padding: 100px 0 60px
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 14px
  }

  .hero-arrow-prev {
    right: 12px
  }

  .hero-arrow-next {
    left: 12px
  }
}

/* ---- Mobile (≤768px) ---- */
@media(max-width:768px) {

  /* === HERO === */
  /* Shorter height on mobile */
  .hero-slide {
    min-height: 75vh
  }

  .hero-content {
    padding: 90px 0 50px
  }

  /* Hide arrows on mobile */
  .hero-arrow {
    display: none !important
  }

  /* Slide 3: left-align text (not center) */
  .hero-center-content {
    text-align: right !important
  }

  .hero-center-content .hero-eyebrow {
    justify-content: flex-start !important
  }

  .hero-center-content .hero-desc {
    margin-right: 0;
    margin-left: auto;
    text-align: right
  }

  .hero-center-content .hero-btns {
    justify-content: flex-start !important
  }

  /* hide the left decorative line on slide 3 mobile */
  .hero-center-content .hero-eyebrow .hero-line:last-child {
    display: none
  }

  /* Smaller title on mobile */
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3
  }

  .hero-desc {
    font-size: .95rem
  }

  .hero-big-heart {
    font-size: 44px
  }

  .hero-big-heart-wrap {
    margin-bottom: 12px
  }

  /* Hero eyebrow smaller */
  .hero-eyebrow {
    font-size: 11px;
    gap: 8px;
    margin-bottom: 12px
  }

  .hero-line {
    flex: 0 0 20px
  }

  /* Buttons stacked */
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }

  .btn-h-primary,
  .btn-h-ghost {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 14px
  }

  /* Mini stats in slide 2 */
  .hero-mini-stats {
    gap: 12px;
    margin-bottom: 20px
  }

  .hms-num {
    font-size: 1.4rem
  }

  .hms-lbl {
    font-size: 11px
  }

  /* Progress indicators smaller */
  .hero-prog-wrap {
    gap: 10px
  }

  .prog-bar {
    width: 36px
  }

  .prog-num {
    font-size: 10px
  }

  /* ECG strip move up */
  .hero-ecg-strip {
    bottom: 50px
  }

  /* Stats bar 2 cols */
  .stats-bar .stat-item {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .stats-bar .stat-item:last-child {
    border-bottom: none
  }

  .stat-num {
    font-size: 1.6rem
  }

  /* === ABOUT === */
  .about-img-wrap {
    height: 260px;
    margin-bottom: 28px
  }

  .about-values {
    gap: 8px
  }

  .value-chip {
    font-size: 12px;
    padding: 5px 12px
  }

  /* === GOALS TIMELINE (mobile stack) === */
  .goals-timeline {
    padding: 0 0 0 44px
  }

  .gtl-center-line {
    left: 16px;
    transform: none
  }

  .gtl-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 28px;
    position: relative;
    padding-right: 0;
  }

  .gtl-left,
  .gtl-right {
    flex-direction: column !important
  }

  .gtl-node {
    position: absolute;
    left: -44px;
    top: 0;
    transform: none;
    width: 34px;
    height: 34px;
    font-size: 11px;
    box-shadow: 0 0 0 3px var(--light-bg), 0 0 0 5px var(--red-light);
  }

  .gtl-card {
    width: 100% !important;
    margin: 0 !important;
    padding: 20px 16px;
  }

  .gtl-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
    margin-bottom: 10px
  }

  .gtl-card h5 {
    font-size: .95rem
  }

  .gtl-card p {
    font-size: .88rem
  }

  /* === SERVICES === */
  .srv-card {
    padding: 28px 20px 24px
  }

  .srv-icon-area {
    width: 64px;
    height: 64px;
    margin-bottom: 16px
  }

  .srv-icon-circle {
    width: 64px;
    height: 64px;
    font-size: 24px
  }

  .srv-title {
    font-size: 1rem
  }

  /* === BOARD === */
  .bmc {
    padding: 24px 16px 20px
  }

  .bmc-name {
    font-size: .88rem
  }

  .bmc-avatar {
    width: 72px !important;
    height: 72px !important;
    font-size: 26px !important
  }

  .bmc-avatar-wrap {
    width: 80px !important;
    height: 80px !important
  }

  .chairman-wrap .bmc-avatar {
    width: 72px !important;
    height: 72px !important
  }

  .bmc-crown-badge {
    font-size: 11px;
    padding: 5px 12px
  }

  /* === CONTACT === */
  .contact-form-panel {
    padding: 22px 18px
  }

  .contact-info-panel {
    padding: 28px 20px
  }

  .cip-main-icon {
    font-size: 36px
  }

  .field-wrap label {
    font-size: 13px
  }

  .input-box input,
  .input-box select,
  .input-box textarea {
    font-size: 14px;
    padding: 10px 40px 10px 12px
  }

  .btn-submit {
    padding: 12px 24px;
    font-size: 14px
  }

  /* === FOOTER === */
  .footer-top {
    padding: 40px 0 28px
  }

  .footer-heading::after {
    right: auto;
    left: 0
  }
}

/* ---- Small mobile (≤480px) ---- */
@media(max-width:480px) {

  /* Hero even shorter */
  .hero-slide {
    min-height: 68vh
  }

  .hero-content {
    padding: 80px 0 44px
  }

  .hero-title {
    font-size: 1.5rem
  }

  /* Section headings */
  .section-title {
    font-size: 1.4rem
  }

  /* Goals timeline tighter */
  .goals-timeline {
    padding-left: 38px
  }

  .gtl-node {
    left: -38px;
    width: 30px;
    height: 30px;
    font-size: 10px
  }

  /* Board cards full width */
  .bmc {
    margin-bottom: 4px
  }

  /* Footer */
  .footer-bottom .row>div {
    text-align: center !important
  }

  .footer-social {
    justify-content: center
  }

  .footer-logo {
    justify-content: center
  }

  /* CTA buttons */
  .cta-section .d-flex {
    flex-direction: column;
    align-items: center
  }

  .btn-cta-white,
  .btn-cta-outline {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}