/* Mahhushu Construction & Projects - main stylesheet (clean version) */
:root {
  --blue: #06224f;
  --red: #b3212c;
  --light-blue: #dde6ff;
  --section-strong: #0b2c63;
  --section-strong-text: #f7f8ff;
  --text: #222;
  --muted: #555;
  --border: #cfd5e6;
  --radius: 12px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}
/* FIX — hide mobile header on desktop */
.mobile-header {
  display: none;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top bar */
.top-bar {
  background: var(--blue);
  color: #ffffff;
  font-size: 0.8rem;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0.4rem 0;
}

.top-bar a {
  color: #ffffff;
}

.top-bar-item {
  white-space: nowrap;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
}

.logo {
  height: 88px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.96rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a.active {
  color: var(--red);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}

.header-cta {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .logo {
    height: 72px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.btn:hover {
  background: #951b24;
  border-color: #951b24;
  text-decoration: none;
}

.btn-secondary {
  background: #ffffff;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-secondary:hover {
  background: var(--blue);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: #ffffff;
}

.btn-fullwidth {
  width: 100%;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  padding: 4rem 0;
  background-image:
    linear-gradient(to right, rgba(6,34,79,0.93), rgba(179,33,44,0.9)),
    url("background-rural-road.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f6f7ff;
}

.section-alt h1,
.section-alt h2,
.section-alt h3,
.section-alt p,
.section-alt li {
  color: #f6f7ff;
}

.section-strong {
  background: var(--section-strong);
  color: var(--section-strong-text);
}

.section-strong h2,
.section-strong h3,
.section-strong p {
  color: var(--section-strong-text);
}

.section h1,
.section h2,
.section h3 {
  margin-top: 0;
}

.section-intro {
  max-width: 640px;
}

.section-divider {
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Layout helpers */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
	
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Hero */
.hero {
  position: relative;
  background: #020710;
  color: #ffffff;
  padding: 2rem 0 2.2rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(221,230,255,0.75), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255,208,224,0.65), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.15), rgba(0,0,0,0.65));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(0.9rem, 3.2vw, 2.8rem);
}

.hero-text p {
  max-width: 520px;
  color: rgba(245,245,255,0.9);
}

.hero-text .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #ffd5de;
  margin-bottom: 0.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-photo {
  border-radius: 32px;
  min-height: 160px;
  background-image: url("hero-road-workers.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 220px;
  }
}

/* Cards */
.card {
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 24px rgba(11, 44, 99, 0.18);
  border: 1px solid #e3e6f0;
}

.section-alt .card {
  background: rgba(6,24,61,0.92);
  border-color: rgba(255,255,255,0.22);
  color: #f6f7ff;
}

.card h3 {
  margin-top: 0;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

/* Strong cards in services section */
.card-strong {
  position: relative;
  overflow: hidden;
  background: rgba(6,24,61,0.9);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

/* Watermark images for each service card */
.card-strong:nth-child(1)::before,
.card-strong:nth-child(2)::before,
.card-strong:nth-child(3)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22; /* strong watermark */
  z-index: 0;
}

.card-strong:nth-child(1)::before {
  background-image: url("project-1.jpg");
}

.card-strong:nth-child(2)::before {
  background-image: url("project-2.jpg");
}

.card-strong:nth-child(3)::before {
  background-image: url("project-3.jpg");
}

/* ensure text is above images */
.card-strong > * {
  position: relative;
  z-index: 1;
}

/* add subtle blue tint over images for readability */
.card-strong::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6,24,61,0.45);
  mix-blend-mode: multiply;
  z-index: 0;
}

/* Projects */
.projects-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.project-card {
  background: rgba(6,24,61,0.94);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.18);
  color: #f6f7ff;
}

.project-meta {
  font-size: 0.9rem;
  color: #c3c9f0;
}

/* Gallery */
.gallery {
  margin-top: 3rem;
}

.gallery-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  background: rgba(6,24,61,0.92);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Clients */
.client-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.client-card {
  background: rgba(255,255,255,0.98);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: 500;
}

/* Founder */
.founder-card p {
  margin-top: 1rem;
}

.founder-vision {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Forms */
.enquiry-form {
  max-width: 640px;
  margin-top: 2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(11, 44, 99, 0.2);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Map section */
.section-map {
  background: #050c1c;
  color: #f6f7ff;
}

.section-map h2 {
  color: #ffffff;
}

.section-map p {
  color: #d6dbf5;
}

.map-container {
  margin-top: 1.5rem;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.35);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: #0a1630;
  font-size: 0.85rem;
  color: #c0c6de;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.dev-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.dev-logo {
  height: 26px;
  width: auto;
}



/* Gallery carousel */
.gallery {
  margin-top: 3rem;
}

.gallery h3 {
  margin-bottom: 1rem;
}

.gallery-carousel {
  position: relative;
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-item {
  flex: 0 0 calc(100% / 3);
  padding: 0.75rem;
}

.carousel-item-inner {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  background: rgba(6,24,61,0.92);
}

.carousel-item-inner img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(6,24,61,0.85);
  color: #ffffff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
  z-index: 5;
}

.carousel-arrow:hover {
  background: rgba(179,33,44,0.95);
  border-color: rgba(179,33,44,1);
}

.carousel-prev {
  left: -0.5rem;
}

.carousel-next {
  right: -0.5rem;
}

@media (max-width: 960px) {
  .carousel-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 640px) {
  .carousel-item {
    flex: 0 0 100%;
  }
}



/* === On-site gallery carousels (updated) === */

.gallery {
  margin-top: 3rem;
}

.gallery h2 {
  margin-bottom: 1.5rem;
}

.gallery-category {
  margin-top: 2.5rem;
}

.gallery-category h3 {
  margin-bottom: 0.75rem;
}

/* Outer wrapper for each category slider */
.gallery-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Window that hides overflow */
.carousel-window {
  overflow: hidden;
}

/* Track holds all slides in a row */
.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* Each slide */
.carousel-item {
  flex: 0 0 calc(100% / 3); /* 3 per view on desktop */
  padding: 0.75rem;
  box-sizing: border-box;
}

.carousel-item-inner {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  background: rgba(6, 24, 61, 0.92);
}

.carousel-item-inner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(6, 24, 61, 0.85);
  color: #ffffff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
  z-index: 5;
}

.carousel-arrow:hover {
  background: rgba(179, 33, 44, 0.95);
  border-color: rgba(179, 33, 44, 1);
}

.carousel-prev {
  left: -0.5rem;
}

.carousel-next {
  right: -0.5rem;
}

/* Responsive: 2 per view on tablet, 1 on mobile */
@media (max-width: 960px) {
  .carousel-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 640px) {
  .carousel-item {
    flex: 0 0 100%;
  }
}


/* Rectangular variant for Mtubatuba logo */
.client-logo-wrapper--rect {
  width: 64px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
}

.client-logo--rect {
  object-fit: contain;
}
.client-card {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  background: white;
  padding: 18px 26px;
  border-radius: 50px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.client-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.map-container {
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
  height: 370px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.dev-logo {
  width: 100px;      /* Increase or decrease size */
  height: auto;     /* Keep proportions */
  margin-left: 5px; /* Add small spacing */
}

.dev-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.card {
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

.card-strong {
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.card-strong:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

.project-card {
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

.logo {
  height: 120px;     /* Increase this number to make it bigger */
  width: auto;       /* Keeps proportions */
}

.founder-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.founder-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.founder-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.founder-details h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .founder-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Founder Section */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* Cards */
.founder-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

/* Image */
.founder-photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* Text Card */
.founder-info h2,
.founder-info h3 {
  margin-top: 0;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;     /* THIS centers text vertically */
  padding: 40px 0;         /* Adjust height */
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;     /* THIS centers text vertically */
  padding: 20px 0;         /* Adjust height */
}
footer {
  padding-top: 20px !important;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer {
  padding: 20px 0 !important;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#copyright {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.9;
}

section {
  scroll-margin-top: 140px;
}


/* Remove underline from clicked/focused header links */
nav a:focus,
nav a:active,
nav a:visited {
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
}
nav a:hover {
  text-decoration: underline;
}
.main-nav a.active,
.main-nav a.current,
nav a.active,
nav a.current {
  border-bottom: none !important;
  text-decoration: none !important;
  color: inherit !important;   /* Optional: prevents red highlight */
}
.main-nav a:hover {
  text-decoration: underline;
}
.main-nav a {
  color: #00204d !important;   /* your navy header color */
}
.main-nav a.active::after,
.main-nav a.current::after,
nav a.active::after,
nav a.current::after {
  content: none !important;
  display: none !important;
}
/* FIX: Hide mobile slide-out menu on desktop */
.mobile-nav {
  display: none;
}

/* MOBILE HEADER SYSTEM */
@media (max-width: 768px) {

  /* Hide desktop nav */
  .main-nav,
  .header-cta {
    display: none !important;
  }

  /* Mobile Header Row */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 14px;
  }
  
    /* FIX — Make burger menu text visible */
  .mobile-nav a {
    color: #ffffff !important;
  }
  /* FIX — hide desktop logo on mobile */
.logo {
  display: none;
}
  /* FIX: Smaller client cards on mobile */
  .client-card {
    padding: 10px 14px !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    gap: 10px !important;
  }

  /* Fix: smaller logos */
  .client-logo {
    width: 55px !important;
    height: 55px !important;
  }

  /* Reduce spacing between cards */
  .client-grid {
    gap: 0.75rem !important;
  }
  /* ============================
   MOBILE FULL OPTIMIZATION
   (Add inside @media max-width: 768px)
   ============================ */

/* HEADER */
.mobile-header {
  padding: 6px 14px !important;
}


/* NAV MENU */
.mobile-nav a {
  font-size: 1.05rem !important;
  padding: 6px 0 !important;
}

/* HERO SECTION */
.hero {
  padding: 2rem 1rem 2.2rem !important;
}

.hero-text h1 {
  font-size: clamp(1.4rem, 4vw, 1.9rem) !important;
  line-height: 1.25 !important;
}

.hero-text p {
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
}

.hero-photo {
  min-height: 160px !important;
  border-radius: 18px !important;
}

/* BUTTONS */
.btn {
  padding: 0.55rem 1.1rem !important;
  font-size: 0.9rem !important;
}

/* TWO COLUMN → SINGLE COLUMN */
.two-column {
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
}

/* SERVICES CARDS */
.card-strong {
  padding: 1.25rem 1rem !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25) !important;
}

.card-strong h3 {
  font-size: 1.1rem !important;
}

.card-strong p {
  font-size: 0.9rem !important;
}

/* PROJECT CARDS */
.project-card {
  padding: 1.2rem 1rem !important;
  border-radius: 14px !important;
}

.project-card h3 {
  font-size: 1.15rem !important;
}

.project-meta {
  font-size: 0.82rem !important;
}

/* GALLERY CAROUSEL */
.carousel-item-inner img {
  height: 160px !important;
}

.gallery-category h3 {
  font-size: 1.1rem !important;
}

/* CLIENT CARDS (Your existing fix improved) */
.client-card {
  padding: 10px 14px !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  gap: 10px !important;
}

.client-logo {
  width: 55px !important;
  height: 55px !important;
}

.client-grid {
  gap: 0.75rem !important;
}

/* FOUNDER SECTION */
.founder-grid {
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
}

.founder-card {
  padding: 1.4rem !important;
}

.founder-photo {
  border-radius: 12px !important;
}

.founder-info h2 {
  font-size: 1.35rem !important;
}

.founder-info h3 {
  font-size: 1.1rem !important;
}

.founder-info p,
.founder-info li {
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
}

/* CONTACT SECTION */
.map-container {
  height: 240px !important;
  border-radius: 14px !important;
}

/* FOOTER */
.site-footer {
  padding: 1.2rem 0 !important;
  text-align: center !important;
}

.footer-inner {
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.dev-logo {
  width: 70px !important;
}

/* ==== FINAL MOBILE COMPRESSION FIXES ==== */

/* 1. Reduce section padding on mobile */
.section,
.section-alt {
  padding: 2.2rem 0 !important;
}

/* 2. Reduce headings on mobile */
.section h2 {
  font-size: 1.45rem !important;
  margin-bottom: 0.8rem !important;
}

.section h3 {
  font-size: 1.15rem !important;
}

/* 3. Services card compression */
.card-strong {
  padding: 1rem 1rem !important;
  border-radius: 14px !important;
}
.card-strong p {
  font-size: 0.88rem !important;
  line-height: 1.4 !important;
}



/* 4. Project cards compression */
.project-card {
  padding: 1rem !important;
}
.project-card h3 {
  font-size: 1.1rem !important;
}
.project-meta {
  font-size: 0.78rem !important;
}

/* 5. Founder spacing */
.founder-card {
  padding: 1.2rem !important;
}
.founder-info h2 {
  margin-bottom: 0.5rem !important;
}
.founder-info p,
.founder-info li {
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
}



  .mobile-logo {
    height: 40px;
    width: auto;
  }

  /* Hamburger */
  .mobile-menu-btn {
    font-size: 32px;
    background: none;
    border: none;
    color: var(--blue);
    cursor: pointer;
  }

  /* Slide Menu */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -260px;
    width: 240px;
    height: 100vh;
    background: var(--blue);
    padding: 80px 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: 0.3s ease;
    z-index: 9999;
  }


  .mobile-quote-btn {
    margin-top: 20px;
    background: var(--red);
    padding: 12px 18px;
    border-radius: 8px;
    text-align: center;
    color: #fff !important;
  }

  /* Overlay */
  #mobileOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9998;
  }

  /* Active */
  .mobile-nav.active {
    right: 0;
  }

  #mobileOverlay.active {
    opacity: 1;
    pointer-events: all;
  }
}
