* {
  box-sizing: border-box;
}

:root {
  --navy: #102a43;
  --blue: #176b87;
  --teal: #31a6a1;
  --mint: #e9f7f4;
  --cream: #f7f7f2;
  --white: #ffffff;
  --text: #243b53;
  --muted: #627d98;
  --border: #d9e2ec;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.topbar {
  background: var(--navy);
  color: #d9e2ec;
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
}

.top-links {
  display: flex;
  gap: 25px;
}

.navbar {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px 13px 13px 3px;
  background: var(--teal);
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  color: var(--navy);
}

.nav-links > a:not(.button):hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 2px;
  margin: 5px;
  background: var(--navy);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.button:hover {
  transform: translateY(-2px);
  background: #278d89;
}

.button-small {
  min-height: 44px;
  padding: 0 19px;
}

.button-outline {
  border: 2px solid var(--teal);
  background: transparent;
  color: var(--navy);
}

.button-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.button-dark {
  background: var(--navy);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #a9e3db;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 115px;
  background:
    radial-gradient(circle at 90% 20%, rgba(49, 166, 161, 0.18), transparent 28%),
    linear-gradient(115deg, #f8fbfb, #edf7f5);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 65px solid rgba(23, 107, 135, 0.06);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-copy > p {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.text-link {
  font-weight: 700;
  color: var(--navy);
}

.text-link span,
.service-card a span {
  color: var(--teal);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  border-radius: 220px 30px 220px 30px;
  background:
    linear-gradient(145deg, rgba(16, 42, 67, 0.2), rgba(49, 166, 161, 0.45)),
    linear-gradient(45deg, #176b87, #98ded4);
  box-shadow: var(--shadow);
}

.hero-visual::before,
.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: inherit;
}

.visual-card {
  position: absolute;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.visual-main {
  left: -35px;
  bottom: 75px;
  width: 280px;
}

.visual-main h2 {
  margin: 15px 0 8px;
  font-size: 1.45rem;
}

.visual-main p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pulse-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-size: 1.8rem;
  font-weight: 700;
}

.visual-stat {
  right: -15px;
  top: 75px;
  display: flex;
  flex-direction: column;
}

.visual-stat strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
}

.visual-stat span,
.visual-badge {
  color: var(--muted);
  font-size: 0.82rem;
}

.visual-badge {
  right: 55px;
  bottom: 38px;
  padding: 12px 18px;
  color: var(--navy);
  font-weight: 700;
}

