@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800&display=swap');

/* ─── VARIABLES ─── */
:root {
  --navy: #002147;
  --navy-dark: #001630;
  --navy-light: #002e63;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --border: #d0daea;
  --text-dark: #111827;
  --text-mid: #3b4a6b;
  --text-light: #6b7a99;
  --container: 1200px;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── WATERMARK ─── */
.hero .watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/HOMEPAGE.PNG.png');
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .hero .watermark {
    background-size: 80%;
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .hero .watermark {
    background-size: 90%;
    opacity: 0.15;
  }
}

ul {
  list-style: none;
}

/* Images always display fully — no cropping */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── UTILITY ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  border-left: 4px solid var(--navy);
  padding-left: 12px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-light);
  font-size: 16px;
  max-width: 650px;
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--navy);
  margin: 16px 0 28px;
  border-radius: 2px;
}

.divider-center {
  margin: 16px auto 28px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: 1px;
}

.logo-image {
  height: 85px;
  filter: brightness(0) invert(1); /* Makes logo white */
  transition: filter 0.3s ease;
}

.logo:hover .logo-image {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.logo-shield {
  font-size: 28px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ─── NAV DROPDOWN ─── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown-toggle i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--white);
  border-bottom-color: var(--white);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: var(--white);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 48px rgba(0, 33, 71, 0.22);
  border-top: 3px solid var(--navy);
  padding: 8px 0;
  padding-top: 18px;
  z-index: 2000;
  flex-direction: column;
  animation: dropFadeIn 0.2s ease forwards;
}

/* Invisible hover bridge — keeps menu open when moving mouse down */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

@keyframes dropFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid) !important;
  border-bottom: none !important;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--navy) !important;
}

.nav-dropdown-menu a i {
  width: 16px;
  color: var(--navy);
  font-size: 13px;
  flex-shrink: 0;
}


/* ─── MOBILE NAV SERVICES SUB-LINKS ─── */
.mobile-nav-services {
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  margin: 2px 0 4px;
}

.mobile-nav-services a {
  font-size: 13px !important;
  padding: 10px 0 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav-services a:hover {
  color: var(--white) !important;
}

.mobile-nav-services a i {
  width: 14px;
  font-size: 12px;
}


.nav-btn {
  background: var(--white);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  background: var(--off-white);
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 17px;
  align-items: center;
  justify-content: center;
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  padding: 72px 24px 40px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  transition: right 0.3s ease;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--white);
}

.mobile-nav .btn {
  width: 100%;
  text-align: center;
}

.mobile-nav .btn.btn-outline {
  margin-top: 24px;
}

.mobile-nav .btn[download] {
  margin-top: 12px;
  background: var(--navy);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
}

.mobile-overlay.open {
  display: block;
}

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 160px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  padding-left: 100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  white-space: nowrap;
  max-width: 100%;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 500;
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-badge i {
  font-size: 16px;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  max-width: 560px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-banner {
  padding: 0;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: #001630;
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── CERTS BAR ─── */
.certs-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.certs-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 50px;
  overflow: visible;
  padding: 10px 0;
}

@media (max-width: 1200px) {
  .certs-flex {
    justify-content: flex-start;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 20px;
  }

  .certs-flex::-webkit-scrollbar {
    display: none;
  }
}

.cert-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  color: #002147;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cert-pill i {
  font-size: 16px;
  color: var(--navy);
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content .divider {
  margin-left: auto;
  margin-right: auto;
}

.about-content .check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-top: 30px;
}

.about-content .section-tag {
  border-left: none;
  border-bottom: 3px solid var(--navy);
  padding-left: 0;
  padding-bottom: 4px;
}

