/* ===================================================
   KAYA DRIVING SCHOOL — GLOBAL STYLES
   Theme: Yellow (#FACC15) and White — No Black Theme
   =================================================== */

:root {
  --yellow: #FACC15;
  --yellow-dark: #EAB308;
  --yellow-light: #FEF9C3;
  --yellow-muted: rgba(250, 204, 21, 0.12);
  --white: #FFFFFF;
  --bg-primary: #FFFFFF;
  --bg-alt: #FAFAF8;
  --bg-card: #FDFDFC;
  --text-heading: #1A1A2E;
  --text-body: #4B5563;
  --text-muted: #9CA3AF;
  --border: #F0EEE8;
  --footer-bg: #1A1A2E;
  --footer-text: #cbd5e1;
  --header-height: 80px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

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

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.text-yellow {
  color: var(--yellow-dark);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  background: var(--yellow-muted);
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-tag-light {
  display: inline-block;
  background: rgba(250, 204, 21, 0.2);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.5rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--yellow);
  color: var(--text-heading);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-heading);
  border-color: currentColor;
}

.btn-outline-dark:hover {
  background: var(--text-heading);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-yellow {
  background: transparent;
  color: var(--yellow-dark);
  border-color: var(--yellow);
}

.btn-outline-yellow:hover {
  background: var(--yellow);
  color: var(--text-heading);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: white;
  color: var(--text-heading);
  transform: translateY(-3px);
}

/* Phone Button specific style */
.btn-phone {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-phone:hover {
  background: var(--yellow);
  color: var(--text-heading);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.btn-phone i,
.btn-phone svg {
  width: 18px;
  height: 18px;
}

/* Learn More Button specific style */
.btn-learn-more {
  background: transparent;
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-learn-more:hover {
  background: white;
  color: var(--text-heading);
  transform: translateY(-3px);
}

.btn-learn-more i,
.btn-learn-more svg {
  width: 18px;
  height: 18px;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition);
  /* Always white — no transparent mode */
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.header.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  /* Wider padding like in the screenshot */
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  cursor: pointer;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Removes the grey circular background on white header */
  mix-blend-mode: multiply;
}

/* Footer logo: show as a white badge on dark background */
.footer-logo {
  background: #ffffff;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 10px;
}

.footer-logo .logo-img {
  display: block !important;
  height: 40px;
  /* Slightly smaller in footer */
  mix-blend-mode: multiply;
  /* Keep white background blend */
}

.footer-logo .logo-text-fallback {
  display: flex !important;
  color: var(--text-heading);
  font-size: 1.2rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  align-items: center;
}

.logo-accent {
  color: var(--yellow-dark);
}

.logo-text-fallback {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Nav */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-heading);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow-dark);
}

.chevron {
  font-size: 1.2rem;
  line-height: 1;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--yellow-muted);
  color: var(--yellow-dark);
  padding-left: 1.3rem;
}

.header-cta {
  margin-left: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1.5rem 5%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav ul li a {
  display: block;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-heading);
  transition: color var(--transition);
}

.mobile-nav ul li a:hover {
  color: var(--yellow-dark);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
  /* Offset for always-white fixed header */
  background-color: var(--bg-primary);
}

.hero-parallax-bg {
  position: absolute;
  top: -20%;
  left: -5%;
  right: -5%;
  bottom: -20%;
  z-index: 0;
  will-change: transform;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.90) 20%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0.05) 60%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 2rem;
  margin-left: 0;
  width: 100%;
  max-width: 1400px;
}

.hero-content {
  max-width: 650px;
  text-align: left;
}

.badge-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.25rem;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3.5rem);
  /* Larger title like in screenshot */
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

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

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--yellow-dark);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating decorative icons */
.floating-icon {
  position: absolute;
  z-index: 3;
  font-size: 2rem;
  opacity: 0.5;
  pointer-events: none;
  animation: floaty 6s ease-in-out infinite;
}

.fi-1 {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}

.fi-2 {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.fi-3 {
  top: 35%;
  right: 35%;
  animation-delay: 4s;
  font-size: 1.5rem;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  display: flex;
  justify-content: center;
  margin-top: 6px;
  animation: bounce 2s infinite;
}

.scroll-arrow svg {
  width: 20px;
  color: var(--yellow-dark);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ----- REVEAL ANIMATIONS (CSS) -----*/
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ABOUT ---------- */
.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-inline-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .about-mission-vision-grid {
    grid-template-columns: 1fr;
  }

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

.about-images-wrapper,
.about-img-grid,
.about-img-box {
  height: 100%;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-box:hover img {
  transform: scale(1.05);
}

.img-secondary {
  margin-top: 3rem;
}

.floating-badge {
  position: absolute;
  bottom: 0;
  left: -1rem;
  background: white;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--yellow);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.fb-2 {
  left: auto;
  right: -1rem;
  top: 10%;
  bottom: auto;
}

.fb-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fb-icon svg {
  width: 22px;
  color: var(--yellow-dark);
}

.fb-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--yellow-dark);
  line-height: 1;
}

.fb-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  /* Removed bottom margin to align bottom text with image */
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-heading);
  font-size: 0.95rem;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

