/* ==========================================================================
   CureTrip Medical Tourism - About Us Page Styling (about-style.css)
   ========================================================================== */

:root {
  --ct-primary: #02015a;
  --ct-primary-dark: #0a102b;
  --ct-teal: #12b3a8;
  --ct-teal-dark: #0e8c84;
  --ct-teal-light: #e6f8f7;
  --ct-orange: #f28737;
  --ct-orange-hover: #e07223;
  --ct-orange-light: #fef4ec;
  --ct-blue-soft: #f0f6ff;
  --ct-dark-bg: #0d1b2a;
  --ct-card-bg: #ffffff;
  --ct-text-main: #1e293b;
  --ct-text-muted: #64748b;
  --ct-border: rgba(2, 1, 90, 0.08);
  --ct-radius-sm: 10px;
  --ct-radius-md: 16px;
  --ct-radius-lg: 24px;
  --ct-radius-full: 999px;
  --ct-shadow-sm: 0 4px 16px rgba(2, 1, 90, 0.05);
  --ct-shadow-md: 0 12px 32px rgba(2, 1, 90, 0.08);
  --ct-shadow-lg: 0 20px 50px rgba(2, 1, 90, 0.12);
  --ct-shadow-hover: 0 22px 48px rgba(18, 179, 168, 0.18);
}

/* ==========================================================================
   1. HERO AREA ENHANCEMENTS
   ========================================================================== */
.about-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(18, 179, 168, 0.3);
  padding: 6px 18px;
  border-radius: var(--ct-radius-full);
  color: var(--ct-teal-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.about-hero-pill i {
  color: var(--ct-orange);
}

/* ==========================================================================
   2. MAIN ABOUT SECTION (THE CURETRIP STORY)
   ========================================================================== */
.about-main-section {
  position: relative;
  padding: 85px 0 70px;
  background: #ffffff;
  overflow: hidden;
}

.about-main-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(18, 179, 168, 0.08) 0%, rgba(18, 179, 168, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-visual-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--ct-radius-lg);
  overflow: visible;
  padding: 12px;
  background: linear-gradient(135deg, rgba(18, 179, 168, 0.15) 0%, rgba(242, 135, 55, 0.12) 100%);
  box-shadow: var(--ct-shadow-md);
}

.about-img-main {
  width: 100%;
  height: auto;
  border-radius: calc(var(--ct-radius-lg) - 6px);
  object-fit: cover;
  display: block;
  background: #ffffff;
  transition: transform 0.4s ease;
}

/* Floating Badges on Image */
.about-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(2, 1, 90, 0.08);
  border-radius: var(--ct-radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 35px rgba(2, 1, 90, 0.12);
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-floating-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(2, 1, 90, 0.18);
}

.about-floating-badge.badge-top-right {
  top: 25px;
  right: -15px;
}

.about-floating-badge.badge-bottom-left {
  bottom: 25px;
  left: -15px;
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-badge-icon.icon-teal {
  background: var(--ct-teal-light);
  color: var(--ct-teal-dark);
}

.about-badge-icon.icon-orange {
  background: var(--ct-orange-light);
  color: var(--ct-orange);
}

.about-badge-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ct-primary);
  line-height: 1.2;
}

.about-badge-text span {
  font-size: 12px;
  color: var(--ct-text-muted);
  font-weight: 600;
}

/* Story Content Column */
.about-story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ct-teal-light);
  color: var(--ct-teal-dark);
  padding: 6px 16px;
  border-radius: var(--ct-radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.about-story-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ct-primary);
  margin-bottom: 20px;
}

.about-story-title span {
  color: var(--ct-orange);
  position: relative;
}

.about-story-desc {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ct-text-muted);
  margin-bottom: 24px;
}

/* Feature Grid inside About Section */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--ct-blue-soft);
  border-radius: var(--ct-radius-sm);
  border-left: 3px solid var(--ct-teal);
  transition: all 0.25s ease;
}

.about-feature-item:hover {
  background: #e8f3fc;
  transform: translateX(4px);
}

.about-feature-item i {
  color: var(--ct-teal-dark);
  font-size: 16px;
  margin-top: 3px;
}

.about-feature-item strong {
  font-size: 14.5px;
  color: var(--ct-primary);
  display: block;
  line-height: 1.3;
}

.about-feature-item span {
  font-size: 12.5px;
  color: var(--ct-text-muted);
}

/* CTA Row in About Section */
.about-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about-call-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-full);
  box-shadow: var(--ct-shadow-sm);
  text-decoration: none;
  transition: all 0.25s ease;
}

.about-call-card:hover {
  border-color: var(--ct-teal);
  box-shadow: var(--ct-shadow-md);
  transform: translateY(-2px);
}

