/* =============================================================
   Pioneer LLC — Why Us Page Stylesheet
   Companion to: why-us.html
   Fonts loaded via HTML: Playfair Display, DM Sans (Google Fonts)
   Dependencies: Bootstrap 5.3.3, Bootstrap Icons 1.11.3
   ============================================================= */

/* ─── DESIGN TOKENS ─── */
:root {
  --blue-deep:   #0b2a5a;
  --blue-mid:    #1149a3;
  --blue-bright: #1e6ef5;
  --blue-sky:    #4e9af1;
  --blue-ice:    #dbeafe;
  --blue-pale:   #f0f6ff;
  --white:       #ffffff;
  --off-white:   #f8faff;
  --slate:       #4a5e7a;
  --slate-light: #8499b5;
  --text-dark:   #0d1f3c;
  --gold:        #e8a020;
  --gold-light:  #fef3dc;
  --green-dark:  #0b6e4f;
  --green-pale:  #e6f7f0;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}


/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0f3875 45%, #1149a3 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem 0 6rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 55px 55px;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(78, 154, 241, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 15% 70%, rgba(30, 110, 245, 0.14) 0%, transparent 40%);
}

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

/* Decorative oversized background word */
.hero-deco-word {
  position: absolute;
  right: -2rem;
  bottom: -1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: -0.04em;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.breadcrumb-trail a {
  color: var(--blue-sky);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-trail a:hover {
  color: #fff;
}

.breadcrumb-trail i {
  font-size: 0.6rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-sky);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--blue-sky);
  border-radius: 2px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.page-hero h1 em {
  color: var(--blue-sky);
  font-style: italic;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* Hero CTA buttons */
.btn-hero-primary {
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 7px;
  padding: 0.85rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.btn-hero-primary:hover {
  background: var(--blue-ice);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-size: 0.86rem;
  border-radius: 7px;
  padding: 0.85rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-hero-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* ─── SHARED SECTION LABELS ─── */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  font-weight: 700;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
}

.section-eyebrow.light {
  color: var(--blue-sky);
}

.section-eyebrow.light::before {
  background: var(--blue-sky);
}

.body-lead {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.85;
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--blue-bright);
  padding: 1.2rem 1.8rem;
  background: var(--blue-pale);
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--blue-deep);
  line-height: 1.7;
  margin: 0;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(11, 42, 90, 0.07);
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 0.5rem 1.5rem;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(11, 42, 90, 0.08);
}

.stat-num-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--blue-bright);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--slate);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── CORE COMPETENCY SECTION ─── */
.competency-section {
  padding: 6.5rem 0;
  background: var(--off-white);
}

.competency-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

/* Pillar cards */
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(11, 42, 90, 0.08);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-sky));
  border-radius: 0 0 14px 14px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  box-shadow: 0 16px 50px rgba(11, 42, 90, 0.1);
  transform: translateY(-4px);
}

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

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.2s;
}

.pillar-card:hover .pillar-icon {
  background: var(--blue-ice);
}

.pillar-icon i {
  color: var(--blue-bright);
  font-size: 1.5rem;
}

.pillar-card h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.55rem;
}

.pillar-card p {
  font-size: 0.83rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

/* ─── SDVOSB / TEAMING SECTION ─── */
.teaming-section {
  padding: 6.5rem 0;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}

.teaming-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 95% 5%, rgba(30, 110, 245, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 5% 95%, rgba(78, 154, 241, 0.15) 0%, transparent 40%);
}

.teaming-section .section-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 55px 55px;
}

.teaming-content {
  position: relative;
  z-index: 2;
}

.teaming-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.teaming-section .body-lead {
  color: rgba(255, 255, 255, 0.6);
}

.teaming-section .pull-quote {
  border-left-color: var(--blue-sky);
  background: rgba(78, 154, 241, 0.08);
}

.teaming-section .pull-quote p {
  color: rgba(255, 255, 255, 0.85);
}

/* Certification badges */
.cert-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 0.9rem;
  transition: border-color 0.25s, background 0.25s;
}

.cert-badge:hover {
  border-color: rgba(78, 154, 241, 0.4);
  background: rgba(78, 154, 241, 0.08);
}

.cert-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(30, 110, 245, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-badge-icon i {
  color: var(--blue-sky);
  font-size: 1.3rem;
}

.cert-badge h6 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cert-badge p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.55;
}

/* Teaming CTA box */
.teaming-cta {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.teaming-cta h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.teaming-cta p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

/* Buttons */
.btn-gold {
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(232, 160, 32, 0.3);
}

.btn-gold:hover {
  background: #c88510;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ─── SAMPLE PROJECTS SECTION ─── */
.projects-section {
  padding: 6.5rem 0;
  background: var(--white);
}

.projects-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

/* Project cards */
.project-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 42, 90, 0.08);
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
  background: var(--white);
}

.project-card:hover {
  box-shadow: 0 24px 64px rgba(11, 42, 90, 0.11);
  transform: translateY(-6px);
}

.project-header {
  padding: 2.2rem 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
}

