/* ==========================================================================
   BAWABOUT HERO SECTION - SCOPED, RESPONSIVE & DUAL THEME COMPATIBLE
   ========================================================================== */

/* DARK THEME (DEFAULT) */
.bawAboutHero {
  --baw-bg: #07090e;
  --baw-text-title: #ffffff;
  --baw-text-body: #94a3b8;
  --baw-badge-bg: rgba(56, 189, 248, 0.08);
  --baw-badge-border: rgba(56, 189, 248, 0.2);
  --baw-badge-text: #38bdf8;
  --baw-glow-color: rgba(56, 189, 248, 0.12);
  
  position: relative;
  background-color: var(--baw-bg);
  padding: 110px 0 70px 0;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

/* Background Radial Glow Effect (Dark Mode Only) */
.bawAboutHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, var(--baw-glow-color) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* PURE WHITE LIGHT THEME OVERRIDES */
body.light-theme .bawAboutHero {
  --baw-bg: #ffffff !important;
  --baw-text-title: #020617 !important;
  --baw-text-body: #334155 !important;
  --baw-badge-bg: #f0f9ff !important;
  --baw-badge-border: #bae6fd !important;
  --baw-badge-text: #0284c7 !important;
}

body.light-theme .bawAboutHero::before {
  display: none !important; /* Hide background glow in light mode for pure white look */
}

.bawAboutHero-container {
  position: relative;
  z-index: 1;
  width: min(85%, 1200px);
  margin: 0 auto;
}

.bawAboutHero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.bawAboutHero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--baw-badge-bg);
  border: 1px solid var(--baw-badge-border);
  color: var(--baw-badge-text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.bawAboutHero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--baw-badge-text);
}

.bawAboutHero-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--baw-text-title);
  margin-bottom: 22px;
}

/* Gradient text accent */
.bawAboutHero-gradient-text {
  background: linear-gradient(90deg, #38bdf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

body.light-theme .bawAboutHero-gradient-text {
  background: linear-gradient(90deg, #0284c7 0%, #0f172a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 500 !important;
}

.bawAboutHero-description {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--baw-text-body);
  margin: 0 auto;
  max-width: 720px;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .bawAboutHero {
    padding: 80px 0 50px 0;
  }
}

/* ==========================================================================
   BAWABOUT LEADERSHIP SECTION - SCOPED, RESPONSIVE & DUAL THEME COMPATIBLE
   ========================================================================== */

/* DARK THEME (DEFAULT) */
.bawAboutLeadership {
  --baw-bg: #07090e;
  --baw-card-bg: rgba(15, 23, 42, 0.6);
  --baw-card-border: rgba(255, 255, 255, 0.08);
  --baw-text-title: #ffffff;
  --baw-text-body: #94a3b8;
  --baw-badge-bg: rgba(56, 189, 248, 0.08);
  --baw-badge-border: rgba(56, 189, 248, 0.2);
  --baw-badge-text: #38bdf8;
  --baw-role-text: #38bdf8;
  --baw-img-bg: #0f172a;

  position: relative;
  background-color: var(--baw-bg);
  padding: 90px 0;
  transition: background-color 0.3s ease;
}

/* PURE WHITE LIGHT THEME OVERRIDES */
body.light-theme .bawAboutLeadership {
  --baw-bg: #ffffff !important;
  --baw-card-bg: #ffffff !important;
  --baw-card-border: #f1f5f9 !important;
  --baw-text-title: #020617 !important;
  --baw-text-body: #334155 !important;
  --baw-badge-bg: #f0f9ff !important;
  --baw-badge-border: #bae6fd !important;
  --baw-badge-text: #0284c7 !important;
  --baw-role-text: #0284c7 !important;
  --baw-img-bg: #f8fafc !important;
}

.bawAboutLeadership-container {
  width: min(85%, 1200px);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Header Styling
   -------------------------------------------------------------------------- */
.bawAboutLeadership-header {
  max-width: 680px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.bawAboutLeadership-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--baw-badge-bg);
  border: 1px solid var(--baw-badge-border);
  color: var(--baw-badge-text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.bawAboutLeadership-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--baw-badge-text);
}

.bawAboutLeadership-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--baw-text-title);
  margin-bottom: 16px;
}

.bawAboutLeadership-gradient-text {
  background: linear-gradient(90deg, #38bdf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

body.light-theme .bawAboutLeadership-gradient-text {
  background: linear-gradient(90deg, #0284c7 0%, #0f172a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 500 !important;
}

.bawAboutLeadership-description {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--baw-text-body);
}

/* --------------------------------------------------------------------------
   Grid & Card Styling
   -------------------------------------------------------------------------- */
.bawAboutLeadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bawAboutLeadership-card {
  background: var(--baw-card-bg);
  border: 1px solid var(--baw-card-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.light-theme .bawAboutLeadership-card {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.02) !important;
}

.bawAboutLeadership-card:hover {
  transform: translateY(-6px);
}

body.light-theme .bawAboutLeadership-card:hover {
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08) !important;
  border-color: #cbd5e1 !important;
}

.bawAboutLeadership-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--baw-img-bg);
  overflow: hidden;
  position: relative;
}

