/* ================================================================
   GROWTH MINDS — Main Stylesheet (Dark Performance Marketing Theme)
   ================================================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #003061;
  /* Logo Dark Blue */
  --primary-text: var(--primary);
  --primary-dark: #001a35;
  --primary-light: #004c99;
  --primary-light-text: var(--primary-light);
  --accent: #7a7a7a;
  /* Logo Grey */
  --grad: linear-gradient(135deg, #003061, #005bb7);
  --grad-text: var(--grad);
  --lightBlue: #0869ca;
  --lightBlue-text: var(--lightBlue);
  /* Light Theme (Default) */
  --bg: #ffffff;
  --bg2: #f8f9fa;
  --bg3: #f1f3f5;
  --bg4: #e9ecef;
  --text: #222222;
  --text-muted: #555555;
  --text-light: #000000;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.12);
  --shadow: 0 10px 30px rgba(0, 48, 97, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 48, 97, 0.12);
  --bg-text-opacity: 0.15;
  --bg-text-opacity-low: 0.03;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --card-bg: #ffffff;
  --card-grad: linear-gradient(145deg, #ffffff, #f9f9f9);
  --card-border: rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "Inter", sans-serif;
  --font-display: "Outfit", sans-serif;

  /* Helper variables for consistency */
  --dark1: #080808;
  --dark2: #0e0e0e;
  --dark3: #141414;
  --dark4: #1a1a1a;
}

/* Automatic Dark Mode based on system preference */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-text: #5eaaf7;
    --primary-light-text: #82c8ff;
    --grad-text: linear-gradient(135deg, #66b2ff, #aadaff);
    --lightBlue-text: #6bc2ff;
    --bg: #080808;
    --bg2: #0e0e0e;
    --bg3: #141414;
    --bg4: #1a1a1a;
    --text: #d1d1d1;
    --text-muted: #b8b8b8;
    --text-light: #ffffff;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.12);
    --border2: rgba(255, 255, 255, 0.18);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --bg-text-opacity: 0.55;
    --bg-text-opacity-low: 0.25;
    --nav-bg: rgba(8, 8, 8, 0.95);
    --card-bg: #141414;
    --card-grad: linear-gradient(145deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.01));
    --card-border: rgba(255, 255, 255, 0.15);
  }
}

/* Explicit theme classes override the automatic media query */
[data-theme="light"] {
  --bg: #ffffff;
  --bg2: #f8f9fa;
  --bg3: #f1f3f5;
  --bg4: #e9ecef;
  --text: #222222;
  --text-muted: #555555;
  --text-light: #000000;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.12);
  --shadow: 0 10px 30px rgba(0, 48, 97, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 48, 97, 0.12);
  --bg-text-opacity: 0.15;
  --bg-text-opacity-low: 0.03;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --card-bg: #ffffff;
  --card-grad: linear-gradient(145deg, #ffffff, #f9f9f9);
  --card-border: rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] {
  --primary-text: #5eaaf7;
  --primary-light-text: #82c8ff;
  --grad-text: linear-gradient(135deg, #66b2ff, #aadaff);
  --lightBlue-text: #6bc2ff;
  --bg: #080808;
  --bg2: #0e0e0e;
  --bg3: #141414;
  --bg4: #1a1a1a;
  --text: #d1d1d1;
  --text-muted: #b8b8b8;
  --text-light: #ffffff;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.12);
  --border2: rgba(255, 255, 255, 0.18);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --bg-text-opacity: 0.55;
  --bg-text-opacity-low: 0.25;
  --nav-bg: rgba(8, 8, 8, 0.95);
  --card-bg: #141414;
  --card-grad: linear-gradient(145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01));
  --card-border: rgba(255, 255, 255, 0.15);
}

/* Bootstrap Overrides */
.text-primary {
  color: var(--primary-text) !important;
}

@media (prefers-color-scheme: dark) {
  .text-primary {
    color: #66b2ff !important;
  }
}

[data-theme="dark"] .text-primary {
  color: #96b1cd !important;
}

.bg-primary {
  background-color: var(--primary-text) !important;
}

.btn-primary {
  background-color: var(--primary-text) !important;
  border-color: var(--primary-text) !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.preloader-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--primary-text);
  animation: spin 0.9s linear infinite;
}

.preloader-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  background: transparent;
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.4rem;
  border-radius: 50px;
  border: 1px solid var(--border2);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary-text);
}

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

/* ---------- Buttons ---------- */
.btn-primary-gm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 48, 97, 0.4);
  transition: var(--transition);
}

.btn-primary-gm:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 48, 97, 0.45);
}

