/* ============================================================
   FITSICALITY — fitsicality-style.css
   Professional · Energetic · High-Performance Fitness
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Primary */
  --slate:          #1F2D3D;
  --slate-dark:     #162231;
  --slate-mid:      #2A3F55;
  --slate-light:    #324B63;

  /* Accent — energetic teal-green */
  --energy:         #2DB87A;
  --energy-dark:    #209060;
  --energy-light:   #4ECDA0;
  --energy-pale:    #D6F5EA;
  --energy-dim:     rgba(45,184,122,0.12);

  /* Neutrals */
  --white:          #FFFFFF;
  --off-white:      #F7F8F6;
  --light-bg:       #F2F4F1;
  --section-bg:     #EEF1ED;
  --border:         rgba(31,45,61,0.1);
  --border-light:   rgba(31,45,61,0.06);
  --text-dark:      #1F2D3D;
  --text-body:      #3D4F5E;
  --text-muted:     #6B7D8E;

  /* Typography */
  --font-display:   'Barlow Condensed', sans-serif;
  --font-body:      'DM Sans', sans-serif;

  /* Misc */
  --radius:         6px;
  --radius-lg:      12px;
  --shadow-sm:      0 2px 12px rgba(31,45,61,0.07);
  --shadow-md:      0 8px 32px rgba(31,45,61,0.11);
  --shadow-lg:      0 20px 56px rgba(31,45,61,0.15);
  --transition:     all 0.3s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── UTILITY ── */
.section-pad    { padding: 90px 0; }
.section-pad-lg { padding: 110px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--energy-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--energy);
  flex-shrink: 0;
}

.divider-energy {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--energy), var(--energy-light));
  border-radius: 2px;
  margin-bottom: 1.4rem;
}

.divider-energy.center { margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--slate);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title .accent { color: var(--energy); }
.section-title.light   { color: var(--white); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 600px;
}

.section-subtitle.light { color: rgba(255,255,255,0.78); }

.btn-energy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--energy);
  border: 2px solid var(--energy);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-energy:hover {
  background: var(--energy-dark);
  border-color: var(--energy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,184,122,0.35);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn-outline-slate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  background: transparent;
  border: 2px solid var(--slate);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-slate:hover {
  background: var(--slate);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1050;
  padding: 1rem 0;
  background: var(--slate-dark);
  border-bottom: 3px solid var(--energy);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

#mainNav.scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 4px 28px rgba(22,34,49,0.45);
}

.navbar-brand-wrap { display: flex; flex-direction: column; line-height: 1; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-name span { color: var(--energy); }

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.45rem 1rem !important;
  transition: color 0.25s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--energy);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.navbar-nav .nav-link:hover { color: var(--energy-light) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.nav-btn-cta {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate) !important;
  background: var(--energy);
  border: none;
  padding: 0.5rem 1.5rem !important;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-btn-cta:hover {
  background: var(--energy-light);
  color: var(--slate) !important;
  box-shadow: 0 4px 16px rgba(45,184,122,0.4);
  transform: translateY(-1px);
}

.nav-btn-cta::after { display: none !important; }

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
#heroCarousel {
  height: 100vh;
  min-height: 600px;
  margin-top: 80px;
  height: calc(100vh - 80px);
}

.carousel-inner,
.carousel-item { height: 100%; }

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.hero-slide-1 { background-image: url('./images/1.jpg'); }
.hero-slide-2 { background-image: url('./images/3.jpg'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(22,34,49,0.86) 0%,
    rgba(31,45,61,0.68) 55%,
    rgba(31,45,61,0.28) 100%
  );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 5px;
  background: var(--energy);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--energy-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 2px;
  background: var(--energy);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}

.hero-title .accent { color: var(--energy); }

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Carousel controls */
.carousel-indicators { bottom: 2.5rem; gap: 6px; }

.carousel-indicators [data-bs-target] {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  border: none; opacity: 1;
  transition: all 0.35s;
}

.carousel-indicators .active { width: 52px; background: var(--energy); }

.carousel-control-prev,
.carousel-control-next {
  width: 50px; height: 50px;
  top: 50%; transform: translateY(-50%);
  bottom: auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}

.carousel-control-prev { left: 1.8rem; }
.carousel-control-next { right: 1.8rem; }

.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--energy); border-color: var(--energy); }

