:root {
  --black: #0f0f0f;
  --white: #ffffff;
  --off-white: #fcfcfc;
  --light-gray: #eaeaea;
  --accent: #1a7366;
  --teal-light: #daf3ef;
  --yellow-muted: #f7f3e9;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--black);
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 14px 36px;
  z-index: 1000;
}
nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--accent);
}

/* Sections */
section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
section:not(#hero) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

/* Hero */
#hero {
  color: var(--white);
}
#hero .background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,115,102,0.6) 0%,
    rgba(247,243,233,0.6) 100%
  );
  mix-blend-mode: overlay;
  z-index: -1;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 16px;
  z-index: 1;
  text-align: center;
}
.hero-content .logo {
  max-width: 560px;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  animation:
    glitch 1s linear 0s 1 forwards; /* delayed to play after fade */
}
.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
  opacity: 0;
  animation: fadeInLogo 3s ease-out 1s forwards;
}
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: var(--white);
  opacity: 0;
  animation: fadeInLogo 3s ease-out 1.4s forwards;
}
.hero-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--white);
  max-width: 600px;
  opacity: 0;
  animation: fadeInLogo 3s ease-out 1.8s forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  opacity: 0;
  animation: fadeInLogo 3s ease-out 2.2s forwards;
}
.button {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.button.primary {
  background: var(--black);
  color: var(--white);
}
.button.primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.button.secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px; /* ~33% of typical 720p hero height */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(234, 234, 234, 0.2) 30%,  /* matches var(--light-gray) */
    rgba(234, 234, 234, 0.5) 60%,
    var(--light-gray) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* Section backgrounds */
#services {
    background-color: #eaedeb;
}
#who {
  background: var(--teal-light);:root {
  --black: #0f0f0f;
  --white: #ffffff;
  --off-white: #fcfcfc;
  --light-gray: #eaeaea;
  --accent: #1a7366;
  --teal-light: #daf3ef;
  --yellow-muted: #f7f3e9;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--black);
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 14px 36px;
  z-index: 1000;
}
nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--accent);
}

/* Sections */
section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
section:not(#hero) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

/* Headings & Lists */
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent);
}
p {
  max-width: 680px;
  margin-bottom: 18px;
  line-height: 1.6;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
li {
  margin: 8px 0;
  font-size: 1rem;
  position: relative;
  padding-left: 24px;
}
li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* Accordion */
.service-expandable {
  width: 100%;
  max-width: 720px;
  margin: 24px 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.service-expandable:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.icon-service.open {
  background-color: #daf3ef;
}

.service-toggle {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  color: var(--black);
  transition: background 0.2s, color 0.2s;
}
.service-toggle::before {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  margin-right: 8px;
  transition: color 0.2s;
}
.service-toggle.open {
  background: var(--teal-light);
  color: var(--black);
}
.service-toggle.open::before {
  content: '-'; /* Unicode en dash for minus */
  color: var(--black);
}
.service-content {
  overflow: hidden;
  max-height: 0;
  padding: 0 24px;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: #fafafa;
}

.service-content.open {
  max-height: 1000px; /* allow enough room for tall lists */
  padding: 16px 24px 24px;
}

/* Section backgrounds */
#services {
  background: var(--off-white);
}
#who {
  background-color: #f5f9fa;
}
#clients {
  background: var(--light-gray);
}
#process {
  background: var(--teal-light);
}
#why {
  background: var(--teal-light);
}

#projects {
  background: var(--yellow-muted);
}
#contact {
  background: var(--black);
  color: var(--white);
  padding: 100px 20px;
}

/* Projects */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.project {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.project img {
  width: 100%;
  display: block;
}
.project:hover {
  transform: translateY(-4px);
}

/* Animations */
@keyframes fadeInLogo {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes glitch {
  0%, 100% {
    clip-path: inset(0);
  }
  10% {
    clip-path: inset(10% 0 85% 0);
    transform: translate(-2px, 2px);
  }
  20% {
    clip-path: inset(85% 0 10% 0);
    transform: translate(2px, -2px);
  }
  30% {
    clip-path: inset(5% 0 90% 0);
  }
  40% {
    clip-path: inset(85% 0 5% 0);
    transform: translate(2px, 2px);
  }
  50% {
    clip-path: inset(10% 0 85% 0);
  }
  60% {
    clip-path: inset(0);
  }
  80% {
    clip-path: inset(15% 0 80% 0);
  }
}
.expertise-visuals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.expertise-icon {
  flex: 1 1 150px;
  max-width: 160px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: default;
}

.expertise-icon img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-icon p {
  margin-top: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #222;
}

.expertise-icon:hover {
  transform: translateY(-4px);
}

.expertise-icon:hover img {
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: scale(1.05);
}

}
#clients {
  background: var(--light-gray);
}
#projects {
  background: var(--yellow-muted);
}
#contact {
  background: var(--black);
  color: var(--white);
  padding: 100px 20px;
}