.btn-outline-gm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-light);
  padding: 0.82rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gm:hover {
  background: var(--primary);
  border-color: var(--primary-text);
  color: #fff;
  transform: translateY(-3px);
}

/* ================================================================
   LOGO CAROUSEL
   ================================================================ */
.logo-carousel-section {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.carousel-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 35px;
  text-transform: uppercase;
  font-weight: 600;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.logo-item {
  transition: var(--transition);
}

.client-logo-box {
  background: var(--white);
  border: 1px solid #f9c79f;
  border-radius: 12px;
  height: 90px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: var(--transition);
}

.client-logo-box:hover {
  border-color: var(--primary-text);
  box-shadow: var(--shadow);
}

/* ================================================================
   ADVERTISING PLATFORMS SECTION
   ================================================================ */
.ad-platforms-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}



.client-logo-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-track.reverse {
  animation: scrollLogosReverse 30s linear infinite;
}

@keyframes scrollLogosReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ================================================================
   KEY FEATURE CARD
   ================================================================ */
.key-feature-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 4rem;
  background: url("../img/feature_card_bg.png") center/cover;
  border: 1px solid var(--border);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(10, 1, 24, 0.98) 0%,
      rgba(10, 1, 24, 0.5) 100%);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.key-feature-card .section-tag {
  color: #fff !important;
}

.card-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.card-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ================================================================
   STEP CARDS
   ================================================================ */
.step-card {
  background: var(--card-grad);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 4rem 2.5rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.step-card:hover {
  border-color: var(--primary-text);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  opacity: 0.05;
  line-height: 1;
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--primary-text);
  transition: var(--transition);
}

.step-card:hover .step-num {
  opacity: 0.15;
  transform: scale(1.1);
}

.step-title {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--primary-text);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-text);
  opacity: 0.2;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
}

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

.author-name {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.1rem;
}

.author-role {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 48, 97, 0.35);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

.cta-banner * {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta-banner .card-title,
.cta-banner .card-desc {
  color: #fff;
}

.cta-banner .section-title span,
.cta-banner .card-title span {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================================================
   TEAM CARDS
   ================================================================ */
.team-card {
  background: var(--card-grad);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.team-card:hover {
  border-color: var(--primary-text);
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.team-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary-text);
}

.btn-dark-gm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg3);
  color: var(--text);
  padding: 0.82rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: var(--transition);
}

.btn-dark-gm:hover {
  background: var(--primary);
  border-color: var(--primary-text);
  color: #fff;
  transform: translateY(-2px);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.main-navbar {
  background: var(--nav-bg);
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  transition: var(--transition);
  z-index: 1000;
}

.main-navbar.scrolled {
  backdrop-filter: blur(20px) !important;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
}

.navbar-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-text) !important;
}

.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--bg3);
  min-width: 220px;
  padding: 0.6rem 0;
}

.dropdown-item {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(13, 110, 253, 0.05);
  color: var(--primary-text);
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 1.4rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-light-text);
  padding-left: 1.8rem;
}

.navbar-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 18px rgba(0, 48, 97, 0.4);
  transition: var(--transition) !important;
}

.navbar-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(0, 48, 97, 0.55) !important;
}

.navbar-cta::after {
  display: none !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px);
  border-radius: 8px !important;
  padding: 0.4rem 0.7rem !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.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(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 48, 97, 0.2) 0%, transparent 65%);
  top: -200px;
  right: -50px;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(122, 122, 122, 0.12) 0%,
      transparent 65%);
  bottom: -100px;
  left: -100px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--text-muted) 1px, transparent 1px),
    linear-gradient(90deg, var(--text-muted) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.05;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 48, 97, 0.1);
  border: 1px solid rgba(0, 48, 97, 0.25);
  color: var(--primary-light-text);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 4.5rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero-title .highlight {
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-rotating-line {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  min-height: 1.15em;
  overflow: hidden;
}

.hero-rotating-line .rotating-text {
  display: inline-block;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes rotateText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  5% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(0);
  }

  35% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg,
      rgba(0, 48, 97, 0.4),
      transparent,
      rgba(122, 122, 122, 0.2));
  z-index: -1;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.dash-title {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
}

.dash-badge {
  background: rgba(0, 200, 100, 0.15);
  color: #00c864;
  border-radius: 50px;
  padding: 0.25rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  background: var(--bg2);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid var(--border);
}

.metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
}

.metric-change {
  font-size: 0.72rem;
  margin-top: 0.2rem;
}

.metric-change.up {
  color: #00c864;
}

.metric-change.down {
  color: var(--primary-text);
}

.chart-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 1rem;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--primary), var(--primary-light));
  opacity: 0.7;
  transition: opacity 0.3s;
}

