:root {
  --brand-blue: #1f6fa8;
  --brand-teal: #2fa4a9;
  --brand-green: #6bbf59;

  --text-dark: #1e1e1e;
  --text-muted: #5f6b73;

  --bg-white: #ffffff;
  --bg-light: #f5fafb;
  --bg-soft: #eef5f7;

  --border-soft: #e3edf0;
}

/* ================================
   GLOBAL TYPOGRAPHY SYSTEM
================================ */

body {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==================================================
   GLOBAL BASE
================================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Poppins, Arial, sans-serif;
}

/* ==================================================
   ASTRA CORE FIXES
================================================== */

/* Ensure vertical stacking of sections */
.home .ast-container {
  display: flex !important;
  flex-direction: column !important;
}

/* Remove Astra top spacing */
.home .site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ================================
   HEADER – SWINNZEA STYLE (BRANDED)
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.brand-text {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-blue);
}

/* NAV */
.main-navigation .main-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .main-menu li {
  position: relative;
}

.main-navigation .main-menu a {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.25s ease;
}

.main-navigation .main-menu a:hover {
  color: var(--brand-teal);
}

/* ACTIVE MENU ITEM */
.main-navigation .current-menu-item > a {
  color: var(--brand-teal);
}

/* MOBILE */
@media (max-width: 992px) {
  .header-inner {
    padding: 16px 20px;
  }
}
/* ================================
   HEADER DROPDOWN – SKINCARE
================================ */

/* Parent item */
.main-menu li.menu-item-has-children {
  position: relative;
}

/* Arrow */
.main-menu li.menu-item-has-children > a::after {
  content: "▾";
  font-size: 11px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Dropdown box */
.main-menu li ul.sub-menu {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Show on hover */
.main-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.main-menu li ul.sub-menu li {
  list-style: none;
}

/* Dropdown links */
.main-menu li ul.sub-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-blue);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Hover effect */
.main-menu li ul.sub-menu a:hover {
  background: #eef5f7;
  color: var(--brand-teal);
}

/* Active submenu item */
.main-menu li ul.sub-menu .current-menu-item > a {
  color: var(--brand-teal);
  font-weight: 600;
}

/* ===============================
   HERO VIDEO SECTION
================================ */

.hero-video {
  position: relative;
  width: 100vw;
  height: 78vh;
  min-height: 560px;
  max-height: 760px;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.85) contrast(1.05);
}

/* Mobile fallback image */
.hero-fallback {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  display: none;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.35)),
    radial-gradient(circle at 50% 30%, rgba(30,115,190,0.25), transparent 70%);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  color: #fff;
}

.hero-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
  color: var(--brand-teal);
}

.hero-content p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .hero-video {
    height: 65vh;
    min-height: 420px;
  }

  .hero-video-bg {
    display: block;
  }
}


/* ===============================
   MOBILE BEHAVIOR
================================ */

@media (max-width: 768px) {
  .hero-video {
    height: 65vh;
    min-height: 420px;
  }

  .hero-video-bg {
    display: none;
  }

  .hero-fallback {
    display: block;
  }
}


/* ==================================================
   SECTION LAYOUTS
================================================== */

.section {
  padding: 100px 0;
}