/* Headings & Lists */
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent);
}
p {
  max-width: 680px;
  margin-bottom: 18px;
  line-height: 1.6;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
li {
  margin: 8px 0;
  font-size: 1rem;
  position: relative;
  padding-left: 24px;
}
li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* Projects */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.project {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.project img {
  width: 100%;
  display: block;
}
.project:hover {
  transform: translateY(-4px);
}

/* Accordion */

.services-selection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.service-expandable {
  width: 100%;
  max-width: 720px;
  margin: 24px 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.service-expandable:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.service-toggle {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  color: var(--black);
  transition: background 0.2s, color 0.2s;
}
.service-toggle::before {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  margin-right: 8px;
}
.service-toggle.open {
  background: var(--teal-light);
  color: var(--black);
}
.service-toggle.open::before {
  content: '-';
  color: var(--black);
}
.service-content {
  overflow: hidden;
  max-height: 0;
  padding: 0 24px;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.service-content.open {
  max-height: 1000px; /* allow enough room for tall lists */
  padding: 16px 24px 24px;
}

/* Animations */
@keyframes fadeInLogo {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes glitch {
  0%, 100% {
    clip-path: inset(0);
  }
  10% {
    clip-path: inset(10% 0 85% 0);
    transform: translate(-2px, 2px);
  }
  20% {
    clip-path: inset(85% 0 10% 0);
    transform: translate(2px, -2px);
  }
  30% {
    clip-path: inset(5% 0 90% 0);
  }
  40% {
    clip-path: inset(85% 0 5% 0);
    transform: translate(2px, 2px);
  }
  50% {
    clip-path: inset(10% 0 85% 0);
  }
  60% {
    clip-path: inset(0);
  }
  80% {
    clip-path: inset(15% 0 80% 0);
  }
}

/* --- Image-Based Accordion (Side-by-Side Content) --- */
.icon-accordion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  margin-top: 40px;
}

/* Wraps icon + content together */
.icon-set {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  position: relative;
}

/* Icon Button */
.icon-service {
  width: 252px; /* 180px * 1.4 = 252px */
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.icon-service img {
  width: 100%;
  height: auto;
  display: block;
  padding: 22px; /* slightly increased padding to scale proportionally */
}


.icon-service .plus {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
  pointer-events: none;
}

.icon-service:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Accordion Content */
.icon-content {
  display: none;
  margin-top: 12px;
  background: var(--teal-light);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 16px 20px;
  text-align: left;
  animation: fadeIn 0.3s ease-in-out;
}

.icon-content.open {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
#who .expandable-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* Adjust spacing between cards */
  max-width: 700px;
  margin: 0 auto;
}

#who .expandable-card {
  width: 100%;
}

.client-types-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.client-type-card {
  flex: 1 1 300px;
  max-width: 360px;
  min-width: 280px;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  background: var(--off-white); /* All cards same */
  text-align: center;
}

.client-type-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.client-type-card img {
  width: 192px; /* 48px × 4 */
  margin-bottom: 16px;
}

.client-type-card h3 {
  font-size: 1.2rem;
  margin: 12px 0 8px;
  color: var(--accent);
}

.client-type-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}
#who .expandable-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  max-width: 720px;
}

#who .service-expandable {
  margin: 0;
}

.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  scroll-behavior: smooth;
  width: 100%;
}


.step {
  flex: 0 0 100%;      /* ✅ TAKE FULL WRAPPER WIDTH */
  max-width: 100%;
  box-sizing: border-box;
  padding: 40px 30px;
  background: #eaeaea; /* ✅ Let section background show through */
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.step-icon-img {
  width: 120px;
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.why-section {
  padding: 60px 20px;
  background-color: #e6f8f5;
  color: #083d38;
  font-family: 'Inter', sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #145f57;
  margin-bottom: 30px;
}

.why-intro-tight {
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.7;
}

.why-intro {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.why-left {
  flex: 1 1 500px;
}

.proof-points {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
  font-size: 1rem;
}

.proof-points li::before {
  content: "• ";
  color: #0ea68a;
  margin-right: 8px;
}

.why-right {
  flex: 1 1 400px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #0ea68a;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.testimonial p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial span {
  font-size: 0.9rem;
  color: #555;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.stat-block {
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  flex: 1 1 120px;
}

.stat-block strong {
  display: block;
  font-size: 1.5rem;
  color: #0ea68a;
  margin-bottom: 6px;
}

#projects {
  background-color: #fcf8f3;
  padding: 60px 20px;
  text-align: center;
}

#projects h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #145f57;
}

.projects-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}