.carousel-control-prev-icon,
.carousel-control-next-icon { width: 16px; height: 16px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
#stats-strip {
  background: var(--slate);
  border-bottom: 3px solid var(--energy);
}

.stat-strip-item {
  padding: 1.6rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.stat-strip-item:last-child { border-right: none; }
.stat-strip-item:hover { background: rgba(255,255,255,0.04); }

.strip-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--energy);
  line-height: 1;
  letter-spacing: 0.02em;
  display: block;
}

.strip-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
  display: block;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: var(--white); }

.about-img-wrap { position: relative; }

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--energy);
  color: var(--white);
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 28px rgba(45,184,122,0.45);
  min-width: 150px;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}

.badge-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.3rem;
  display: block;
}

.about-quote {
  background: var(--section-bg);
  border-left: 4px solid var(--energy);
  padding: 1.3rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.6rem 0;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
  text-transform: uppercase;
}

.about-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ============================================================
   PILLARS SECTION
   ============================================================ */
#pillars { background: var(--off-white); }

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--energy), var(--energy-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon-wrap {
  width: 58px; height: 58px;
  background: var(--energy-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.pillar-card:hover .pillar-icon-wrap { background: var(--energy); }

.pillar-icon-wrap i {
  font-size: 1.5rem;
  color: var(--energy);
  transition: color 0.3s;
}

.pillar-card:hover .pillar-icon-wrap i { color: var(--white); }

.pillar-num {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(31,45,61,0.05);
  line-height: 1;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--slate);
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.pillar-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.pillar-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.3rem 0 0.3rem 1.3rem;
  position: relative;
}

.pillar-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--energy);
  font-size: 1.1rem;
  line-height: 1.35;
}

/* ============================================================
   APPROACH SECTION
   ============================================================ */
#approach {
  background: var(--slate);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

#approach::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,184,122,0.1) 0%, transparent 70%);
  pointer-events: none;
}

#approach::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,184,122,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.approach-intro {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.approach-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  height: 100%;
  transition: all 0.3s;
}

.approach-card:hover {
  background: rgba(45,184,122,0.08);
  border-color: rgba(45,184,122,0.3);
  transform: translateY(-4px);
}

.approach-icon {
  font-size: 1.8rem;
  color: var(--energy);
  margin-bottom: 1rem;
  display: block;
}

.approach-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

.approach-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

/* ============================================================
   MINDSET BANNER
   ============================================================ */
#mindset-banner {
  background: var(--energy);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#mindset-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.04) 20px,
    rgba(255,255,255,0.04) 21px
  );
}

.mindset-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.2;
  max-width: 860px;
  margin: 0 auto 0.8rem;
  position: relative;
}

.mindset-source {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
}

/* ============================================================
   GALLERY — Masonry-style asymmetric mosaic
   ============================================================ */
#gallery { background: var(--off-white); }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px 240px;
  gap: 12px;
}

.gallery-mosaic .gitem:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
.gallery-mosaic .gitem:nth-child(2) { grid-column: 3 / 4; grid-row: 1 / 3; }
.gallery-mosaic .gitem:nth-child(3) { grid-column: 4 / 5; grid-row: 1 / 2; }
.gallery-mosaic .gitem:nth-child(4) { grid-column: 1 / 2; grid-row: 2 / 3; }
.gallery-mosaic .gitem:nth-child(5) { grid-column: 2 / 3; grid-row: 2 / 3; }
.gallery-mosaic .gitem:nth-child(6) { grid-column: 4 / 5; grid-row: 2 / 3; }
.gallery-mosaic .gitem:nth-child(7) { grid-column: 1 / 2; grid-row: 3 / 4; }
.gallery-mosaic .gitem:nth-child(8) { grid-column: 2 / 4; grid-row: 3 / 4; }
.gallery-mosaic .gitem:nth-child(9) { grid-column: 4 / 5; grid-row: 3 / 4; }