.about-call-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ct-teal-light);
  color: var(--ct-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.about-call-card small {
  display: block;
  font-size: 11px;
  color: var(--ct-text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.about-call-card strong {
  font-size: 14.5px;
  color: var(--ct-primary);
}

/* ==========================================================================
   3. MISSION, VISION & CORE VALUES SECTION
   ========================================================================== */
.about-mvv-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
  overflow: hidden;
}

.about-mvv-section::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 135, 55, 0.08) 0%, rgba(242, 135, 55, 0) 70%);
  pointer-events: none;
}

.about-section-header {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-section-header .about-story-eyebrow {
  margin-bottom: 12px;
}

.about-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--ct-primary);
  line-height: 1.25;
  margin-bottom: 14px;
}

.about-section-subtitle {
  font-size: 17px;
  color: var(--ct-text-muted);
  line-height: 1.65;
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-mvv-card {
  background: #ffffff;
  border-radius: var(--ct-radius-lg);
  padding: 38px 30px 32px;
  border: 1px solid rgba(2, 1, 90, 0.06);
  box-shadow: var(--ct-shadow-md);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.about-mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ct-teal) 0%, var(--ct-orange) 100%);
  opacity: 0.8;
  transition: height 0.3s ease;
}

.about-mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2, 1, 90, 0.14);
  border-color: rgba(18, 179, 168, 0.3);
}

.about-mvv-card:hover::before {
  height: 6px;
}

.about-mvv-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.about-mvv-card:hover .about-mvv-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.about-mvv-card.card-mission .about-mvv-icon-wrap {
  background: linear-gradient(135deg, #12b3a8 0%, #0ea5b7 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(18, 179, 168, 0.3);
}

.about-mvv-card.card-vision .about-mvv-icon-wrap {
  background: linear-gradient(135deg, #02015a 0%, #1e3a8a 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(2, 1, 90, 0.25);
}

.about-mvv-card.card-values .about-mvv-icon-wrap {
  background: linear-gradient(135deg, #f28737 0%, #ff9d54 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(242, 135, 55, 0.3);
}

.about-mvv-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ct-primary);
  margin-bottom: 14px;
}

.about-mvv-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ct-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.about-mvv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.about-mvv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ct-primary);
}

.about-mvv-list li i {
  color: var(--ct-teal);
  font-size: 14px;
}

/* ==========================================================================
   4. PATIENT CARETAKER & ELDER CARE SECTION (MODERNIZED)
   ========================================================================== */
.about-caretaker-section {
  padding: 85px 0;
  background: #ffffff;
}

.about-caretaker-card-container {
  background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
  border-radius: var(--ct-radius-lg);
  padding: 50px 45px;
  border: 1px solid rgba(2, 1, 90, 0.06);
  box-shadow: var(--ct-shadow-md);
}

.caretaker-img-frame {
  border-radius: var(--ct-radius-md);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(2, 1, 90, 0.1);
  position: relative;
}

.caretaker-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.caretaker-img-frame:hover img {
  transform: scale(1.03);
}

.caretaker-content-wrap {
  padding-left: 15px;
}

.caretaker-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 28px;
}

.caretaker-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: var(--ct-radius-sm);
  border: 1px solid rgba(2, 1, 90, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  font-size: 14px;
  font-weight: 600;
  color: var(--ct-primary);
}

.caretaker-pill i {
  color: var(--ct-orange);
  font-size: 15px;
}

/* ==========================================================================
   5. STATS & METRICS BANNER (PREMIUM DARK SLATE GLASSMORPHISM)
   ========================================================================== */
.about-stats-banner {
  position: relative;
  padding: 65px 0;
  background: linear-gradient(135deg, #091224 0%, #0d1b2a 50%, #061120 100%);
  overflow: hidden;
}

.about-stats-banner::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 179, 168, 0.15) 0%, rgba(18, 179, 168, 0) 70%);
  pointer-events: none;
}

.about-stats-banner::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 135, 55, 0.12) 0%, rgba(242, 135, 55, 0) 70%);
  pointer-events: none;
}

.about-stat-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ct-radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about-stat-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(18, 179, 168, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.about-stat-icon-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(18, 179, 168, 0.12);
  border: 1px solid rgba(18, 179, 168, 0.3);
  color: #12b3a8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.about-stat-box:hover .about-stat-icon-ring {
  transform: scale(1.1);
  background: rgba(18, 179, 168, 0.2);
  color: #2dd4bf;
}

.about-stat-box:nth-child(2) .about-stat-icon-ring {
  background: rgba(242, 135, 55, 0.12);
  border-color: rgba(242, 135, 55, 0.3);
  color: #f28737;
}