.chart-bar:hover {
  opacity: 1;
}

.chart-bar.active {
  opacity: 1;
  background: linear-gradient(to top, var(--primary), var(--primary-light));
}

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section {
  padding: 100px 0;
}

.section-dark2 {
  background: var(--bg2);
}

.section-dark3 {
  background: var(--bg3);
}

/* ================================================================
   WORK PRINCIPLES
   ================================================================ */
.principles-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border2);
}

.principles-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.principles-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 20, 0.8), transparent);
  border-radius: 20px;
}

.stat-chip {
  display: inline-flex;
  flex-direction: column;
  margin-right: 2.5rem;
  margin-bottom: 1rem;
}

.stat-chip-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-chip-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.3rem;
}

.principle-feature {
  margin-bottom: 1.8rem;
}

.principle-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.principle-title {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.principle-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.key-feature-card {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.key-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 48, 97, 0.1);
  font-size: 1.3rem;
  border: 1px solid rgba(0, 48, 97, 0.2);
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-feature-title {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.why-feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.principle-feature {
  margin-bottom: 2rem;
}

.principle-icon {
  font-size: 1.5rem;
  color: var(--primary-text);
  margin-bottom: 0.8rem;
}

.principle-title {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.principle-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section {
  background: var(--bg);
}

.service-card-gm {
  background: var(--card-grad);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow);
}

.service-card-gm:hover {
  border-color: var(--primary-text);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-icon-gm {
  font-size: 2rem;
  margin-bottom: 1.4rem;
  display: block;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-title-gm {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.7rem;
}

.service-desc-gm {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-link-gm {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-link-gm:hover {
  border-color: var(--primary-text);
  color: #fff;
  background: var(--primary);
}

/* ================================================================
   INDUSTRIES SECTION
   ================================================================ */
.industry-card-gm {
  background: var(--card-grad);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.industry-card-gm::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.industry-card-gm:hover {
  border-color: var(--primary-light-text);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.industry-card-gm:hover::after {
  transform: scaleX(1);
}

.industry-icon-gm {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 48, 97, 0.08);
  font-size: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  color: var(--primary-text);
}

.industry-card-gm:hover .industry-icon-gm {
  background: var(--primary);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.industry-title-gm {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.industry-desc-gm {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.industry-card-gm .service-link-gm {
  margin-top: auto;
  align-self: flex-start;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--primary-text);
  font-weight: 700;
  letter-spacing: 1px;
}

.industry-card-gm .service-link-gm i {
  transition: transform 0.3s ease;
}

.industry-card-gm:hover .service-link-gm i {
  transform: translateX(8px);
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 48, 97, 0.15) 0%,
      transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-card-gm {
  background: var(--card-grad);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-card-gm:hover {
  border-color: var(--primary-text);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.testimonial-quote-gm {
  font-size: 3rem;
  color: var(--primary-text);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
  opacity: 0.6;
}

.star-gm {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-text-gm {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.author-avatar-gm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

.author-name-gm {
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.9rem;
}

.author-role-gm {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ================================================================
   FAQ (Custom Styles for index.php)
   ================================================================ */
.faq-item {
  background-color: var(--bg3);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-text);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-text);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-text);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary-text);
}

.faq-item.open .faq-question {
  background-color: var(--primary-text);
  color: #fff;
}

.faq-item.open .faq-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ================================================================
   FAQ (Bootstrap Accordion Overrides for services.php)
   ================================================================ */
.accordion-item {
  background-color: var(--bg3);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  border-radius: 16px !important;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--primary-text);
}

.accordion-button {
  background-color: var(--bg3);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.5rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-text);
  color: #fff;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(30%) sepia(21%) saturate(2891%) hue-rotate(193deg) brightness(97%) contrast(105%);
  /* Tints default icon to text color roughly */
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background-color: var(--bg3);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0 1.5rem 1.5rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.main-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-logo {
  height: 52px;
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-heading {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-text);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--primary-text);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    gap: 2rem;
    justify-content: center;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-rotating-line {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .hero-stat {
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.85rem !important;
  }

  .stat-chip-num {
    font-size: 2.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Card Spacing & Text Fixes */
  .service-card-gm,
  .industry-card-gm,
  .step-card,
  .testimonial-card {
    padding: 2rem 1.5rem !important;
  }

  .key-feature-card {
    padding: 3rem 1.5rem !important;
    min-height: auto !important;
    text-align: center;
  }

  .card-content {
    max-width: 100% !important;
  }

  .card-title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
  }

  .card-desc {
    font-size: 0.92rem !important;
    margin-bottom: 2rem !important;
  }

  .cta-banner {
    padding: 3rem 1.5rem !important;
    text-align: center;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-btns .btn-primary-gm,
  .hero-btns .btn-outline-gm {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   INNER PAGES DESIGN UPGRADES
   ================================================================ */
.inner-hero {
  padding: 180px 0 120px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.2;
  z-index: 1;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.service-feature-gm {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-feature-gm:hover {
  border-color: var(--primary-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 48, 97, 0.1);
}

.achievement-card-gm {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 48, 97, 0.2);
  background: var(--grad) !important;
  border: none !important;
}

.achievement-card-gm::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: #ffffff;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.achievement-card-gm .stat-chip-num {
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  color: #fff !important;
  font-size: 3rem;
}

.cta-section {
  background: var(--grad) !important;
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
  margin-top: 5rem;
  margin-bottom: 5rem;
  border-radius: 24px;
}

.cta-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: #ffffff;
  filter: blur(150px);
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none;
}

/* Service Features (Screenshot 3) */
.service-feature-gm {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
  border-left: 4px solid var(--primary) !important;
  border-radius: 12px;
  padding: 1.2rem 1.5rem !important;
  display: flex;
  align-items: center;
  font-weight: 700 !important;
  color: var(--text-light) !important;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 48, 97, 0.05) !important;
}

.service-feature-gm:hover {
  transform: translateX(5px) !important;
  box-shadow: 0 15px 40px rgba(0, 48, 97, 0.1) !important;
  border-left-color: var(--lightBlue-text) !important;
}

/* Approach Card Overrides (Screenshot 2) */
.section-dark2 .col-lg-4>div {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  height: 100% !important;
  padding: 2.5rem 2rem !important;
  transition: var(--transition) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02) !important;
  position: relative !important;
  overflow: hidden !important;
}

.section-dark2 .col-lg-4>div:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0, 48, 97, 0.08) !important;
  border-color: transparent !important;
}

.section-dark2 .col-lg-4>div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  opacity: 0;
  transition: var(--transition);
}

.section-dark2 .col-lg-4>div:hover::before {
  opacity: 1;
}

.section-dark2 .col-lg-4>div>i.fas {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  background: rgba(0, 48, 97, 0.05) !important;
  color: var(--primary-text) !important;
  border-radius: 14px !important;
  font-size: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  transition: var(--transition) !important;
}

.section-dark2 .col-lg-4>div:hover>i.fas {
  background: var(--primary) !important;
  color: #fff !important;
  transform: scale(1.1) rotate(5deg) !important;
}

.section-dark2 .col-lg-4>div>h4 {
  color: var(--text-light) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  margin-bottom: 1rem !important;
}

.section-dark2 .col-lg-4>div>p {
  color: var(--text-muted) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

/* ================================================================
   THEME ADAPTIVE LOGO & TEXT LEGIBILITY FIXES
   ================================================================ */

/* 1. Main Growth Minds Logo adjustment in Dark Mode */
[data-theme="dark"] .navbar-logo,
[data-theme="dark"] .footer-logo {
  filter: brightness(0) invert(1) !important;
  transition: var(--transition);
}

/* 2. Client Carousel Logos - Light Mode (Default) overrides */
/* Removed filters to keep logos colorful */

/* 3. Client Carousel Logos - Dark Mode overrides */
/* Removed filters to keep logos colorful */

/* 4. Global Muted Text legibility fixes */
.text-muted,
.text-secondary,
.text-body-secondary {
  color: var(--text-muted) !important;
}

/* 5. Global Light Text legibility fixes */
.text-light {
  color: var(--text-light) !important;
}

/* 6. Bootstrap Global Variable Mapping */
:root {
  --bs-body-color: var(--text);
  --bs-body-bg: var(--bg);
  --bs-secondary-color: var(--text-muted);
}

/* 7. Dark CTA Section & Banner Text Legibility Fixes */
.cta-section .text-light,
.cta-banner .text-light {
  color: #ffffff !important;
}

.cta-section .text-muted,
.cta-banner .text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}

.cta-section p,
.cta-banner p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.cta-section .section-title,
.cta-banner .section-title,
.cta-section h2,
.cta-banner h2 {
  color: #ffffff !important;
}



@media (prefers-color-scheme: dark) {
  .step-num { opacity: 0.45 !important; }
  .step-card:hover .step-num { opacity: 0.7 !important; }
  .quote-icon { opacity: 0.7 !important; }
}

[data-theme="dark"] .step-num { opacity: 0.45 !important; }
[data-theme="dark"] .step-card:hover .step-num { opacity: 0.7 !important; }
[data-theme="dark"] .quote-icon { opacity: 0.7 !important; }