.bawAboutLeadership-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bawAboutLeadership-card:hover .bawAboutLeadership-image {
  transform: scale(1.05);
}

.bawAboutLeadership-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bawAboutLeadership-name {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--baw-text-title);
  margin-bottom: 4px;
}

.bawAboutLeadership-role {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--baw-role-text);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.bawAboutLeadership-bio {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--baw-text-body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive Layout
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .bawAboutLeadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bawAboutLeadership {
    padding: 60px 0;
  }
  .bawAboutLeadership-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   BAWABOUT MISSION SECTION - SCOPED, RESPONSIVE & DUAL THEME COMPATIBLE
   ========================================================================== */

/* DARK THEME (DEFAULT) */
.bawAboutMission {
  --baw-bg: #07090e;
  --baw-card-bg: rgba(15, 23, 42, 0.6);
  --baw-card-border: rgba(255, 255, 255, 0.08);
  --baw-text-title: #ffffff;
  --baw-text-body: #94a3b8;
  --baw-badge-bg: rgba(56, 189, 248, 0.08);
  --baw-badge-border: rgba(56, 189, 248, 0.2);
  --baw-badge-text: #38bdf8;
  --baw-icon-bg: rgba(56, 189, 248, 0.1);
  --baw-icon-border: rgba(56, 189, 248, 0.25);
  --baw-icon-color: #38bdf8;

  position: relative;
  background-color: var(--baw-bg);
  padding: 90px 0;
  transition: background-color 0.3s ease;
}

/* PURE WHITE LIGHT THEME OVERRIDES */
body.light-theme .bawAboutMission {
  --baw-bg: #ffffff !important;
  --baw-card-bg: #ffffff !important;
  --baw-card-border: #f1f5f9 !important;
  --baw-text-title: #020617 !important;
  --baw-text-body: #334155 !important;
  --baw-badge-bg: #f0f9ff !important;
  --baw-badge-border: #bae6fd !important;
  --baw-badge-text: #0284c7 !important;
  --baw-icon-bg: #f0f9ff !important;
  --baw-icon-border: #e0f2fe !important;
  --baw-icon-color: #0284c7 !important;
}

.bawAboutMission-container {
  width: min(85%, 1200px);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Header Styling
   -------------------------------------------------------------------------- */
.bawAboutMission-header {
  max-width: 680px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.bawAboutMission-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--baw-badge-bg);
  border: 1px solid var(--baw-badge-border);
  color: var(--baw-badge-text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.bawAboutMission-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--baw-badge-text);
}

.bawAboutMission-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--baw-text-title);
  margin-bottom: 16px;
}

.bawAboutMission-gradient-text {
  background: linear-gradient(90deg, #38bdf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

body.light-theme .bawAboutMission-gradient-text {
  background: linear-gradient(90deg, #0284c7 0%, #0f172a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 500 !important;
}

.bawAboutMission-description {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--baw-text-body);
}

/* --------------------------------------------------------------------------
   Grid & Card Styling
   -------------------------------------------------------------------------- */
.bawAboutMission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bawAboutMission-card {
  background: var(--baw-card-bg);
  border: 1px solid var(--baw-card-border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.light-theme .bawAboutMission-card {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.02) !important;
}

.bawAboutMission-card:hover {
  transform: translateY(-6px);
}

body.light-theme .bawAboutMission-card:hover {
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08) !important;
  border-color: #cbd5e1 !important;
}

.bawAboutMission-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--baw-icon-bg);
  border: 1px solid var(--baw-icon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.bawAboutMission-icon {
  width: 26px;
  height: 26px;
  stroke: var(--baw-icon-color);
}

.bawAboutMission-card-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--baw-text-title);
  margin-bottom: 12px;
}