/* Coloured headers per project type */
.proj-econ .project-header {
  background: linear-gradient(135deg, #0b2a5a 0%, #1149a3 100%);
}

.proj-energy .project-header {
  background: linear-gradient(135deg, #0f3460 0%, #0b6e4f 100%);
}

.project-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.project-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.project-client-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.project-client-label strong {
  color: rgba(255, 255, 255, 0.8);
}

.project-client-label::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.3);
}

.project-body {
  padding: 2rem 2.2rem 2.2rem;
}

.project-summary {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Methodology pills */
.method-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.method-pill {
  background: var(--off-white);
  border: 1px solid rgba(11, 42, 90, 0.1);
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

/* Findings list */
.project-findings {
  list-style: none;
  padding: 0;
  margin-bottom: 1.6rem;
}

.project-findings li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(11, 42, 90, 0.05);
  line-height: 1.6;
}

.project-findings li:last-child {
  border-bottom: none;
}

.find-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.proj-energy .find-dot {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* Impact strip */
.impact-strip {
  background: var(--blue-pale);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proj-energy .impact-strip {
  background: var(--green-pale);
}

.impact-strip i {
  font-size: 1.4rem;
  color: var(--blue-bright);
  flex-shrink: 0;
}

.proj-energy .impact-strip i {
  color: var(--green-dark);
}

.impact-strip p {
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.impact-strip strong {
  color: var(--blue-bright);
}

.proj-energy .impact-strip strong {
  color: var(--green-dark);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-mid) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.7rem;
  position: relative;
  font-weight: 800;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.btn-cta-white {
  background: #fff;
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 7px;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
  background: var(--blue-ice);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.btn-cta-outline-w {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-size: 0.86rem;
  border-radius: 7px;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}

.btn-cta-outline-w:hover {
  border-color: #fff;
  color: #fff;
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
 /* ─── TOP BAR ─── */
      .top-bar {
        background: var(--blue-deep);
        font-size: .76rem;
        color: rgba(255,255,255,.5);
        padding: .3rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: .5rem;
      }
      .top-bar a { color: var(--blue-sky); text-decoration: none; }
      .top-bar a:hover { color: #fff; }

      /* ─── NAV ─── */
      .site-nav {
        background: var(--white);
        border-bottom: 1px solid rgba(11,42,90,.1);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 10 2rem;
        box-shadow: 0 2px 20px rgba(11,42,90,.06);
      }
      .site-nav .navbar-brand {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 1.35rem;
        color: var(--blue-deep) !important;
        letter-spacing: -.01em;
        display: flex;
        align-items: center;
        gap: .5rem;
      }
      .site-nav .navbar-brand .brand-icon {
        width: 34px; height: 34px;
        background: var(--blue-bright);
        border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
      }
      .site-nav .navbar-brand .brand-icon i { color: #fff; font-size: 1rem; }
      .site-nav .navbar-brand span { color: var(--blue-bright); }
      .site-nav .nav-link {
        color: var(--slate) !important;
        font-size: .82rem;
        letter-spacing: .04em;
        font-weight: 600;
        text-transform: uppercase;
        padding: 1.3rem .85rem !important;
        transition: color .2s;
      }
      .site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--blue-bright) !important; }
      .site-nav .btn-nav {
        background: var(--blue-bright);
        color: #fff;
        font-weight: 700;
        font-size: .8rem;
        letter-spacing: .05em;
        border: none;
        border-radius: 6px;
        padding: .5rem 1.25rem;
        transition: background .2s;
        text-decoration: none;
      }
      .site-nav .btn-nav:hover { background: var(--blue-mid); color: #fff; }
/* ─── FOOTER ─── */
      .site-footer { background: var(--blue-deep); padding: 4rem 0 2rem; }
      .footer-brand h5 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.2rem; margin-bottom: .5rem; font-weight: 800; }
      .footer-brand p { font-size: .81rem; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 260px; }
      .footer-heading { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-sky); margin-bottom: .9rem; font-weight: 700; }
      .footer-links { list-style: none; padding: 0; }
      .footer-links li { margin-bottom: .45rem; }
      .footer-links a { color: rgba(255,255,255,.4); font-size: .82rem; text-decoration: none; transition: color .2s; }
      .footer-links a:hover { color: var(--blue-sky); }
      .footer-bottom {
        margin-top: 3rem; padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,.08);
        font-size: .76rem; color: rgba(255,255,255,.25);
        display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
      }
      .footer-bottom a { color: rgba(78,154,241,.5); text-decoration: none; }


@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-1 { animation: fadeDown 0.65s ease both 0.10s; }
.anim-2 { animation: fadeDown 0.65s ease both 0.22s; }
.anim-3 { animation: fadeDown 0.65s ease both 0.36s; }
.anim-4 { animation: fadeDown 0.65s ease both 0.50s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-deco-word {
    display: none;
  }

  .stat-item + .stat-item {
    border-left: none;
    border-top: 1px solid rgba(11, 42, 90, 0.08);
  }

  .teaming-cta {
    padding: 2rem 1.2rem;
  }

  .project-body {
    padding: 1.5rem;
  }

  .project-header {
    padding: 1.8rem 1.5rem 1.4rem;
  }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 6rem 1rem 4rem;
    }
}
  @media (max-width: 768px) {
    .hero-content {
        padding: 1rem !important;
    }