.project-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 380px; /* Increased to accommodate text */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: default;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-card .overlay {
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.project-card .overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.project-card .overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: #e8f7f3;
}

#step {
  background-color: 	#daf3ef;
}
#step {
  background: 	#ffffff;
}
#projects {
  background-color: #f7f3e9;
}
#contact .credit-note {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #cccccc;
  opacity: 0.6;
  text-align: center;
}
.why-section {
  background-color: #e6f8f5;
  padding: 60px 20px;
  color: #083d38;
  font-family: 'Inter', sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #145f57;
}

.why-intro-tight {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: justify;
}

.why-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.why-flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.why-left {
  flex: 1 1 500px;
}

.proof-points {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.proof-points li {
  margin-bottom: 10px;
  text-align: left;
}

.why-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #0ea68a;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.testimonial p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial span {
  font-size: 0.9rem;
  color: #555;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.stat-block {
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  flex: 1 1 120px;
}

.stat-block strong {
  display: block;
  font-size: 1.5rem;
  color: #0ea68a;
  margin-bottom: 6px;
}
.why-section {
  background-color: #e6f8f5;
  padding: 60px 20px;
  color: #083d38;
  font-family: 'Inter', sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #145f57;
}
.why-heading-text {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.why-heading-text p {
  text-align: center;
}



.why-flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.why-left {
  flex: 1 1 500px;
}
.why-left p:first-of-type {
  text-align: justify;
}

.audience-note {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.proof-points {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.proof-points li {
  margin-bottom: 10px;
  text-align: left;
}

.why-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #0ea68a;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.testimonial p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial span {
  font-size: 0.9rem;
  color: #555;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.stat-block {
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  flex: 1 1 120px;
}

.stat-block strong {
  display: block;
  font-size: 1.5rem;
  color: #0ea68a;
  margin-bottom: 6px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 20px auto;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  background-color: #005f52;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}



.contact-form button:hover {
  background-color: #00443b;
}
.lead-capture {
  text-align: center;
  padding: 60px 20px;
  background-color: #0a0a0a; /* dark background */
  color: white;
  max-width: 100%;
  margin: 0 auto;
}

.lead-capture h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #24a89e; /* teal accent */
}

.lead-capture p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  min-width: 200px;
}

.contact-form input,
.contact-form textarea {
  background: #fff;
  color: #000000;
  padding: 12px 14px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #24a89e;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contact-form button:hover {
  background-color: #1f9089;
}
.phone-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-wrapper select,
.phone-wrapper input {
  flex: 1;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  box-sizing: border-box;
}

.phone-wrapper select {
  max-width: 130px;
  background: #fff;
  color: #000;
  cursor: pointer;
}
.b2c-page #hero::before {
  background: rgba(0, 0, 0, 0.45);
  mix-blend-mode: normal; /* Ensures it’s just a flat overlay */
}
.b2c-page #services {
  background: var(--light-gray);
}
.b2c-page #hero::after {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.35) 60%,
    var(--light-gray) 100%
  );
}
.button.small {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  background-color: var(--accent, #1a7366);
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease;
}


.b2c-page #services {
  background: var(--light-gray);
}

.b2c-page #services .grid-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px;
  margin-top: 40px;
}

.b2c-page .service-expandable {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.b2c-page .service-toggle {
  width: 100%;
  background: none;
  border: 2px solid transparent; /* Make consistent to avoid width jumps */
  padding: 16px 20px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--black);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.b2c-page .service-content {
  display: none;
  padding: 0 20px 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

.b2c-page .service-content.open {
  display: block;
}

.b2c-page .service-expandable.open .service-toggle {
  background-color: var(--teal-light);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
  box-shadow: 0 0 0 1px var(--accent);
}

.button.small:hover {
  background-color: #155f53;
}

.b2c-page .accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .b2c-page .accordion-grid {
    grid-template-columns: 1fr;
  }
}
.b2c-page #services {
  background-color: #e7eae9;
}

.b2c-page #services {
  background: var(--light-gray);
}

.b2c-page #services .grid-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  margin-top: 40px;
}