.gitem {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--section-bg);
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}

.gitem:hover img { transform: scale(1.07); }

.gitem-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22,34,49,0.88) 0%,
    rgba(22,34,49,0.25) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}

.gitem:hover .gitem-overlay { opacity: 1; }

.gitem-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  width: 48px; height: 48px;
  background: var(--energy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: all 0.35s ease;
}

.gitem:hover .gitem-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gitem-zoom i { font-size: 1.1rem; color: var(--white); }

.gitem-cat {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--energy-light);
  display: block;
}

.gitem-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
  display: block;
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,16,26,0.97);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#lightbox.active { display: flex; }

#lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: opacity 0.3s;
}

#lightbox-caption {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.2rem;
  transition: background 0.3s;
  z-index: 9010;
}

#lightbox-close:hover { background: var(--energy); border-color: var(--energy); }

#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s;
  z-index: 9010;
}

#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }

#lightbox-prev:hover,
#lightbox-next:hover { background: var(--energy); border-color: var(--energy); }

#lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
}

/* ============================================================
   COMMUNITY SECTION
   ============================================================ */
#community { background: var(--white); }

.community-intro {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.audience-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
  height: 100%;
}

.audience-card:hover {
  background: var(--slate);
  border-color: var(--slate);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.audience-card:hover .audience-title { color: var(--white); }
.audience-card:hover .audience-icon  { color: var(--energy); }
.audience-card:hover .audience-desc  { color: rgba(255,255,255,0.65); }

.audience-icon {
  font-size: 2rem;
  color: var(--energy-dark);
  margin-bottom: 0.9rem;
  display: block;
  transition: color 0.3s;
}

.audience-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--slate);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.audience-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color 0.3s;
}

/* ============================================================
   CONNECT / CTA SECTION
   ============================================================ */
#connect { background: var(--section-bg); }

.connect-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.2rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--energy);
}

.connect-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.connect-info-icon {
  width: 40px; height: 40px;
  background: var(--energy-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.connect-info-icon i { font-size: 1rem; color: var(--energy-dark); }

.connect-info-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.connect-info-text small {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.1rem;
}

/* Form */
.form-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.form-control,
.form-select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  transition: all 0.25s;
}

.form-control:focus,
.form-select:focus {
  background: var(--white);
  border-color: var(--energy);
  box-shadow: 0 0 0 3px rgba(45,184,122,0.12);
  outline: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--slate-dark);
  padding: 70px 0 0;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-brand-name span { color: var(--energy); }

.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 4px;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 270px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--energy);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--energy-light); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--energy);
  border-color: var(--energy);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 50px;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--energy-light); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 44px; height: 44px;
  background: var(--slate);
  border: 2px solid var(--energy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--energy);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.35s ease;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--energy); color: var(--white); }

/* ============================================================
   AOS
   ============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .section-pad-lg { padding: 80px 0; }

  .navbar-collapse {
    background: var(--slate-dark);
    margin-top: 0.8rem;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .about-img-wrap img { height: 380px; }
  .about-img-badge { right: 8px; bottom: 8px; }

  .gallery-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 200px);
  }

  .gallery-mosaic .gitem:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-mosaic .gitem:nth-child(2) { grid-column: 3 / 4; grid-row: 1 / 3; }
  .gallery-mosaic .gitem:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
  .gallery-mosaic .gitem:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
  .gallery-mosaic .gitem:nth-child(5) { grid-column: 1 / 2; grid-row: 3; }
  .gallery-mosaic .gitem:nth-child(6) { grid-column: 2 / 4; grid-row: 3; }
  .gallery-mosaic .gitem:nth-child(7) { grid-column: 1 / 2; grid-row: 4; }
  .gallery-mosaic .gitem:nth-child(8) { grid-column: 2 / 3; grid-row: 4; }
  .gallery-mosaic .gitem:nth-child(9) { grid-column: 3 / 4; grid-row: 4; }

  .connect-card { padding: 2.2rem 1.8rem; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-desc  { font-size: 1rem; }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 190px);
  }

  .gallery-mosaic .gitem:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-mosaic .gitem:nth-child(2) { grid-column: 1 / 2; grid-row: 2; }
  .gallery-mosaic .gitem:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
  .gallery-mosaic .gitem:nth-child(4) { grid-column: 1 / 2; grid-row: 3; }
  .gallery-mosaic .gitem:nth-child(5) { grid-column: 2 / 3; grid-row: 3; }
  .gallery-mosaic .gitem:nth-child(6) { grid-column: 1 / 3; grid-row: 4; }
  .gallery-mosaic .gitem:nth-child(7) { grid-column: 1 / 2; grid-row: 5; }
  .gallery-mosaic .gitem:nth-child(8) { grid-column: 2 / 3; grid-row: 5; }
  .gallery-mosaic .gitem:nth-child(9) { display: none; }

  #lightbox-prev { left: 0.5rem; }
  #lightbox-next { right: 0.5rem; }

  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }

  .stat-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .stat-strip-item:last-child { border-bottom: none; }
}
/* ── Section ── */
#insights {
  padding: 60px 0;
}
 
