:root {
  --blue: #0867b2;
  --aqua: #feffff;
  --navy: #06243c;
  --ink: #172a3a;
  --muted: #657785;
  --light: #f3f8fb;
  --white: #fff;
  --border: #dce7ee;
  --shadow: 0 18px 50px rgba(7, 43, 68, 0.11);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px, 92%);
  margin: auto;
}
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 231, 238, 0.8);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  line-height: 0.95;
  color: var(--navy);
  font-size: 13px;
}
.brand img {
  width: 120px;
  height: 49px;
  object-fit: contain;
}
.brand b {
  color: var(--aqua);
}
nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 650;
}
nav > a,
.dropdown > a {
  transition: 0.25s;
}
nav > a:hover,
.dropdown > a:hover {
  color: var(--blue);
}
.nav-cta {
  padding: 11px 19px !important;
  border-radius: 7px;
  background: var(--blue);
  color: white !important;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 28px;
  left: -15px;
  background: #fff;
  min-width: 190px;
  padding: 12px;
  border-radius: 9px;
  box-shadow: var(--shadow);
  display: none;
}
.dropdown:hover .dropdown-menu {
  display: grid;
}
.dropdown-menu a {
  padding: 8px;
  border-radius: 5px;
}
.dropdown-menu a:hover {
  background: var(--light);
  color: var(--blue);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  color: var(--navy);
}
.hero {
  min-height: 740px;
  padding-top: 82px;
  display: flex;
  align-items: center;
  position: relative;
  background: url("background\ theme.png") center/cover no-repeat;
  color: white;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 29, 49, 0.5),
    rgba(3, 44, 67, 0.48),
    rgba(0, 0, 0, 0.15)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--aqua);
  margin-bottom: 13px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.06;
  max-width: 850px;
  margin-bottom: 22px;
}
.hero p:not(.eyebrow) {
  font-size: 19px;
  max-width: 690px;
  color: #e9f7fc;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 7px;
  padding: 13px 22px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.25s;
}
.primary {
  background: var(--blue);
  color: white;
}
.primary:hover {
  background: #05558f;
  transform: translateY(-2px);
}
.ghost {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
}
.ghost:hover {
  background: #fff;
  color: var(--navy);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #d7edf6;
}
.trust-strip {
  background: var(--navy);
  color: #ecf1f3;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.section {
  padding: 95px 0;
}
.light {
  background: var(--light);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.two-col.reverse .content {
  order: -1;
}
.image-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-card img,
.solution-detail img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 15px;
}
.content h2,
.section-heading h2,
.solution-detail h2,
.quote h2,
.contact h2 {
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}
.content p,
.section-heading p,
.solution-detail p,
.quote p,
.contact p {
  color: var(--muted);
  margin-bottom: 17px;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
  font-size: 14px;
  font-weight: 650;
}
.text-link {
  color: var(--blue);
  font-weight: 800;
}
.stats {
  background: linear-gradient(100deg, var(--blue), #048ea8);
  color: white;
  padding: 35px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats strong {
  display: block;
  font-size: 34px;
  line-height: 1.1;
}
.stats span {
  font-size: 13px;
  opacity: 0.9;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(5, 40, 65, 0.05);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.service-card > div {
  padding: 23px;
}
.service-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 7px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  min-height: 67px;
}
.service-card a {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}
.solution-detail {
  scroll-margin-top: 70px;
}
.solution-detail h3 {
  margin: 25px 0 12px;
}
.process {
  background: #f7fbfd;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 10px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 25px;
}
.process b {
  color: var(--aqua);
  margin: 0 5px;
}
.pill-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 20px 0 27px;
}
.pill-row span {
  padding: 9px 13px;
  background: #e7f6fa;
  border-radius: 30px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}
.zld {
  background: var(--navy);
  color: white;
}
.zld h2 {
  color: white;
}
.zld .section-heading p:not(.eyebrow) {
  color: #c6dbe7;
}
.zld-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.zld-flow span {
  background: #0b3858;
  border: 1px solid #275b78;
  border-radius: 9px;
  padding: 17px 21px;
  font-weight: 750;
}
.zld-flow b {
  color: var(--aqua);
  font-size: 22px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.industry img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.industry h3,
.industry p {
  margin-left: 18px;
  margin-right: 18px;
}
.industry h3 {
  margin-top: 15px;
  color: var(--navy);
}
.industry p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.filters {
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
  margin: -15px 0 30px;
}
.filters button {
  border: 1px solid var(--border);
  background: #fff;
  padding: 9px 17px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  color: var(--muted);
}
.filters button.active,
.filters button:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.project img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.project div {
  padding: 19px;
}
.project small {
  color: var(--aqua);
  font-weight: 800;
}
.project h3 {
  color: var(--navy);
}
.project p {
  color: var(--muted);
  font-size: 13px;
}
.why {
  background: linear-gradient(135deg, #f1f9fb, #fff);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 12px;
  color: var(--aqua);
  font-size: 26px;
}
.why-grid h3 {
  color: var(--navy);
  font-size: 18px;
  margin: 6px 0;
}
.why-grid p {
  color: var(--muted);
  font-size: 13px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.timeline > div {
  position: relative;
  padding: 20px;
  border-top: 2px solid var(--aqua);
}
.timeline b {
  color: var(--blue);
  font-size: 25px;
}
.timeline h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 7px 0;
}
.timeline p {
  font-size: 13px;
  color: var(--muted);
}
.testimonial-slider {
  max-width: 760px;
  margin: auto;
  position: relative;
}
.testimonial {
  display: none;
  text-align: center;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.testimonial.active {
  display: block;
}
.stars {
  color: #f2ad24;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.testimonial p {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 18px;
}
.testimonial strong,
.testimonial span {
  display: block;
}
.testimonial span {
  color: var(--muted);
  font-size: 13px;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.slider-controls button {
  border: 1px solid var(--border);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.faq-wrap {
  max-width: 900px;
}
.faq button {
  width: 100%;
  padding: 19px;
  text-align: left;
  background: white;
  border: 1px solid var(--border);
  border-bottom: 0;
  color: var(--navy);
  font-weight: 750;
  cursor: pointer;
  font-size: 15px;
}
.faq button:first-child {
  border-radius: 8px 8px 0 0;
}
.faq button:last-of-type {
  border-bottom: 1px solid var(--border);
}
.answer {
  display: none;
  padding: 0 19px 18px;
  background: white;
  color: var(--muted);
  font-size: 14px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.answer.open {
  display: block;
}
.quote {
  background: linear-gradient(135deg, #eaf8fb, #f6fbfd);
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.quote-points {
  display: grid;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}
.quote form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  background: #fff;
  padding: 28px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}
label {
  font-size: 12px;
  font-weight: 750;
  color: var(--navy);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 12px;
  margin-top: 6px;
  font: inherit;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua);
}
.full {
  grid-column: 1/-1;
}
.form-message {
  grid-column: 1/-1;
  font-size: 13px !important;
  margin: 0 !important;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin: 25px 0;
  color: var(--navy);
  font-weight: 650;
}
.contact-actions {
  display: flex;
  gap: 10px;
}
.whatsapp {
  background: #16a66a;
  color: #fff;
}
.map-placeholder {
  min-height: 330px;
  border-radius: 15px;
  background: linear-gradient(135deg, #d9eef3, #edf6f8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--navy);
  border: 1px solid var(--border);
}
.map-placeholder span {
  font-size: 28px;
  font-weight: 800;
}
.map-placeholder small {
  max-width: 300px;
  text-align: center;
  color: var(--muted);
}
.footer {
  background: #041d31;
  color: #c5d6e0;
  padding: 65px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 45px;
}
.footer-brand {
  color: #fff;
  margin-bottom: 18px;
}
.footer h4 {
  color: #fff;
  margin-bottom: 14px;
}
.footer-grid p {
  font-size: 13px;
  max-width: 350px;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  font-size: 13px;
  margin: 7px 0;
  color: #b9ceda;
}
.footer-grid > div > a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #1a3a4e;
  padding: 18px 4%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.footer-bottom a {
  color: #dceaf1;
}
.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #16a66a;
  color: #fff;
  font-size: 27px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 900;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 15px 5%;
    box-shadow: var(--shadow);
    gap: 4px;
  }
  nav.open {
    display: flex;
  }
  nav > a,
  .dropdown > a {
    padding: 10px;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f7fbfd;
    display: none;
  }
  .dropdown.open .dropdown-menu {
    display: grid;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    min-height: 680px;
  }
  .cards,
  .industry-grid,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
  .two-col,
  .quote-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .reverse .content {
    order: 0;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .nav {
    height: 72px;
  }
  .hero {
    padding-top: 72px;
    min-height: 650px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero p:not(.eyebrow) {
    font-size: 16px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .section {
    padding: 70px 0;
  }
  .cards,
  .industry-grid,
  .project-grid,
  .why-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
  .image-card img,
  .solution-detail img {
    min-height: 300px;
  }
  .quote form {
    grid-template-columns: 1fr;
  }
  .full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .zld-flow {
    flex-direction: column;
  }
  .zld-flow b {
    transform: rotate(90deg);
  }
  .floating-wa {
    right: 15px;
    bottom: 15px;
  }
  .hero-badges {
    display: grid;
  }
  .contact-actions {
    flex-direction: column;
  }
}