.b2c-page .service-expandable {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.b2c-page .service-toggle {
  width: 100%;
  background: none;
  border: 2px solid transparent;
  padding: 16px 20px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--black);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.b2c-page .service-content {
  display: none;
  padding: 0 20px 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

.b2c-page .service-content.open {
  display: block;
}

.b2c-page .service-expandable.open .service-toggle {
  background-color: var(--teal-light);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
  box-shadow: 0 0 0 1px var(--accent);
}

.button.small:hover {
  background-color: #155f53;
}

/* ORIGINAL PROJECT GRID */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}


.projects-section .project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.projects-section .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects-section .project-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1rem;
  line-height: 1.4;
}

.projects-section .project-card .overlay strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

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

/* Flip Card Grid */
.b2c-page .flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.b2c-page .flip-card {
  perspective: 1000px;
  cursor: pointer;
}

.b2c-page .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.b2c-page .flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

.b2c-page .flip-front,
.b2c-page .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.b2c-page .flip-front img {
  max-width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.b2c-page .flip-front h3 {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  color: #1a7366;
}

.b2c-page .flip-back {
  transform: rotateY(180deg);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #222;
  background: #fefefe;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .b2c-page .flip-grid {
    grid-template-columns: 1fr;
  }
}
.b2c-page #services {
  background: #e9ebea; /* Soft neutral background */
  padding: 60px 20px;
  text-align: center;
}

.b2c-page #services h2 {
  font-size: 2rem;
  color: #1a7366;
  margin-bottom: 10px;
}

.b2c-page #services .subheading {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.b2c-page .flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.b2c-page .flip-card {
  width: 100%;
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}

.b2c-page .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.b2c-page .flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

.b2c-page .flip-front,
.b2c-page .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.b2c-page .flip-front {
  z-index: 2;
}

.b2c-page .flip-front img {
  max-width: 90%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 16px;
}

.b2c-page .flip-front h3 {
  font-size: 1rem;
  color: #1a7366;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.b2c-page .flip-back {
  transform: rotateY(180deg);
}

.b2c-page .flip-back p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
  margin: 0;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .b2c-page .flip-grid {
    grid-template-columns: 1fr;
  }

  .b2c-page .flip-card {
    height: 280px;
  }
}
.b2c-page #services {
  background: #e9ebea;
  padding: 60px 20px;
  text-align: center;
}

.b2c-page #services h2 {
  font-size: 2rem;
  color: #1a7366;
  margin-bottom: 10px;
}

.b2c-page #services .subheading {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.b2c-page .flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.b2c-page .flip-card {
  width: 100%;
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}

.b2c-page .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.b2c-page .flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

.b2c-page .flip-front,
.b2c-page .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #f5f9fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.b2c-page .flip-front {
  z-index: 2;
}

.b2c-page .flip-front img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 16px;
}

.b2c-page .flip-front h3 {
  font-size: 1rem;
  color: #1a7366;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.b2c-page .flip-back {
  transform: rotateY(180deg);
}

.b2c-page .flip-back p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .b2c-page .flip-card {
    height: 280px;
  }
}
.b2c-page .flip-card {
  transition: transform 0.3s ease;
}

.b2c-page .flip-card:hover {
  transform: scale(1.03);
}
.b2c-page .flip-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
#projects {
  background-color: #fef6e0;
}
.project-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-card .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: left;
  z-index: 1;
}

.project-card .overlay-text h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: #ffffff;
}

.project-card .overlay-text p {
  font-size: 0.95rem;
  margin: 0;
  color: #e8f7f3;
}
/* B2C PAGE NAV */
.b2c-nav {
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  backdrop-filter: blur(6px);
}

.b2c-nav .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.b2c-nav .nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.b2c-nav .nav-link:hover {
  color: #e6f8f5;
}

body.b2c-page {
  padding-top: 60px; /* pushes content below fixed nav */
}
/* === FOOTER === */
.site-footer {
  background: #0f0f0f;
  color: #ffffff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
  margin-top: 60px;
}

.site-footer .footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.site-footer .footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #e6f8f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #1a7366;
}
/* Fix unwanted white space between contact and footer */
#contact {
  margin-bottom: 0;
  padding-bottom: 0;
}

.site-footer {
  margin-top: 0;
  padding-top: 40px; /* keep padding but avoid margin-induced gap */
}
#contact {
  padding-bottom: 20px; /* reduce from default (was likely 60–80px) */
  margin-bottom: 0;
}