.trust-strip {
  background: var(--navy);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

.trust-grid span {
  color: #bcccdc;
  font-size: 0.86rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.section-heading > div {
  max-width: 620px;
}

.section-heading > p {
  max-width: 390px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 325px;
  padding: 34px;
  border: 1px solid var(--border);
  background: white;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.service-number {
  position: absolute;
  right: 25px;
  top: 24px;
  color: #bcccdc;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 700;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  position: absolute;
  left: 34px;
  bottom: 28px;
  font-weight: 700;
}

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.about-visual {
  position: relative;
}

.image-placeholder {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: 8px 130px 8px 8px;
  background:
    linear-gradient(rgba(16, 42, 67, 0.3), rgba(16, 42, 67, 0.6)),
    linear-gradient(135deg, #8bd0c7, #176b87);
}

.image-placeholder span {
  position: absolute;
  left: 45px;
  bottom: 40px;
  color: rgba(255,255,255,0.85);
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.experience-card {
  position: absolute;
  right: -35px;
  bottom: -30px;
  display: flex;
  flex-direction: column;
  width: 240px;
  padding: 28px;
  background: var(--teal);
  color: white;
  box-shadow: var(--shadow);
}

.experience-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
}

.experience-card span {
  margin-top: 5px;
  font-size: 0.86rem;
}

.about-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 30px 0 38px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.process-section {
  background: var(--navy);
}

.process-section h2,
.process-section h3 {
  color: white;
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.process-step {
  position: relative;
  padding: 35px;
  border-top: 1px solid rgba(255,255,255,0.22);
}

.process-step > span {
  display: inline-grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-bottom: 35px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 800;
}

.process-step p {
  color: #bcccdc;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-intro p {
  color: var(--muted);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.accordion-button span {
  color: var(--teal);
  font-size: 1.4rem;
  transition: transform 0.2s;
}

.accordion-button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 0 25px 25px 0;
}

.contact-section {
  padding: 100px 0;
  background: var(--blue);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-copy h2 {
  color: white;
}

.contact-copy p {
  color: #d9e2ec;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
  font-weight: 700;
}

.contact-form {
  padding: 38px;
  background: white;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 3px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(49, 166, 161, 0.15);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

.form-message {
  margin: 16px 0 0;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer {
  padding: 75px 0 25px;
  background: #0b1f33;
  color: #bcccdc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 50px;
}

.footer-logo {
  margin-bottom: 20px;
  color: white;
}

.footer h3 {
  color: white;
  font-size: 1rem;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid p {
  max-width: 340px;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    z-index: 10;
    top: 128px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin: 10px 35px 0;
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .about-grid {
    gap: 75px;
  }

  .faq-grid,
  .contact-grid {
    gap: 50px;
  }

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

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner > span,
  .top-links a:last-child {
    display: none;
  }

  .navbar {
    min-height: 74px;
  }

  .nav-links {
    top: 110px;
  }

  .hero {
    padding: 70px 0 90px;
  }

  .hero-grid {
    gap: 55px;
  }

  .hero-visual {
    min-height: 390px;
    margin: 0 15px;
  }

  .visual-main {
    left: -15px;
    width: 235px;
  }

  .visual-stat {
    right: -12px;
  }

  .trust-grid,
  .service-grid,
  .process-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .service-card {
    min-height: 300px;
  }

  .image-placeholder {
    min-height: 420px;
  }

  .experience-card {
    right: 12px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


.company-logo{
  height:72px;
  width:auto;
}
.footer-logo .company-logo{
  height:60px;
}

/* Work Welfare branding */
:root{--navy:#070b5f;--blue:#121878;--teal:#23c04a;--mint:#eefbe9;--cream:#f7f9fb;--white:#fff;--text:#1c2740;--muted:#61708b;--border:#dfe5ec;--shadow:0 18px 45px rgba(7,11,95,.13)}
.topbar,.process-section{background:#030638}.site-header{box-shadow:0 4px 18px rgba(7,11,95,.08)}.navbar{min-height:104px}
.brand-logo{display:inline-flex;align-items:center;gap:14px}.company-logo{width:72px;height:72px;object-fit:cover;border-radius:50%;border:3px solid #23c04a;background:#070b5f;box-shadow:0 8px 20px rgba(7,11,95,.14)}
.brand-text{display:flex;flex-direction:column;line-height:1.05}.brand-text strong{color:#070b5f;font-family:"Manrope",sans-serif;font-size:1.15rem}.brand-text small{margin-top:6px;color:#138c32;font-size:.7rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.button{background:#23c04a;color:#030638;font-weight:800;box-shadow:0 10px 22px rgba(35,192,74,.22)}.button:hover{background:#a8e84f}.button-dark{background:#070b5f;color:#fff}.button-dark:hover{background:#030638}
.hero{background:radial-gradient(circle at 92% 18%,rgba(168,232,79,.28),transparent 26%),linear-gradient(115deg,#f9fbff 0%,#f4fbef 100%)}
.hero-visual{background:linear-gradient(145deg,rgba(7,11,95,.08),rgba(7,11,95,.38)),linear-gradient(45deg,#070b5f,#23c04a)}
.trust-strip,.contact-section{background:#070b5f}.trust-grid strong,.eyebrow-light{color:#a8e84f}.service-card{border-top:5px solid #23c04a}.service-card:hover{border-color:#23c04a}.service-icon,.pulse-icon{background:#eefbe9;color:#138c32}.experience-card{background:#23c04a;color:#030638}.process-step{border-top:2px solid rgba(168,232,79,.55)}.process-step>span{background:#23c04a;color:#030638}.contact-section{border-top:8px solid #23c04a}.contact-form{border-top:7px solid #23c04a}.footer{background:#030638;border-top:5px solid #23c04a}.footer-logo .brand-text strong{color:#fff}.footer-logo .brand-text small{color:#a8e84f}.footer-logo .company-logo{width:64px;height:64px}
@media(max-width:650px){.company-logo{width:58px;height:58px}.brand-text strong{font-size:1rem}.brand-text small{font-size:.6rem}}


/* Adjustments for the expanded Work Welfare service list */
.service-card h3 {
  font-size: 1.16rem;
  line-height: 1.3;
  padding-right: 20px;
}

.service-card {
  min-height: 365px;
}

@media (max-width: 650px) {
  .service-card {
    min-height: 350px;
  }
}


/* -------- Work Welfare final content additions -------- */

.hero-photo-wrap {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 26px 120px 26px 26px;
  background: var(--navy);
  box-shadow: var(--shadow);
  border: 6px solid rgba(35, 192, 74, 0.18);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center;
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 6, 56, 0.7) 0%,
    rgba(3, 6, 56, 0.08) 48%,
    transparent 75%
  );
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
  padding: 20px 22px;
  border-left: 5px solid #23c04a;
  background: rgba(3, 6, 56, 0.88);
  color: white;
  backdrop-filter: blur(4px);
}

.hero-photo-badge strong,
.hero-photo-badge span {
  display: block;
}

.hero-photo-badge strong {
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
}

.hero-photo-badge span {
  color: #e4e7ff;
  font-size: 0.88rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 24px;
  color: var(--navy);
  font-size: 0.92rem;
}

.hero-contact span {
  padding: 8px 12px;
  border-left: 3px solid #23c04a;
  background: rgba(255,255,255,0.72);
}

.section-lead {
  color: var(--muted);
  font-weight: 700;
}

.values-section {
  background:
    radial-gradient(circle at 10% 5%, rgba(35,192,74,0.10), transparent 25%),
    #f7f9fb;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  position: relative;
  min-height: 320px;
  padding: 34px 28px 30px;
  background: white;
  border-top: 5px solid #23c04a;
  box-shadow: 0 10px 30px rgba(7, 11, 95, 0.07);
}

.value-letter {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #070b5f;
  color: #a8e84f;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.value-card p {
  color: var(--muted);
}

.values-tagline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding: 24px;
  background: #070b5f;
  color: white;
  text-align: center;
  font-size: 1.12rem;
}

.values-tagline strong {
  color: #a8e84f;
}

.testimonials-section {
  background: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  border: 1px solid var(--border);
  border-bottom: 5px solid #23c04a;
  background: #fff;
}

.quote-mark {
  height: 46px;
  color: #23c04a;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-card > p {
  color: var(--muted);
  font-size: 1rem;
}

.testimonial-person {
  position: absolute;
  left: 34px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
}

.testimonial-person strong {
  color: var(--navy);
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.82rem;
}

.service-card {
  min-height: 385px;
}

.service-card p {
  padding-bottom: 38px;
}

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

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

  .testimonial-card {
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  .hero-photo-wrap {
    min-height: 460px;
  }

  .hero-photo {
    height: 460px;
  }
}

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

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-photo-wrap {
    min-height: 430px;
    border-radius: 18px 70px 18px 18px;
  }

  .hero-photo {
    height: 430px;
  }

  .hero-photo-badge {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .service-card {
    min-height: 360px;
  }
}


/* Layout update: enquiry near landing page + real About image */
.hero + .contact-section {
  padding: 62px 0;
  border-top: 0;
  border-bottom: 8px solid #23c04a;
}

.hero + .contact-section .contact-grid {
  align-items: center;
}

.hero + .contact-section .contact-form {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.about-photo-wrap {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: 8px 130px 8px 8px;
  background: #070b5f;
  box-shadow: var(--shadow);
}

.about-photo {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}

.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 6, 56, 0.55), transparent 48%);
  pointer-events: none;
}

.about-photo-label {
  position: absolute;
  z-index: 2;
  left: 45px;
  bottom: 40px;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

@media (max-width: 650px) {
  .hero + .contact-section {
    padding: 52px 0;
  }

  .about-photo-wrap {
    min-height: 420px;
  }

  .about-photo {
    height: 420px;
  }

  .about-photo-label {
    left: 24px;
    bottom: 24px;
  }
}


.form-note {
  margin: -4px 0 18px;
  padding: 12px 14px;
  border-left: 4px solid var(--teal);
  background: var(--mint);
  color: var(--navy);
  font-size: 0.88rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}


/* Homepage quick links */
.quick-links-section {
  padding: 28px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.quick-link-card {
  position: relative;
  min-height: 125px;
  padding: 20px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--teal);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 12px 26px rgba(7, 11, 95, 0.10);
}

.quick-link-card strong,
.quick-link-card > span {
  display: block;
}

.quick-link-card strong {
  margin: 18px 0 6px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
}

.quick-link-card > span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.quick-link-number {
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .quick-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .quick-link-card {
    min-height: auto;
  }
}

.privacy-link{color:var(--teal);text-decoration:underline;font-weight:700}
.privacy-nav{display:flex;gap:28px;font-weight:700;color:var(--navy)}
.privacy-nav a:hover{color:var(--teal)}
.privacy-hero{padding:80px 0;background:linear-gradient(120deg,#f8fbff,#f3faef)}
.privacy-hero .container{max-width:900px}
.privacy-hero p{max-width:760px;color:var(--muted)}
.privacy-content-section{padding:80px 0 110px}
.privacy-layout{display:grid;grid-template-columns:250px minmax(0,1fr);gap:65px;align-items:start}
.privacy-toc{position:sticky;top:25px;display:flex;flex-direction:column;gap:9px;padding:24px;border-top:5px solid var(--teal);background:var(--cream)}
.privacy-toc strong{margin-bottom:8px;color:var(--navy)}
.privacy-toc a{color:var(--muted);font-size:.84rem}
.privacy-toc a:hover{color:var(--teal)}
.privacy-copy{max-width:820px}
.privacy-copy section{scroll-margin-top:25px;margin-bottom:58px}
.privacy-copy h2{margin-bottom:18px;padding-bottom:12px;border-bottom:2px solid var(--mint);font-size:clamp(1.65rem,3vw,2.2rem)}
.privacy-copy h3{margin-top:28px;margin-bottom:12px}
.privacy-copy ul{padding-left:22px;margin:16px 0 24px}
.privacy-copy li{margin-bottom:8px}
.privacy-copy a{color:var(--blue);text-decoration:underline}
.privacy-details{margin:28px 0;padding:22px 24px;border-left:5px solid var(--teal);background:var(--cream)}
.privacy-details p{margin-bottom:7px}
.privacy-contact-box{margin-top:70px;padding:36px;background:var(--navy);color:white}
.privacy-contact-box h2{color:white;border:0}
.privacy-contact-box p{color:#d9e2ec}
.privacy-contact-box a.button{color:var(--navy-dark);text-decoration:none}
@media(max-width:900px){
.privacy-layout{grid-template-columns:1fr;gap:40px}
.privacy-toc{position:static;display:grid;grid-template-columns:repeat(2,1fr)}
.privacy-toc strong{grid-column:1/-1}
.privacy-nav{display:none}
}
@media(max-width:650px){
.privacy-hero{padding:60px 0}
.privacy-content-section{padding:55px 0 80px}
.privacy-toc{grid-template-columns:1fr}
.privacy-contact-box{padding:26px}
}

.professional-affiliations h3{margin-bottom:14px;color:var(--navy)}
.professional-affiliations p{margin-bottom:14px}
.professional-affiliations strong{color:var(--navy)}


/* Proactive-style testimonial presentation */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background: #f7f8f8;
  padding: 90px 0 95px;
}

.testimonial-container {
  max-width: 1040px;
  text-align: center;
}

.testimonial-heading {
  margin-bottom: 42px;
}

.testimonial-heading .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.testimonial-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 28px;
}

.testimonial-slides {
  position: relative;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  display: none;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  animation: testimonialFade .45s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote-mark {
  margin-bottom: 8px;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: .7;
}

.testimonial-slide blockquote {
  margin: 0 auto 28px;
  padding: 0;
  border: 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 600;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: var(--navy);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.testimonial-author span {
  color: var(--muted);
  font-size: .95rem;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 44, 73, .18);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.testimonial-arrow:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c7ced5;
  cursor: pointer;
}

.testimonial-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--teal);
}

.testimonial-sample-note {
  max-width: 690px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: .78rem;
  font-style: italic;
}

@keyframes testimonialFade {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 700px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonial-slider {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .testimonial-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }

  .testimonial-slides {
    min-height: 340px;
  }

  .testimonial-slide blockquote {
    font-size: 1.05rem;
    line-height: 1.6;
  }
}

/* Force testimonials to display strictly one at a time */
#testimonials .testimonial-slides {
  display: block !important;
  position: relative !important;
  min-height: 300px;
}

#testimonials .testimonial-slide {
  display: none !important;
  width: 100% !important;
  max-width: 850px !important;
  margin: 0 auto !important;
  opacity: 0;
}

#testimonials .testimonial-slide.active {
  display: block !important;
  opacity: 1;
}

#testimonials .testimonial-slider {
  overflow: hidden;
}

@media (max-width: 700px) {
  #testimonials .testimonial-slides {
    min-height: 390px;
  }
}

/* Work With Us */
.work-with-us-section {
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.work-with-us-inner {
  max-width: 800px;
}

.work-with-us-section .eyebrow {
  color: var(--mint);
}

.work-with-us-section h2,
.work-with-us-section h3 {
  color: #fff;
}

.work-with-us-section h2 {
  margin-bottom: 22px;
}

.work-with-us-section h3 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.work-with-us-section p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #e5edf5;
}

.work-with-us-section p a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.work-with-us-section .button {
  margin-top: 18px;
}