.bawAboutMission-card-text {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--baw-text-body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive Layout
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .bawAboutMission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bawAboutMission {
    padding: 60px 0;
  }
  .bawAboutMission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   BAWABOUT STORY SECTION - SCOPED, RESPONSIVE & DUAL THEME COMPATIBLE
   ========================================================================== */

/* DARK THEME (DEFAULT) */
.bawAboutStory {
  --baw-bg: #07090e;
  --baw-text-title: #ffffff;
  --baw-text-body: #94a3b8;
  --baw-badge-bg: rgba(56, 189, 248, 0.08);
  --baw-badge-border: rgba(56, 189, 248, 0.2);
  --baw-badge-text: #38bdf8;
  --baw-img-border: rgba(255, 255, 255, 0.08);
  --baw-check-bg: rgba(56, 189, 248, 0.1);
  --baw-check-icon: #38bdf8;

  position: relative;
  background-color: var(--baw-bg);
  padding: 90px 0;
  transition: background-color 0.3s ease;
}

/* PURE WHITE LIGHT THEME OVERRIDES */
body.light-theme .bawAboutStory {
  --baw-bg: #ffffff !important;
  --baw-text-title: #020617 !important;
  --baw-text-body: #334155 !important;
  --baw-badge-bg: #f0f9ff !important;
  --baw-badge-border: #bae6fd !important;
  --baw-badge-text: #0284c7 !important;
  --baw-img-border: #f1f5f9 !important;
  --baw-check-bg: #e0f2fe !important;
  --baw-check-icon: #0284c7 !important;
}

.bawAboutStory-container {
  width: min(85%, 1200px);
  margin: 0 auto;
}

.bawAboutStory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Image Column
   -------------------------------------------------------------------------- */
.bawAboutStory-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  border: 1px solid var(--baw-img-border);
  overflow: hidden;
  position: relative;
}

body.light-theme .bawAboutStory-image-wrapper {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.02) !important;
}

.bawAboutStory-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bawAboutStory-image-wrapper:hover .bawAboutStory-image {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   Content Column
   -------------------------------------------------------------------------- */
.bawAboutStory-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--baw-badge-bg);
  border: 1px solid var(--baw-badge-border);
  color: var(--baw-badge-text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bawAboutStory-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--baw-badge-text);
}

.bawAboutStory-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--baw-text-title);
  margin-bottom: 20px;
}