.contact-form {
  margin-bottom: 0;
}
.contact-form .form-row {
  margin-bottom: 12px;
}
#who {
  background-color: #f5f9fa;
  padding: 60px 20px;
}
/* === Dropdown Nav === */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 14px 36px;
  background: var(--black);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.b2c-nav .divider {
  color: #e6f8f5; /* subtle light tone */
  opacity: 0.6;
  margin: 0 12px;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
.main-nav .divider {
  color: #e6f8f5;
  opacity: 0.6;
  margin: 0 12px;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Divider styling */
.b2c-nav .divider {
  color: #e6f8f5;
  opacity: 0.6;
  margin: 0 12px;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 48px; /* Slightly deeper */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background: rgba(0, 0, 0, 0.72); /* Darker semi-transparency */
  backdrop-filter: blur(10px);     /* Slightly stronger blur */
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* More pronounced depth */
}

/* Optional: Divider */
.main-nav .divider {
  color: #e6f8f5;
  opacity: 0.5;
  font-size: 1.2rem;
}
/* === Unified Nav Bar Styling === */
.main-nav,
.b2c-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 18px 48px;
  background: rgba(0, 0, 0, 0.72); /* dark semi-transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
/* UNIFIED DROPDOWN MENU BEHAVIOR */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  line-height: 1;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-radius: 6px;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #0f0f0f;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}


.dropdown:hover .dropdown-content {
  display: block;
}
/* Match dropdown button with nav links */
.nav-link,
.dropbtn {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 16px 12px;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.dropdown .dropbtn {
  padding-right: 20px;
}

.dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.dropdown-content a:hover {
  background-color: #e6f8f5;  /* Soft teal background */
  color: #1a7366;             /* Teal accent text */
}
nav a:hover,
.dropbtn:hover {
  color: #1a7366; /* Darker green hover */
}


nav a:hover,
.dropbtn:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
nav a:hover,
.nav-link:hover,
.dropbtn:hover {
  color: var(--accent); /* dark green */
  border-bottom: 2px solid var(--accent);
}
nav a:hover,
.nav-link:hover,
.dropbtn:hover {
  color: var(--accent) !important;      /* force dark green */
  border-bottom: 2px solid var(--accent);
}
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.08); /* light translucent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
body {
  padding-top: 60px; /* or match the height of your nav */
}


/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Mobile Navigation - Force hide desktop nav on mobile */
@media screen and (max-width: 768px) {
  /* Hide desktop navigation completely */
  .b2c-nav,
  .main-nav {
    display: none !important;
  }
  
  /* Show mobile navigation */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 20px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Mobile menu button */
  .mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile menu overlay */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  
  .mobile-menu.open {
    display: flex;
  }
  
  .mobile-menu .nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px;
    text-align: center;
  }
  
  .mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
  }
  
  /* Adjust body padding for mobile nav */
  body {
    padding-top: 60px;
  }
  
  /* Language selector mobile positioning */
  .mobile-nav .language-selector {
    position: relative;
  }
  
  .mobile-nav select {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 0.9rem;
  }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }
  
  .hero-content .logo {
    max-width: 280px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .hero-ctas .button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Typography Mobile */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  
  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  section:not(#hero) {
    padding: 60px 20px;
  }
}

/* Client Type Cards Mobile */
@media (max-width: 768px) {
  .client-types-grid {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }
  
  .client-type-card {
    flex: none;
    max-width: 100%;
    min-width: auto;
    margin: 0 auto;
  }
  
  .client-type-card img {
    width: 120px;
  }
}