/* ── Section Title & Subtitle ── */
#insights .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--slate);
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
 
#insights .title-underline {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--energy), var(--energy-light));
  border-radius: 2px;
  margin: 0.6rem auto 1.2rem;
}
 
#insights .section-subtitle {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}
 
/* ── Blog Card ── */
#insights .blog-card {
  background: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease !important;
  overflow: hidden;
}
 
#insights .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(45,184,122,0.3) !important;
}
 
/* ── Card Top Image ── */
#insights .blog-card-img {
  transition: transform 0.5s ease;
  object-position: center top;
}
 
#insights .blog-card:hover .blog-card-img {
  transform: scale(1.05);
}
 
/* ── Category Badge ── */
#insights .badge.bg-primary {
  background: var(--energy) !important;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}
 
/* ── Card Body ── */
#insights .card-body {
  padding: 1.5rem;
}
 
/* ── Date Meta ── */
#insights .card-body .text-muted.small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted) !important;
}
 
#insights .card-body .fa-calendar-alt {
  color: var(--energy-dark);
}
 
/* ── Card Title ── */
#insights .card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  transition: color 0.25s;
}
 
#insights .blog-card:hover .card-title {
  color: var(--energy-dark);
}
 
/* ── Card Excerpt ── */
#insights .card-text {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-body) !important;
  line-height: 1.75;
}
 
/* ── Read More Link ── */
#insights .division-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--energy-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s, gap 0.25s;
}
 
#insights .division-link .fa-arrow-right {
  font-size: 0.78rem;
  transition: transform 0.25s;
}
 
#insights .blog-card:hover .division-link {
  color: var(--energy);
}
 
#insights .blog-card:hover .division-link .fa-arrow-right {
  transform: translateX(4px);
}
 
/* ── View All Button ── */
#insights .btn-outline-secondary {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate) !important;
  border-color: var(--slate) !important;
  padding: 0.75rem 2rem !important;
  border-radius: var(--radius) !important;
  transition: var(--transition);
}
 
#insights .btn-outline-secondary:hover {
  background: var(--slate) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
 
#insights .btn-outline-secondary .fa-arrow-right {
  transition: transform 0.25s;
}
 
#insights .btn-outline-secondary:hover .fa-arrow-right {
  transform: translateX(4px);
}
.fit-inner-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  margin-top: 80px;
  background-size: cover;
  background-position: center;
}
 
.fit-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(22,34,49,0.88) 0%, rgba(31,45,61,0.65) 60%, rgba(31,45,61,0.35) 100%);
}
 
.fit-inner-hero::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: var(--energy);
  z-index: 2;
}
 
.fit-inner-hero .container { position: relative; z-index: 1; }
 
/* ── Breadcrumb ── */
.mmg-breadcrumb {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
 
.mmg-breadcrumb a {
  color: var(--energy-light);
  text-decoration: none;
  transition: color 0.25s;
}
 
.mmg-breadcrumb a:hover { color: var(--white); }
 
.mmg-breadcrumb span { color: rgba(255,255,255,0.3); }
 
/* ── Hero Title & Subtitle ── */
.mmg-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
 
.mmg-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}
 