/* ---------- SERVICES 10-GRID ---------- */
.services-grid-10 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-10 {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card-10:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

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

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

.service-card-10:hover .sc10-img img {
  transform: scale(1.05);
}

.sc10-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sc10-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
  line-height: 1.4;
}

.sc10-content a {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  color: var(--yellow-dark);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.sc10-content a:hover {
  color: var(--text-heading);
}

@media (max-width: 900px) {
  .services-grid-10 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid-10 {
    grid-template-columns: 1fr;
  }
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Removing image scale hover effect as requested */
.service-card:hover .service-img img {
  /* transform: scale(1.08); */
}

.service-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--yellow);
  color: var(--text-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-body {
  padding: 1.75rem;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--yellow-muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon-wrap svg {
  width: 22px;
  color: var(--yellow-dark);
}

.service-body p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-heading);
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--yellow-dark);
}

.service-link svg {
  width: 16px;
}

/* ---------- PARALLAX SECTIONS ---------- */
.parallax-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.parallax-bg-layer {
  position: absolute;
  top: -30%;
  left: 0;
  right: 0;
  bottom: -30%;
  z-index: 0;
  will-change: transform;
}

.parallax-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.93);
  /* Full shade */
  z-index: 1;
}

.cta-overlay {
  background: rgba(26, 26, 46, 0.90);
}

/* WHY CHOOSE US */
.why-section .container {
  position: relative;
  z-index: 2;
}

.section-header.light h2 {
  color: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--yellow);
  transform: translateY(-6px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background var(--transition);
}

.why-card:hover .why-icon {
  background: var(--yellow);
}

.why-icon svg {
  width: 28px;
  color: var(--yellow);
}

.why-card:hover .why-icon svg {
  color: var(--text-heading);
}

.why-card h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  position: relative;
  transition: all var(--transition);
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border-color: var(--yellow);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--text-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
}

.pricing-header-block {
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.pricing-type {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1;
}

.currency {
  font-size: 1.8rem;
  vertical-align: super;
  font-weight: 700;
  color: var(--yellow-dark);
}

.per-hr {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 16px;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--bg-alt);
}

.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.t-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  letter-spacing: 3px;
}

.testimonial-card>p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-avatar {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-heading);
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.t-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.slider-btn svg {
  width: 18px;
  color: var(--text-heading);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.dot.active {
  border-color: var(--yellow);
  background: rgba(250, 204, 21, 0.1);
}

.dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ---------- BLOG SECTION ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.blog-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-date {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--yellow);
  color: var(--text-heading);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-body {
  padding: 1.75rem;
}

.blog-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-body h3:hover {
  color: var(--yellow-dark);
}

.blog-body p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.blog-link:hover {
  color: var(--yellow-dark);
}

.blog-link svg {
  width: 16px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA SECTION ---------- */
.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-inner {
  text-align: center;
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 5rem 0 2rem;
}

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

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand>p {
  color: var(--footer-text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.social-link:hover svg {
  color: var(--text-heading);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: #ffffff !important;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* Facebook: Solid fill for the logo mark */
.social-link[aria-label="Facebook"] svg path {
  fill: #ffffff !important;
  stroke: none;
}

/* Instagram: Outline only to preserve the 'lens' look */
.social-link[aria-label="Instagram"] svg * {
  fill: none !important;
}

/* YouTube: Outline for the screen, fill for the play triangle */
.social-link[aria-label="YouTube"] svg path {
  fill: none !important;
}

.social-link[aria-label="YouTube"] svg polygon {
  fill: #ffffff !important;
  stroke: none;
}

/* Lucide compatibility */
.social-link svg[data-lucide] {
  fill: none !important;
}


.social-link:hover svg {
  color: var(--text-heading) !important;
  stroke: var(--text-heading) !important;
}


.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--footer-text);
  line-height: 1.6;
}

.footer-bottom a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--yellow);
}

.footer-bottom .footer-divider {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}


@media (max-width: 600px) {
  .footer-bottom p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-bottom .footer-divider {
    display: none;
  }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
  animation: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
  stroke: none;
}

/* WhatsApp Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 320px;
  background: #111b21;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: popupSlideUp 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes popupSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-popup.active {
  display: flex;
}

.wp-header {
  background: #202c33;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wp-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wp-avatar {
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

.wp-text {
  display: flex;
  flex-direction: column;
}

.wp-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.wp-status {
  font-size: 0.75rem;
  opacity: 0.7;
}

.wp-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.wp-close:hover {
  opacity: 1;
}

.wp-body {
  padding: 1.5rem;
  background: #0b141a;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  background-repeat: repeat;
  background-size: 400px;
  position: relative;
}

.wp-bubble {
  background: #202c33;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  font-size: 0.9rem;
  color: #e9edef;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  max-width: 90%;
  line-height: 1.4;
}

.wp-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 10px solid #202c33;
  border-left: 10px solid transparent;
}

.wp-footer {
  padding: 1rem;
  background: #202c33;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* The fixed line divider */
}