.bawAboutStory-gradient-text {
  background: linear-gradient(90deg, #38bdf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

body.light-theme .bawAboutStory-gradient-text {
  background: linear-gradient(90deg, #0284c7 0%, #0f172a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 500 !important;
}

.bawAboutStory-description {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--baw-text-body);
  margin-bottom: 16px;
}

.bawAboutStory-description:last-of-type {
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   Points List
   -------------------------------------------------------------------------- */
.bawAboutStory-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bawAboutStory-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bawAboutStory-check-box {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--baw-check-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bawAboutStory-check-icon {
  width: 14px;
  height: 14px;
  stroke: var(--baw-check-icon);
}

.bawAboutStory-point-text {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--baw-text-title);
}

/* --------------------------------------------------------------------------
   Responsive Layout
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .bawAboutStory-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .bawAboutStory {
    padding: 60px 0;
  }
}

/* ==========================================================================
   BAWABOUT CTA SECTION - SCOPED, RESPONSIVE & DUAL THEME COMPATIBLE
   ========================================================================== */

/* DARK THEME (DEFAULT) */
.bawAboutCta {
  --baw-bg: #07090e;
  --baw-card-bg: rgba(15, 23, 42, 0.6);
  --baw-card-border: rgba(255, 255, 255, 0.08);
  --baw-text-title: #ffffff;
  --baw-text-body: #94a3b8;
  --baw-badge-bg: rgba(56, 189, 248, 0.08);
  --baw-badge-border: rgba(56, 189, 248, 0.2);
  --baw-badge-text: #38bdf8;
  --baw-btn-bg: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  --baw-btn-text: #ffffff;
  --baw-btn-shadow: rgba(56, 189, 248, 0.25);

  position: relative;
  background-color: var(--baw-bg);
  padding: 80px 0 100px 0;
  transition: background-color 0.3s ease;
}

/* PURE WHITE LIGHT THEME OVERRIDES */
body.light-theme .bawAboutCta {
  --baw-bg: #ffffff !important;
  --baw-card-bg: #ffffff !important;
  --baw-card-border: #f1f5f9 !important;
  --baw-text-title: #020617 !important;
  --baw-text-body: #334155 !important;
  --baw-badge-bg: #f0f9ff !important;
  --baw-badge-border: #bae6fd !important;
  --baw-badge-text: #0284c7 !important;
  --baw-btn-bg: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  --baw-btn-text: #ffffff !important;
  --baw-btn-shadow: rgba(2, 132, 199, 0.2) !important;
}

.bawAboutCta-container {
  width: min(85%, 1200px);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   CTA Box Layout
   -------------------------------------------------------------------------- */
.bawAboutCta-box {
  background: var(--baw-card-bg);
  border: 1px solid var(--baw-card-border);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.light-theme .bawAboutCta-box {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.02) !important;
  backdrop-filter: none !important;
}

/* Background Glow Effect (Dark Mode Only) */
.bawAboutCta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

body.light-theme .bawAboutCta-box::before {
  display: none !important;
}

/* --------------------------------------------------------------------------
   CTA Text Content
   -------------------------------------------------------------------------- */
.bawAboutCta-content {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.bawAboutCta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--baw-badge-bg);
  border: 1px solid var(--baw-badge-border);
  color: var(--baw-badge-text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bawAboutCta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--baw-badge-text);
}

.bawAboutCta-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--baw-text-title);
  margin-bottom: 14px;
}

.bawAboutCta-gradient-text {
  background: linear-gradient(90deg, #38bdf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

body.light-theme .bawAboutCta-gradient-text {
  background: linear-gradient(90deg, #0284c7 0%, #0f172a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 500 !important;
}

.bawAboutCta-description {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--baw-text-body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   CTA Action Button
   -------------------------------------------------------------------------- */
.bawAboutCta-action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.bawAboutCta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--baw-btn-bg);
  color: var(--baw-btn-text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 25px var(--baw-btn-shadow);
  transition: transform 0.25 ease, box-shadow 0.25s ease;
}

.bawAboutCta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--baw-btn-shadow);
}

.bawAboutCta-btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.bawAboutCta-btn:hover .bawAboutCta-btn-arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Responsive Layout
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .bawAboutCta-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 40px 30px;
    gap: 30px;
  }

  .bawAboutCta-content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .bawAboutCta {
    padding: 50px 0 70px 0;
  }
  
  .bawAboutCta-box {
    padding: 32px 20px;
  }
  
  .bawAboutCta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   BAWABOUT VALUES SECTION - SCOPED, RESPONSIVE & DUAL THEME COMPATIBLE
   ========================================================================== */

/* DARK THEME (DEFAULT) */
.bawAboutValues {
  --baw-bg: #07090e;
  --baw-card-bg: rgba(15, 23, 42, 0.6);
  --baw-card-border: rgba(255, 255, 255, 0.08);
  --baw-text-title: #ffffff;
  --baw-text-body: #94a3b8;
  --baw-badge-bg: rgba(56, 189, 248, 0.08);
  --baw-badge-border: rgba(56, 189, 248, 0.2);
  --baw-badge-text: #38bdf8;
  --baw-icon-bg: rgba(56, 189, 248, 0.1);
  --baw-icon-border: rgba(56, 189, 248, 0.25);
  --baw-icon-color: #38bdf8;

  position: relative;
  background-color: var(--baw-bg);
  padding: 90px 0;
  transition: background-color 0.3s ease;
}

/* PURE WHITE LIGHT THEME OVERRIDES */
body.light-theme .bawAboutValues {
  --baw-bg: #ffffff !important;
  --baw-card-bg: #ffffff !important;
  --baw-card-border: #f1f5f9 !important;
  --baw-text-title: #020617 !important;
  --baw-text-body: #334155 !important;
  --baw-badge-bg: #f0f9ff !important;
  --baw-badge-border: #bae6fd !important;
  --baw-badge-text: #0284c7 !important;
  --baw-icon-bg: #f0f9ff !important;
  --baw-icon-border: #e0f2fe !important;
  --baw-icon-color: #0284c7 !important;
}

.bawAboutValues-container {
  width: min(85%, 1200px);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Header Styling
   -------------------------------------------------------------------------- */
.bawAboutValues-header {
  max-width: 680px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.bawAboutValues-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--baw-badge-bg);
  border: 1px solid var(--baw-badge-border);
  color: var(--baw-badge-text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.bawAboutValues-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--baw-badge-text);
}

.bawAboutValues-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--baw-text-title);
  margin-bottom: 16px;
}

.bawAboutValues-gradient-text {
  background: linear-gradient(90deg, #38bdf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

body.light-theme .bawAboutValues-gradient-text {
  background: linear-gradient(90deg, #0284c7 0%, #0f172a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 500 !important;
}

.bawAboutValues-description {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--baw-text-body);
}

/* --------------------------------------------------------------------------
   Grid & Card Styling
   -------------------------------------------------------------------------- */
.bawAboutValues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bawAboutValues-card {
  background: var(--baw-card-bg);
  border: 1px solid var(--baw-card-border);
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.light-theme .bawAboutValues-card {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.02) !important;
}

.bawAboutValues-card:hover {
  transform: translateY(-6px);
}

body.light-theme .bawAboutValues-card:hover {
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08) !important;
  border-color: #cbd5e1 !important;
}

.bawAboutValues-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--baw-icon-bg);
  border: 1px solid var(--baw-icon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bawAboutValues-icon {
  width: 24px;
  height: 24px;
  stroke: var(--baw-icon-color);
}

.bawAboutValues-card-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--baw-text-title);
  margin-bottom: 10px;
}

.bawAboutValues-card-text {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Google Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--baw-text-body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive Layout
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .bawAboutValues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .bawAboutValues {
    padding: 60px 0;
  }
  .bawAboutValues-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}