/* About image — full image, no cropping */
.about-img {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.about-img img {
  width: 100%;
  height: auto;
  /* KEY: full image */
  display: block;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 12px 16px;
  background: var(--off-white);
  border-left: 4px solid var(--navy);
  border-radius: 4px;
}

.check-item i {
  color: var(--navy);
  font-size: 15px;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  border-top: 4px solid var(--navy);
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 47, 105, 0.1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 16px;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
}

/* ─── WHY CHOOSE ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.why-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-content .why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

/* Why image — full image */
.why-img {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.why-img img {
  width: 100%;
  height: auto;
  /* KEY: full image */
  display: block;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 4px;
  background: var(--white);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 17px;
}

.why-card h4 {
  font-size: 15px;
  margin-bottom: 3px;
  color: var(--navy);
}

.why-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* ─── LOCATIONS ─── */
.locations-section {
  background: var(--navy);
}

.locations-section .section-title {
  color: var(--white);
}

.locations-section .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.locations-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.location-chip {
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.location-chip:hover {
  background: rgba(255, 255, 255, 0.18);
}

.location-chip i {
  font-size: 12px;
}

/* ─── CERTS STRIP ─── */
.certs-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  overflow: hidden;
}

.certs-track {
  display: flex;
  gap: 60px;
  width: max-content;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.cert-item i {
  font-size: 17px;
}

/* ─── TRUSTED BRANDS ─── */
.brands-showcase {
  background: var(--white);
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-marquee-wrap {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
  margin-bottom: 20px;
}

.brands-marquee-scroll {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 20px;
  animation: scroll-left 40s linear infinite;
}

.marquee-reverse .brands-marquee-scroll {
  animation: scroll-right 40s linear infinite;
}

.brand-pill {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 20px;
  min-width: 160px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-align: center;
}

.brand-pill:hover {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.brand-pill img {
  max-width: 100px;
  max-height: 35px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}

.brand-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.brand-pill:hover img {
  filter: grayscale(0); /* Show original colors on hover */
  opacity: 1;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: 8px;
  padding: 28px 24px;
}

.testimonial-stars {
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: 14px;
  color: var(--navy);
}

.testimonial-info p {
  font-size: 12px;
  color: var(--text-light);
}

/* ─── CTA ─── */
.cta-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 140px 0 70px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 5vw, 48px);
  margin: 12px 0;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
}

.page-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

/* ─── FORM ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 5px;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  width: 100%;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

/* Gallery items — full image, no cropping */
.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  border: 2px solid var(--border);
  position: relative;
  cursor: pointer;
  background: var(--off-white);
}

.gallery-item img {
  width: 100%;
  height: auto;
  /* KEY: full image, no crop */
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 47, 105, 0.75);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 15px;
}

/* ─── CONTACT CARDS ─── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 30px 22px;
  text-align: center;
  color: var(--white);
}

.contact-card i {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.contact-card h4 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  line-height: 1.7;
}

.contact-card a:hover {
  color: var(--white);
}

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  margin-top: 1px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-desc p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col ul li a i {
  font-size: 10px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-row i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 3px;
  width: 16px;
}

.footer-contact-row p,
.footer-contact-row a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.footer-contact-row a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── SERVICE DETAIL PAGE ─── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  /* align to top */
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

/* Service detail image — full, no crop */
.service-detail-img {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.service-detail-img img {
  width: 100%;
  height: auto;
  /* KEY: full image */
  display: block;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 4px;
  border-left: 3px solid var(--navy);
}

.feature-list li i {
  color: var(--navy);
  font-size: 13px;
}

/* ─── CAREERS ─── */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--navy);
  border-radius: 6px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.job-card h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 4px;
}

.job-card p {
  font-size: 13px;
  color: var(--text-light);
}

.job-badge {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 4px;
  white-space: nowrap;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}

.benefit-card i {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 12px;
  display: block;
}

.benefit-card h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-light);
}

.apply-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 34px;
  margin-top: 30px;
}

.apply-box h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 20px;
}

.apply-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
  font-size: 15px;
}

.apply-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}





/* ─── GRID LAYOUTS ─── */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.grid-side-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 992px) {
  .hero-left {
    padding-left: 0;
    text-align: center;
  }

  .hero p {
    margin: 0 auto 40px;
  }

  .hero-btns,
  .hero-badges {
    justify-content: center;
  }

  .grid-2-col,
  .grid-side-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-content .check-list,
  .why-content .why-cards {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    margin-top: 28px;
    justify-self: center;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-img {
    display: block;
  }

  /* show full image on mobile */
  .why-img {
    display: block;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail {
    display: flex;
    flex-direction: column;
  }

  .service-detail-img {
    order: 2;
    display: block;
  }

  .service-detail > :not(.service-detail-img) {
    order: 1;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 52px 0;
  }

  .container {
    padding: 0 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