.about-stat-box:nth-child(2):hover .about-stat-icon-ring {
  background: rgba(242, 135, 55, 0.2);
  color: #ff9d54;
}

.about-stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.about-stat-number .counter {
  font-family: inherit;
}

.about-stat-plus {
  color: var(--ct-orange);
  font-weight: 700;
}

.about-stat-box p {
  color: #94a3b8;
  font-size: 14.5px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   6. 4-STEP PATIENT TREATMENT JOURNEY SECTION
   ========================================================================== */
.about-journey-section {
  padding: 85px 0;
  background: #ffffff;
  position: relative;
}

.about-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 20px;
}

.about-journey-grid::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: dashed 2px #cbd5e1;
  z-index: 1;
}

.about-journey-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: var(--ct-radius-md);
  padding: 30px 22px 26px;
  border: 1px solid rgba(2, 1, 90, 0.08);
  box-shadow: var(--ct-shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-journey-card:hover {
  transform: translateY(-8px);
  border-color: var(--ct-teal);
  box-shadow: 0 16px 40px rgba(18, 179, 168, 0.15);
}

.about-journey-step-num {
  position: absolute;
  top: -14px;
  background: var(--ct-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--ct-radius-full);
  letter-spacing: 0.5px;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-journey-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ct-blue-soft);
  color: var(--ct-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 20px rgba(2, 1, 90, 0.08);
  transition: all 0.3s ease;
}

.about-journey-card:hover .about-journey-icon {
  background: var(--ct-teal);
  color: #ffffff;
  transform: scale(1.1);
}

.about-journey-card h3 {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--ct-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.about-journey-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ct-text-muted);
  margin: 0;
}

/* ==========================================================================
   7. WHY CHOOSE US (UPGRADED SPECIALTIES GRID)
   ========================================================================== */
.about-why-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #f0f7fe 100%);
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-why-card {
  background: #ffffff;
  border-radius: var(--ct-radius-md);
  padding: 30px 28px;
  border: 1px solid rgba(2, 1, 90, 0.06);
  box-shadow: var(--ct-shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.about-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 135, 55, 0.3);
  box-shadow: 0 16px 40px rgba(242, 135, 55, 0.12);
}

.about-why-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--ct-teal-light);
  color: var(--ct-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.about-why-card:hover .about-why-icon {
  background: var(--ct-orange);
  color: #ffffff;
  transform: rotate(6deg) scale(1.05);
}

.about-why-content h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ct-primary);
  margin-bottom: 8px;
}

.about-why-content p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ct-text-muted);
  margin: 0;
}

/* ==========================================================================
   8. PRE-FOOTER HIGH-CONVERTING CTA BANNER
   ========================================================================== */
.about-prefooter-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #02015a 0%, #0c1844 60%, #12b3a8 100%);
  position: relative;
  overflow: hidden;
}

.about-prefooter-cta::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.about-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: var(--ct-radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-cta-title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ct-orange);
  color: #ffffff !important;
  font-size: 15.5px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--ct-radius-full);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(242, 135, 55, 0.4);
  transition: all 0.25s ease;
}

.about-btn-primary:hover {
  background: var(--ct-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(242, 135, 55, 0.5);
}

.about-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 15.5px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--ct-radius-full);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.about-btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.about-cta-trust-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.about-cta-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  font-weight: 600;
}

.about-cta-trust-tag i {
  color: var(--ct-orange);
}

/* ==========================================================================
   9. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1199px) {
  .about-story-title,
  .about-section-title,
  .about-cta-title {
    font-size: 32px;
  }

  .about-journey-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-journey-grid::before {
    display: none;
  }

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

@media (max-width: 991px) {
  .about-main-section,
  .about-mvv-section,
  .about-caretaker-section,
  .about-journey-section,
  .about-why-section {
    padding: 60px 0;
  }

  .about-visual-col {
    margin-bottom: 45px;
  }

  .about-floating-badge.badge-top-right {
    top: 10px;
    right: 10px;
  }

  .about-floating-badge.badge-bottom-left {
    bottom: 10px;
    left: 10px;
  }

  .about-mvv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .caretaker-content-wrap {
    padding-left: 0;
    margin-top: 30px;
  }

  .caretaker-img-frame img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .about-story-title,
  .about-section-title,
  .about-cta-title {
    font-size: 26px;
  }

  .about-features-grid,
  .caretaker-pills-grid {
    grid-template-columns: 1fr;
  }

  .about-floating-badge {
    position: static;
    margin: 10px 0;
  }

  .about-journey-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-banner {
    padding: 45px 0;
  }

  .about-stat-box {
    margin-bottom: 15px;
  }

  .about-caretaker-card-container {
    padding: 30px 20px;
  }

  .about-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .about-btn-primary,
  .about-btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}