/* Services Section Mobile */
@media (max-width: 768px) {
  .icon-accordion {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  
  .icon-set {
    width: 100%;
    max-width: 300px;
  }
  
  .icon-service {
    width: 100%;
    max-width: 280px;
  }
  
  .icon-content {
    width: 100%;
    max-width: 320px;
    margin-top: 16px;
  }
  
  /* B2C Page Services Mobile */
  .b2c-page .flip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .b2c-page .flip-card {
    height: 260px;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .b2c-page .flip-front img {
    max-height: 120px;
  }
  
  .b2c-page .flip-front h3 {
    font-size: 0.95rem;
  }
  
  .b2c-page .flip-back p {
    font-size: 0.9rem;
  }
}

/* Expandable Content Mobile */
@media (max-width: 768px) {
  .service-expandable {
    margin: 16px 0;
  }
  
  .service-toggle {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .service-content {
    padding: 0 20px;
  }
  
  .service-content.open {
    padding: 14px 20px 20px;
  }
  
  #who .expandable-wrapper {
    gap: 16px;
  }
}

/* Process Steps Mobile */
@media (max-width: 768px) {
  .carousel-wrapper {
    max-width: 100%;
    margin: 0;
  }
  
  .step {
    padding: 30px 20px;
    margin: 0 10px;
  }
  
  .step-icon-img {
    width: 80px;
    margin-bottom: 16px;
  }
  
  .step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .step p {
    font-size: 0.95rem;
  }
}

/* Why Section Mobile */
@media (max-width: 768px) {
  .why-section {
    padding: 40px 20px;
  }
  
  .why-section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .why-heading-text {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .why-flex-row {
    flex-direction: column;
    gap: 24px;
  }
  
  .why-left,
  .why-right {
    flex: none;
  }
  
  .proof-points {
    font-size: 0.95rem;
  }
  
  .testimonial {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .testimonial p {
    font-size: 0.95rem;
  }
  
  .mini-stats {
    gap: 12px;
    margin-top: 20px;
  }
  
  .stat-block {
    padding: 12px 16px;
    flex: 1 1 100px;
  }
  
  .stat-block strong {
    font-size: 1.3rem;
  }
}

/* Projects Section Mobile */
@media (max-width: 768px) {
  #projects {
    padding: 40px 20px;
  }
  
  #projects h2 {
    font-size: 1.8rem;
  }
  
  .projects-intro {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }
  
  .project-card {
    height: 300px;
    margin: 0 auto;
    max-width: 350px;
  }
  
  .project-card .overlay,
  .project-card .overlay-text {
    padding: 16px;
  }
  
  .project-card .overlay h3,
  .project-card .overlay-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .project-card .overlay p,
  .project-card .overlay-text p {
    font-size: 0.9rem;
  }
}

/* Contact Section Mobile */
@media (max-width: 768px) {
  #contact {
    padding: 40px 20px 20px;
  }
  
  .lead-capture {
    padding: 40px 20px;
  }
  
  .lead-capture h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .lead-capture p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .contact-form {
    gap: 16px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .form-row input {
    min-width: auto;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .contact-form button {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .phone-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  
  .phone-wrapper select,
  .phone-wrapper input {
    max-width: none;
  }
}

/* Footer Mobile */
@media (max-width: 768px) {
  .site-footer {
    padding: 24px 20px;
    font-size: 0.9rem;
  }
  
  .site-footer .footer-links {
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }
}

/* General Mobile Improvements */
@media (max-width: 768px) {
  /* Improve touch targets */
  .button {
    min-height: 44px;
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .button.small {
    min-height: 40px;
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  /* Improve spacing */
  .expertise-visuals {
    gap: 16px;
    margin-top: 24px;
  }
  
  .expertise-icon {
    flex: 1 1 120px;
    max-width: 140px;
  }
  
  /* Improve list readability */
  li {
    font-size: 0.95rem;
    margin: 6px 0;
    line-height: 1.5;
  }
  
  /* Improve form elements */
  select {
    min-height: 44px;
    font-size: 1rem;
  }
  
  /* Improve video responsiveness */
  #hero .background-video {
    object-fit: cover;
    object-position: center;
  }
}

/* Tablet Responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .client-types-grid {
    gap: 20px;
  }
  
  .client-type-card {
    flex: 1 1 280px;
    max-width: 320px;
  }
  
  .icon-accordion {
    gap: 28px;
  }
  
  .icon-service {
    width: 220px;
  }
  
  .b2c-page .flip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .why-flex-row {
    gap: 32px;
  }
  
  section:not(#hero) {
    padding: 80px 40px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  section:not(#hero) {
    padding: 40px 16px;
  }
  
  .client-type-card {
    padding: 24px 20px;
  }
  
  .step {
    padding: 24px 16px;
  }
  
  .project-card {
    height: 280px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
  }
}


/* ===== ADDITIONAL MOBILE OPTIMIZATIONS ===== */

/* Hide desktop language selector on mobile */
@media (max-width: 768px) {
  .desktop-language {
    display: none !important;
  }
}

/* Show desktop language selector only on desktop */
@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Improve carousel arrows for mobile */
@media (max-width: 768px) {
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-arrow.left {
    left: 10px;
  }
  
  .carousel-arrow.right {
    right: 10px;
  }
  
  .carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
}

/* Improve video responsiveness */
@media (max-width: 768px) {
  #hero .background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* Fix any overflow issues */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  * {
    box-sizing: border-box;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Improve form accessibility on mobile */
@media (max-width: 768px) {
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}

/* Improve loading performance on mobile */
@media (max-width: 768px) {
  .hero-content .logo {
    will-change: transform, opacity;
  }
  
  .carousel-track {
    will-change: transform;
  }
  
  .mobile-menu {
    will-change: opacity, visibility;
  }
}

/* Add safe area padding for notched devices */
@supports (padding: max(0px)) {
  @media (max-width: 768px) {
    .mobile-nav {
      padding-left: max(20px, env(safe-area-inset-left));
      padding-right: max(20px, env(safe-area-inset-right));
      padding-top: max(12px, env(safe-area-inset-top));
    }
    
    .mobile-menu {
      padding-left: max(20px, env(safe-area-inset-left));
      padding-right: max(20px, env(safe-area-inset-right));
      padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    section:not(#hero) {
      padding-left: max(20px, env(safe-area-inset-left));
      padding-right: max(20px, env(safe-area-inset-right));
    }
  }
}

/* Improve touch targets for better accessibility */
@media (max-width: 768px) {
  .service-toggle,
  .icon-service,
  .mobile-menu-btn,
  .close-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-link {
    padding: 16px 12px;
    display: block;
  }
}

/* Fix any z-index issues */
@media (max-width: 768px) {
  .mobile-nav {
    z-index: 1000;
  }
  
  .mobile-menu {
    z-index: 1001;
  }
  
  .desktop-language {
    z-index: 999;
  }
}

/* === FLIP CARD GRID === */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* === FLIP CARD CONTAINER === */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
  height: 560px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

/* === FRONT & BACK BASE === */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 700px;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* === FRONT === */
.flip-front img {
  max-width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.flip-front h3 {
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
}

/* === BACK === */
.flip-back {
  transform: rotateY(180deg);
  overflow-y: auto;
  text-align: left;
}

.flip-back ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.flip-back ul li {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* === HEIGHT === */
.flip-card {
  height: 620px;
}

/* === BACKGROUND COLORS === */

/* Default (main index) */
body:not(.b2c-page) .flip-front {
  background-color: #f6f6f4;
}
body:not(.b2c-page) .flip-back {
  background-color: #f4f6f3;
}

/* B2C Version */
.b2c-page .flip-front {
  background-color: #f5f9fa;
}
.b2c-page .flip-back {
  background-color: #fefefe;
}

/* IMPORTANT: Remove this if you have it anywhere in your CSS! */
/*
.flip-front {
  background-color: #f6f6f4;
}
*/

@media (max-width: 768px) {
  .flip-card {
    height: auto !important;
    min-height: 260px;
  }

  .flip-front,
  .flip-back {
    height: auto !important;
    min-height: 260px;
    padding: 24px 16px !important;
  }

  .flip-front h3 {
    font-size: 1rem;
  }

  .flip-back p {
    font-size: 0.95rem;
  }
}


@media (max-width: 768px) {
  .carousel-track {
    padding: 0 16px;
    box-sizing: border-box;
  }

  .step {
    margin: 0 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .carousel-wrapper {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .desktop-language {
    top: 60px; /* or push it lower */
    right: 12px;
  }

  h2 {
    margin-top: 40px; /* avoid being hidden under the dropdown */
  }
}
@media (max-width: 768px) {
  .flip-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
  }

  .flip-card {
    width: 100%;
    max-width: 320px;
    height: auto !important;
    perspective: 1000px;
    transform: none !important;
  }

  .flip-inner {
    width: 100%;
    height: auto !important;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    transform-origin: center center !important;
  }

  .flip-card.flipped .flip-inner {
    transform: rotateY(180deg) translateX(0%) !important;
  }

  .flip-front,
  .flip-back {
    width: 100%;
    min-height: 260px;
    height: auto;
    padding: 24px 16px;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 16px;
  }

  .flip-front {
    z-index: 2;
  }

  .flip-back {
    transform: rotateY(180deg);
  }
}
@media (max-width: 768px) {
  .flip-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .flip-card {
    width: 100%;
    max-width: 100% !important;
    height: auto !important;
  }

  .flip-inner {
    width: 100%;
    height: auto !important;
    transform-origin: center center !important;
  }

  .flip-front,
  .flip-back {
    width: 100%;
    height: auto !important;
    min-height: 260px;
    padding: 24px 16px !important;
    box-sizing: border-box;
    position: absolute;
  }

  .flip-front img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .flip-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .flip-card {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    perspective: 1000px !important;
    margin: 0 !important;
  }

  .flip-inner {
    width: 100% !important;
    height: 100% !important;
    transform-style: preserve-3d !important;
    transition: transform 0.6s ease;
  }

  .flip-front,
  .flip-back {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    padding: 24px 20px !important;
    box-sizing: border-box;
    backface-visibility: hidden;
    border-radius: 16px;
  }

  .flip-front {
    z-index: 2;
  }

  .flip-back {
    transform: rotateY(180deg);
    z-index: 1;
  }

  .flip-card.flipped .flip-inner {
    transform: rotateY(180deg);
  }
}
@media (max-width: 768px) {
  .flip-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .flip-card {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    perspective: 1000px !important;
    margin: 0 !important;
  }

  .flip-inner {
    width: 100% !important;
    height: auto !important;
    transform-style: preserve-3d !important;
    transition: transform 0.6s ease;
  }

  .flip-card.flipped .flip-inner {
    transform: rotateY(180deg);
  }

  .flip-front,
  .flip-back {
    position: absolute;
    width: 100% !important;
    min-height: 300px !important;
    height: auto !important;
    backface-visibility: hidden;
    padding: 24px 16px !important;
    box-sizing: border-box;
    border-radius: 16px;
  }

  .flip-front {
    z-index: 2;
  }

  .flip-back {
    transform: rotateY(180deg);
  }
}
@media (max-width: 768px) {
  .service-content {
    display: block;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
  }

  .service-content.open {
    max-height: 1000px;
    padding: 14px 20px 20px;
  }
}

.desktop-language {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1100;
}

@media (max-width: 768px) {
  .desktop-language {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }

  .hero-ctas a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
.why-marketing-points {
  margin-top: 32px;
}

.why-point {
  margin-bottom: 40px;
}

.why-point h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.custom-bullets {
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.custom-bullets li {
  list-style: none;
  margin-bottom: 6px;
  font-size: 16px;
}
.faq-section {
  background-color: #f5f9fa;
  padding: 60px 20px;
}

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

.accordion-box {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-btn:hover {
  background: #f0f2f2;
}

.accordion-icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-panel {
  display: none;
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.6;
}

.accordion-panel ul {
  padding-left: 20px;
  margin: 10px 0;
}

.accordion-panel li {
  margin-bottom: 8px;
}
/* === MARKETING FAQ TIGHTENED === */
.faq-section {
  background-color: #f5f9fa;
  padding: 60px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  color: #145f57;
  margin-bottom: 16px;
}

.faq-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin: 0 auto 40px;
  max-width: 720px;
}

.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.accordion-box {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-btn {
  padding: 18px 24px;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  background: none;
  text-align: left;
  color: #0f0f0f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-btn:hover {
  background-color: #f0f2f2;
}

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a7366;
  transition: transform 0.3s ease;
}

.accordion-panel {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #222;
  text-align: left;
}

.accordion-panel ul {
  padding-left: 20px;
  margin: 12px 0;
}

.accordion-panel li {
  margin-bottom: 6px;
}
.audit-section {
  background-color: #0f0f0f; /* Your dark theme */
  padding: 80px 20px;
  color: #f6f6f4;
  text-align: center;
}

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

.audit-section h2 {
  font-size: 2rem;
  color: #1a7366;
  margin-bottom: 30px;
}

.audit-section .funnel-lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.audit-section p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 20px;
}


.audit-section .button {
  padding: 14px 28px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.audit-section .button.primary {
  background-color: #1a7366;
  color: white;
}

.audit-section .button.secondary {
  background-color: transparent;
  color: #1a7366;
  border: 2px solid #1a7366;
}

.audit-section .button:hover {
  opacity: 0.85;
}

.audit-note {
  font-size: 0.95rem;
  color: #bbb;
}
.audit-section form {
  max-width: 600px;
  margin: 0 auto;
}

.audit-section .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.audit-section input,
.audit-section select,
.audit-section textarea {
  flex: 1;
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  box-sizing: border-box;
}

.audit-section select {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg viewBox="0 0 140 140" width="14" height="14" xmlns="http://www.w3.org/2000/svg"><path d="M10 50 L70 110 L130 50" stroke="%231a7366" stroke-width="20" fill="none" /></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.audit-section textarea {
  resize: vertical;
  min-height: 120px;
}

.audit-section button[type="submit"] {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  background-color: #1a7366;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.audit-section button[type="submit"]:hover {
  background-color: #155d53;
}
.checkbox-group {
  text-align: left;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.checkbox-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  margin-right: 8px;
}
.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff; /* ensures label is visible */
}

.checkbox-group {
  background-color: #fff;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.checkbox-group label {
  font-size: 1rem;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox-modern {
  background: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkbox-modern label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #000;
}

.checkbox-modern input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #1a7366;
  cursor: pointer;
}
.checkbox-modern {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.checkbox-modern label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #000;
}

.checkbox-modern input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1a7366;
  margin-left: 12px;
  margin-right: 0;
}

#otherPlatformInput {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.checkbox-modern {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.checkbox-modern label {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  font-size: 1rem;
  color: #000;
  gap: 12px;
}

.checkbox-modern input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #1a7366;
  cursor: pointer;
  margin: 0;
}

#otherPlatformInput {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-left: 0;
}

.audit-options {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;           /* ✅ Add this */
  margin: 30px auto;
  text-align: center;
  gap: 20px;
}

.audit-options .button {
  display: inline-block;
  margin: 0;
}
.audit-section .container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