.wp-btn {
  background: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  transition: all 0.3s ease;
}

.wp-btn:hover {
  background: #1fa855;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.85);
  }
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--footer-text);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--transition);
  color: var(--yellow);
}

.footer-col ul li a:hover {
  color: var(--yellow);
  padding-left: 3px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-info-item svg {
  width: 16px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-item a {
  color: var(--footer-text);
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--footer-text);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--yellow);
}


/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #FFF9E6 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--yellow-dark);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--yellow-dark);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(234, 179, 8, 0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

@media (max-width: 1024px) {

  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
}


/* ---------- YELLOW STATS BANNER ---------- */
.yellow-stats-banner {
  background-color: var(--yellow);
  padding: 3.5rem 0;
  position: relative;
  z-index: 10;
}

.yellow-stats-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.yellow-stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.yellow-stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--text-heading);
  display: block;
  line-height: 1;
}

.yellow-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  display: block;
  margin-top: 0.5rem;
}

/* ---------- NEW ABOUT US SECTION ---------- */
.about-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.about-new-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-new-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-new-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-new-mission,
.about-new-vision {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.about-new-mission h3,
.about-new-vision h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.about-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--yellow-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
}

.about-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.about-new-tags {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.about-new-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-body);
}

.about-new-features {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-new-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.about-new-feature .feature-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

.about-new-feature p {
  margin: 0;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
  font-size: 0.95rem;
}

.about-progress-bars {
  margin-top: 2rem;
}

.progress-item {
  margin-bottom: 1.5rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.95rem;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 100px;
  width: 0;
  transition: width 1.5s ease-out;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-heading);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--yellow-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--yellow-dark);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 0.75rem;
}

/* ---------- BLOG POST LIST (STEPS) ---------- */
.blog-steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.blog-step {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.blog-step::before {
  content: '•';
  color: var(--yellow-dark);
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: -10px;
}

/* ---------- GSAP ANIMATION INITIAL STATES ---------- */
/* Opacity is handled in main.js to ensure visibility if JS fails */
.gsap-reveal-up,
.gsap-reveal-left,
.gsap-reveal-right,
.gsap-reveal-card {
  will-change: transform, opacity;
}

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .pricing-featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {

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

  .about-content {
    min-height: auto;
  }

  .about-img-box {
    height: 400px;
  }

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

  /* Testimonials: show 1 card on tablet */
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .yellow-stats-banner .container {
    flex-direction: column;
    gap: 2rem;
  }

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

  .about-new-features {
    flex-direction: column;
  }

  .stat-card {
    padding: 1rem 1.5rem;
    min-width: 100px;
  }

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

  .img-secondary {
    margin-top: 0;
  }

  .floating-badge {
    display: none;
  }

  /* Testimonials: show 1 on mobile */
  .testimonial-card {
    flex: 0 0 100%;
  }

  .page-hero {
    padding: calc(var(--header-height) + 2rem) 0 2.5rem;
  }

  .floating-icon {
    display: none !important;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-lg {
    padding: 0.9rem 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  /* Responsive Hero Backgrounds */
  #heroBgImg {
    content: url('assets/mobile-hero.png');
    object-position: 80% top;
    /* Prioritize the person on the right and their face at the top */
  }

  .hero-parallax-bg {
    transform: none !important;
    /* Disable parallax shift on mobile */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

@media (max-width: 900px) and (min-width: 481px) {
  #heroBgImg {
    content: url('assets/tablet-hero.png');
    object-position: 80% top;
  }

  .hero-parallax-bg {
    transform: none !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

/* Fix for white line at bottom of page */
html {
  background-color: var(--footer-bg);
}

.footer {
  margin-bottom: 0;
  border-bottom: none;
}