.section.light {
  background: #f7f9fb;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Two-column sections */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Product / Quality grids */
.grid {
  display: grid;
  
  gap: 30px;
  margin-top: 40px;
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.box {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.box.small {
  padding: 20px;
}

/* Lists */
.ticks li {
  list-style: none;
  margin-bottom: 10px;
}

.center {
  text-align: center;
}

/* World map */
.map {
  max-width: 600px;
  margin: 30px auto;
  display: block;
}

/* ==================================================
   CTA
================================================== */

.cta {
  background: #0a5aa3;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  font-family: Poppins, Arial, sans-serif;
  margin-bottom: 20px;
}

.cta .btn {
  background: #1f8f3a;
}

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

@media (max-width: 992px) {
  .two-col {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .hero-video {
    height: 60vh;
    min-height: 420px;
  }

  .hero-video-bg {
    display: none;
  }

  .hero-video {
    background: url("../images/hero-fallback.jpg") center center / cover no-repeat;
  }

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

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

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

/* ================================
   ABOUT SECTION – SWINNZEA POLISHED
================================ */

.about-section {
  padding: 110px 0;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  background: #f3f5f4;
  border-radius: 32px;
  padding: 80px;
}

/* TOP */
.about-top {
  align-items: center;
  margin-bottom: 70px;
}

/* TEXT */
.about-label {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  display: inline-block;
}

.about-text h2 {
  font-family: Poppins, sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #f26a21;
  margin-bottom: 22px;
}

.about-text p {
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
  max-width: 520px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

/* CARDS */
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.about-card {
  background: #f26a21;
  color: #ffffff;
  padding: 46px;
  border-radius: 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ICON */
.card-icon {
  font-size: 34px;
  margin-bottom: 18px;
}

/* CARD TEXT */
.about-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  margin-bottom: 14px;
}

.about-card p {
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.95;
}

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

@media (max-width: 992px) {
  .about-container {
    padding: 50px;
  }

  .about-text h2 {
    font-size: 34px;
  }

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

@media (max-width: 768px) {
  .about-container {
    padding: 40px 30px;
  }

  .about-text p {
    max-width: 100%;
  }
}

/* ================================
   CORE PRINCIPLES – FINAL
================================ */

.principles-section {
  background: #b6b7b8;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 110px 0;
}

.principles-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

/* LABEL */
.principles-label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 14px;
}

/* TITLE */
.principles-title {
  font-family: Poppins, sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 70px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

/* GRID */
.principles-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.principle-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 42px 36px;
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ICON WRAPPER */
.principle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(242, 106, 33, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.principle-card:hover .principle-icon {
  background: rgba(242, 106, 33, 0.15);
}

/* SVG ICON */
.principle-svg {
  width: 26px;
  height: 26px;
  stroke: #f26a21;
  stroke-width: 1.8;
  fill: none;
}

.principle-svg path,
.principle-svg circle,
.principle-svg rect,
.principle-svg polygon,
.principle-svg line {
  fill: none;
  stroke: currentColor;
}

/* CARD TITLE */
.principle-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #f26a21;
  margin-bottom: 10px;
}

/* CARD TEXT */
.principle-card p {
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #666;
}

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

@media (max-width: 992px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .principles-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
  .principles-title {
    font-size: 30px;
  }
  .principles-container {
    padding: 0 24px;
  }
}

/* ================================
   HEALTHCARE EXPERIENCE – FINAL
================================ */

.healthcare-section {
  background: #ffffff;
  padding: 110px 0;
}

.healthcare-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* GRID */
.healthcare-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

/* LABEL */
.healthcare-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 14px;
}

/* TITLE */
.healthcare-title {
  font-size: 44px;
  font-weight: 600;
  color: #f26a21;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* BULLETS */
.healthcare-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.healthcare-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.healthcare-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  background: #f26a21;
  border-radius: 50%;
}

/* IMAGE */
.healthcare-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 22px 55px rgba(0,0,0,0.18);
}

/* TAGS */
.healthcare-tags {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.healthcare-tags span {
  text-align: center;
  padding: 22px 18px;
  background: #fff1e7;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  border: 1px dashed #f26a21;
  color: #333;
}
.segment-card {
  position: relative;
}
.segment-btn {
  position: relative;
  z-index: 5;
}
.segment-image img {
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .healthcare-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .healthcare-title {
    font-size: 36px;
  }

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

@media (max-width: 768px) {
  .healthcare-container {
    padding: 0 24px;
  }

  .healthcare-title {
    font-size: 30px;
  }

  .healthcare-tags {
    grid-template-columns: 1fr;
  }
}

.segment-image img {
  user-select: none;
  -webkit-user-drag: none;
}



/*skincare segments cards*/
/* ===== SECTION BASE ===== */
.healthcare-segments {
  padding: 90px 0 110px;
  background: #f3fbfd;
  font-family: "Poppins", sans-serif;
}

.segment-title {
  font-size: 52px;
  font-weight: 700;
  color: #1e73be;
  text-align: center;
  margin-bottom: 60px;
}

.segment-subtitle {
  text-align: center;
  color: #6d7c85;
  font-size: 15px;
  margin-bottom: 8px;
}

/* ===== GRID SYSTEM ===== */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* ===== UNIFIED CARD SYSTEM ===== */
.segment-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 26px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;              /* LOCKS equal height */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.segment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.10);
}

/* ===== IMAGE NORMALIZATION ===== */
.card-image {
  width: 100%;
  height: 190px;                  /* FORCE identical image box */
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;              /* CROP instead of stretch */
  transition: transform 0.4s ease;
}

.segment-card:hover img {
  transform: scale(1.06);
}

/* ===== TEXT LOCKING ===== */
.segment-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f2230;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 14px;
  min-height: 58px;               /* Equal title height */
}

.segment-card p {
  font-size: 15px;
  color: #6d7c85;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 28px;
  min-height: 84px;               /* Equal paragraph block */
}

/* ===== BUTTON ALIGNMENT ===== */
.segment-btn {
  align-self: center;
  margin-top: auto;               /* Push button to same bottom line */
  padding: 12px 28px;
  background: #1e73be;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.segment-btn:hover {
  background: #155a96;
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .segments-grid { grid-template-columns: 1fr; }
  .segment-title { font-size: 38px; }
}
/* Smooth animation base */
.segment-card,
.segment-card img,
.segment-btn {
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

/* CARD HOVER — lift + depth + border glow */
.segment-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(30, 115, 190, 0.15);
}

/* IMAGE HOVER — soft zoom + brightness */
.segment-card:hover .card-image img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* TITLE HOVER — brand highlight */
.segment-card:hover h3 {
  color: #1e73be;
}

/* PARAGRAPH subtle emphasis */
.segment-card:hover p {
  color: #4a5c66;
}

/* BUTTON HOVER — depth press effect */
.segment-btn {
  position: relative;
  overflow: hidden;
}

.segment-btn:hover {
  background: linear-gradient(135deg, #1e73be, #155a96);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(30,115,190,0.35);
}

/* Button ripple highlight */
.segment-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.segment-btn:hover::after {
  left: 120%;
}

/* CARD SOFT GLOW BACKGROUND */
.segment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(circle at top, rgba(30,115,190,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.segment-card:hover::before {
  opacity: 1;
}

/* Ensure content sits above glow */
.segment-card > * {
  position: relative;
  z-index: 1;
}
/* ===================================
   FOOTER – JOIN US (OPTIMIZED)
=================================== */

.site-footer {
  margin: 0;
  padding: 0;
}

/* FULL WIDTH SECTION */
.footer-join {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 140px 20px 130px;

  background: url("/wp-content/uploads/footer-bg.jpg") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

/* OVERLAY */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* CONTENT WRAPPER */
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 45px 20px;
  text-align: center;
	
}

/* LABEL */
.footer-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  opacity: 0.9;
}

/* TITLE */
.footer-title {
  font-family: Poppins, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 14px 0;
	color:var(--brand-teal);
}

/* SUBTITLE */
.footer-subtitle {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

/* CTA */
.footer-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-btn:hover {
  background: var(--brand-teal);
  transform: translateY(-2px);
}

/* INFO CARDS */
.footer-cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.footer-card {
  background: #ffffff;
  color: var(--brand-blue);
  padding: 28px 30px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
}

.footer-card a {
  color: inherit;
  text-decoration: none;
}

/* CENTER CARD */
.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* =====================================
   FOOTER BRAND STRIP
===================================== */

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 0;
  background: var(--bg-soft);
}

.footer-brand img {
  height: 48px;
}

.footer-site-title {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

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

@media (max-width: 992px) {
  .footer-title {
    font-size: 36px;
  }

  .footer-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-join {
    padding: 100px 20px 90px;
  }
}



/* =========================================
   FINAL BRAND COLOR OVERRIDES – CUTIKRAFTS
========================================= */

/* GLOBAL TEXT */
body {
  background: var(--bg-white);
  color: var(--brand-teal);
}

/* LINKS */
a {
  color: var(--brand-blue);
}
a:hover {
  color: var(--brand-teal);
}

/* HEADER MENU */
.main-header-menu a {
  color: var(--brand-blue) !important;
}
.main-header-menu a:hover {
  color: var(--brand-teal) !important;
}

/* PRIMARY BUTTONS */
.hero-buttons .btn,
.segment-btn,
.footer-btn {
  background: var(--brand-blue);
  color: #fff;
}
.hero-buttons .btn:hover,
.segment-btn:hover,
.footer-btn:hover {
  background: var(--brand-teal);
}

/* OUTLINE BUTTON */
.hero-buttons .btn.outline {
  border-color: #fff;
  color: #fff;
}

/* SECTION TITLES */
.segments-title,
.healthcare-title,
.about-text h2 {
  color: var(--brand-blue);
}

/* PRINCIPLES SECTION */
.principles-section {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}

/* PRINCIPLE ICONS */
.principle-icon {
  background: rgba(47, 164, 169, 0.15);
}
.principle-card:hover .principle-icon {
  background: rgba(31, 111, 168, 0.2);
}
.principle-svg {
  stroke: var(--brand-teal);
}
.principle-card:hover .principle-svg {
  stroke: var(--brand-blue);
}

/* CARD TITLES */
.segment-card h3,
.principle-card h3 {
  color: var(--text-dark);
}
.segment-card:hover h3,
.principle-card:hover h3 {
  color: var(--brand-blue);
}

/* HEALTHCARE BULLETS */
.healthcare-points li::before {
  background: var(--brand-green);
}

/* HEALTHCARE TAGS */
.healthcare-tags span {
  background: var(--bg-soft);
  border: 1px dashed var(--brand-teal);
  color: var(--brand-blue);
}
.healthcare-tags span::before {
  background: var(--brand-green);
}
.healthcare-tags span:hover {
  background: #e6f4f6;
  color: var(--brand-blue);
}

/* ABOUT CARDS */
.about-card {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}

/* FOOTER */
.footer-join {
  color: #fff;
}
.footer-card {
  color: var(--brand-blue);
}
.footer-card a {
  color: var(--brand-blue);
}
.footer-brand {
  background: var(--bg-light);
}

.about-hero {
  position: relative;
  min-height: 80vh;
  background: url('/wp-content/uploads/2026/01/about-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25)
  );
}

.about-hero-inner {
  position: relative;
  max-width: 700px;
  padding-left: 90px;
  color: #fff;
}

.hero-subtitle {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--brand-teal);
}

.about-hero-inner h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-hero-inner p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  color: #eaeaea;
}
@media (max-width: 768px) {
  .about-hero-inner {
    padding: 0 25px;
  }

  .about-hero-inner h1 {
    font-size: 38px;
  }

  .about-hero-inner p {
    font-size: 16px;
  }
}