/* ── Search Bar ── */
.input-group .form-control {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-right: none;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: none;
}
 
.input-group .form-control:focus {
  border-color: var(--energy);
  box-shadow: none;
}
 
.input-group .btn-primary {
  background: var(--energy);
  border-color: var(--energy);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  transition: var(--transition);
}
 
.input-group .btn-primary:hover {
  background: var(--energy-dark);
  border-color: var(--energy-dark);
}
 
.input-group .btn-outline-secondary {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-color: var(--border);
  background: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--transition);
}
 
.input-group .btn-outline-secondary:hover {
  background: var(--light-bg);
  color: var(--slate);
}
 
/* ── Category Filter Badges ── */
.badge.rounded-pill {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none !important;
}
 
.badge.rounded-pill.bg-primary {
  background: var(--energy) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(45,184,122,0.3);
}
 
.badge.rounded-pill.bg-light {
  background: var(--white) !important;
  color: var(--slate) !important;
  border: 1px solid var(--border);
}
 
.badge.rounded-pill.bg-light:hover {
  background: var(--slate) !important;
  color: var(--white) !important;
  border-color: var(--slate);
}
 
/* ── Blog Cards ── */
.blog-card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease !important;
}
 
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(45,184,122,0.3) !important;
}
 
.blog-card-img {
  object-position: center top;
  transition: transform 0.5s ease;
}
 
.blog-card:hover .blog-card-img { transform: scale(1.05); }
 
.blog-card .badge.bg-primary {
  background: var(--energy) !important;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 20px !important;
}
 
.blog-card .card-body { padding: 1.5rem; }
 
.blog-card .text-muted.small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted) !important;
}
 
.blog-card .fa-calendar-alt { color: var(--energy-dark); }
 
.blog-card .card-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 0.65rem;
  transition: color 0.25s;
}
 
.blog-card:hover .card-title { color: var(--energy-dark); }
 
.blog-card .card-text {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-body) !important;
  line-height: 1.75;
}
 
/* ── Read More ── */
.division-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--energy-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s;
}
 
.division-link .fa-arrow-right { transition: transform 0.25s; }
 
.blog-card:hover .division-link { color: var(--energy); }
.blog-card:hover .division-link .fa-arrow-right { transform: translateX(4px); }
 
/* ── Empty State ── */
.fa-newspaper { color: var(--text-muted) !important; }

.mmg-breadcrumb {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.mmg-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.mmg-breadcrumb a:hover { color: #fff; }

.mmg-breadcrumb span {
    margin: 0 8px;
    opacity: 0.5;
}
.blog-card {
    border-radius: 14px !important;
    transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13) !important;
}
.blog-card-img {
    transition: transform .4s;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}
/* â”€â”€ Blog Sidebar â”€â”€ */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.sidebar-widget-divider {
    height: 3px;
    width: 40px;
    background: var(--primary-color, #0d6efd);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

/* Sidebar Post Item */
.sidebar-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-post:last-of-type {
    border-bottom: none;
}

.sidebar-post-img {
    flex-shrink: 0;
    width: 75px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sidebar-post:hover .sidebar-post-img img {
    transform: scale(1.05);
}

.sidebar-post-info {
    flex: 1;
    min-width: 0;
}

.sidebar-post-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color, #0d6efd);
    display: block;
    margin-bottom: 0.25rem;
}

.sidebar-post-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color 0.3s;
}

.sidebar-post-title:hover { color: var(--primary-color, #0d6efd); }

.sidebar-post-date {
    font-size: 0.75rem;
    color: #999;
    margin: 0.3rem 0 0;
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-categories li:last-child { border-bottom: none; }

.sidebar-categories li a {
    display: block;
    padding: 0.6rem 0;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, padding-left 0.3s;
}

.sidebar-categories li a:hover {
    color: var(--primary-color, #0d6efd);
    padding-left: 5px;
}

/* Blog Content Styling */
.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.blog-content p {
    line-height: 1.9;
    margin-bottom: 1.25rem;
    color: #444;
}

.blog-content ul, .blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.blog-content ul li, .blog-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}