/* =========================
   GLOBAL + RESETS
   ========================= */
:root {
  --primary: #0b2340;   /* Navy blue */
  --accent: #d62828;    /* Red */
  --text-dark: #111111;
  --text-muted: #555555;
  --bg-light: #f5f5f7;
  --card-bg: #ffffff;
  --border-soft: #e0e0e5;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden; /* prevent horizontal scroll */
}

img {
  max-width: 100%;
  display: block;
}

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

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

/* =========================
   HEADER / NAV
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 35, 64, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 0.55rem 0;*/
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  height: 65px;
  width: auto;
  display: block;
  border-radius: 0 0 10px 10px;        /* TL  TR  BR  BL */
  /* or explicitly:
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  */
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  z-index: 1500;
}

.main-nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f4f6ff;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--accent), #ff7043);
  border: 1px solid transparent;
  box-shadow: 0 6px 14px rgba(214, 40, 40, 0.4);
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.6);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.7rem;
  cursor: pointer;
}

/* =========================
   HERO SLIDER
   ========================= */
.hero-slider {
  position: relative;
  margin-top: 64px; /* header offset */
  height: 85vh;
  min-height: 520px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(3%) scale(1.02);
  transition: opacity 1s ease-in-out, transform 1.2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  transform: scale(1.05);
  transition: transform 1.5s ease-out;
}

.hero-slide.active::before {
  transform: scale(1.02);
}

/* set your slide background images */
.hero-slide.slide-1::before {
  background-image: url("slider1.jpg");
}

.hero-slide.slide-2::before {
  background-image: url("slider2.jpg");
}

.hero-slide.slide-3::before {
  background-image: url("slider3.jpg");
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 1.25rem;
}

.hero-content {
  max-width: 680px;
  background: linear-gradient(135deg, rgba(11, 35, 64, 0.85), rgba(0, 0, 0, 0.7));
  padding: 2.2rem 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  animation: float-in 1.1s ease-out both;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(214, 40, 40, 0.12);
  color: #ffdedf;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.hero-tag i {
  font-size: 1rem;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #e0e6ff;
  margin-bottom: 1.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(13, 71, 161, 0.2);
  font-size: 0.86rem;
  color: #f4f6ff;
}

.hero-badge i {
  color: #ffcc80;
  font-size: 1.05rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff7043);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(214, 40, 40, 0.75);
}

.btn-outline {
  border-color: rgba(228, 233, 255, 0.8);
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-note {
  font-size: 0.82rem;
  color: #c0cae6;
  margin-top: 0.5rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.hero-dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   SECTIONS – GENERIC
   ========================= */
section {
  padding: 4rem 0;
}

section:nth-of-type(even) {
  /*background: #ffffff;*/
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* =========================
   ABOUT
   ========================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.about-body h3 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.about-body p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(11, 35, 64, 0.25);
  background: #f2f4ff;
  font-size: 0.86rem;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.location-pill i {
  font-size: 1.1rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1rem;
}

.stat {
  flex: 1 1 120px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.tag {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid #e0e0e5;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
}

.tag i {
  color: var(--accent);
  font-size: 1rem;
}

.about-image-card {
  position: relative;
  overflow: hidden;
}

.about-image-main {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dde2f3;
}

.about-image-main img {
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform 0.8s ease-out;
}

.about-image-card:hover img {
  transform: scale(1.06);
}

/* =========================
   VISION & MISSION
   ========================= */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.vm-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--primary);
}

.vm-card:nth-child(2) {
  border-top-color: var(--accent);
}

.vm-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vm-card h3 i {
  color: var(--accent);
  font-size: 1.3rem;
}

.vm-card p,
.vm-card ul {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.vm-card ul {
  padding-left: 1.1rem;
  margin-top: 0.4rem;
}

.vm-card li {
  margin-bottom: 0.25rem;
}

/* ============================
   CAPABILITIES – DARK SECTION
   ============================ */

#capabilities {
  position: relative;
  color: #e5e7eb;
  background: #020617;
  overflow: hidden;
}

#capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("slider2.jpg"); /* reuse any hero/plant image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.22;
}

#capabilities::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(11, 35, 64, 0.85), rgba(2, 6, 23, 0.95));
}

#capabilities .container {
  position: relative;
  z-index: 1;
}

#capabilities .section-title {
  color: #ffffff;
}

#capabilities .section-subtitle {
  color: #cbd5f5;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.9rem;
  align-items: flex-start;
}

.cap-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}

.cap-item {
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.cap-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
  font-size: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.cap-item h3 {
  font-size: 1.2rem;
  color: #f9fafb;
  margin-bottom: 0.25rem;
}

.cap-item p {
  font-size: 1rem;
  color: #e5e7eb;
}

.cap-highlight {
  background: linear-gradient(135deg, #1e293b, #020617);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.cap-highlight h3 {
  margin-bottom: 0.9rem;
  font-size: 1.35rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cap-highlight p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #e5e7eb;
}

.cap-checks {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.15rem;
}

.cap-checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.cap-checks li i {
  color: #4ade80;
  font-size: 1.1rem;
}

/* ===================
   QUALITY SECTION
   =================== */

.quality-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 1.9rem;
  align-items: center;
}

.quality-row p {
  font-size: 1rem;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  font-style: italic;
  font-size: 1rem;
  color: var(--primary);
  margin-top: 0.85rem;
}

.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quality-badge {
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  border: 1px solid rgba(214, 40, 40, 0.6);
  background: rgba(254, 226, 226, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7c2d12;
  box-shadow: 0 6px 14px rgba(248, 113, 113, 0.35);
}

.quality-badge i {
  font-size: 1.1rem;
  color: #b91c1c;
}

.quality-visual {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.quality-visual h3 {
  color: var(--primary);
  font-size: 1.1rem;
}

.quality-visual p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.q-number-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.q-num {
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.q-num span {
  display: block;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}

/* ===============================
   INDUSTRIES – DARK NAVY SECTION
   =============================== */

#industries {
  background: radial-gradient(circle at top left, #0f172a, #020617);
  color: #e5e7eb;
}

#industries .section-title {
  color: #ffffff;
}

#industries .section-subtitle {
  color: #cbd5f5;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  justify-items: stretch;
}

/* 4 in first row, 2 centered in second row on desktop */
.industries-grid .industry-card:nth-child(5) {
  grid-column: 2;
}

.industries-grid .industry-card:nth-child(6) {
  grid-column: 3;
}

.industry-card {
  background: #020617;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: none;
}

.industry-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 0.4rem;
  font-size: 2rem;
}

.industry-card:nth-child(2) .industry-card-icon {
  background: #f97316;
}

.industry-card:nth-child(3) .industry-card-icon {
  background: #22c55e;
}

.industry-card:nth-child(4) .industry-card-icon {
  background: #eab308;
}

.industry-card:nth-child(5) .industry-card-icon {
  background: #6366f1;
}

.industry-card:nth-child(6) .industry-card-icon {
  background: #0ea5e9;
}

.industry-card h3 {
  font-size: 1.15rem;
  color: #ffffff;
}

.industry-card p {
  font-size: 1rem;
  color: #e5e7eb;
}

/* =========================
   WHY WORK WITH US SECTION
   ========================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid rgba(214, 40, 40, 0.7);
  position: relative;
  overflow: hidden;
}

.why-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.why-card h3 i {
  color: var(--accent);
  font-size: 1.3rem;
}

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

.why-chip {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(11, 35, 64, 0.45);
}

/* ==========================
   CTA SECTION – QUOTE + FORM
   ========================== */

.cta-section {
  padding: 3.5rem 0;
  background: radial-gradient(circle at top left, #0f172a, #020617);
  color: #ffffff;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.cta-heading {
  font-size: 2.1rem;
  margin-bottom: 0.6rem;
}

.cta-tagline {
  font-size: 1rem;
  color: #cbd5f5;
  margin-bottom: 1.25rem;
}

.cta-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cta-pill {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  background: rgba(15, 23, 42, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.cta-pill i {
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(226, 232, 240, 0.8);
  color: #e2e8f0;
}

.btn-ghost-light:hover {
  background: rgba(15, 23, 42, 0.6);
}

.cta-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: var(--primary);
}

.cta-form-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-form-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.form-grid-full {
  grid-column: span 2;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field label {
  font-size: 0.78rem;
  color: #64748b;
}

.field input,
.field textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 0.5rem 0.65rem;
  font-size: 0.9rem;
  background: #f9fafb;
  color: #111827;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9ca3af;
}

.field input:focus,
.field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.65);
  background: #ffffff;
}

.cta-mini {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.55rem;
}

/* ====================
   CONTACT SECTION
   ==================== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.contact-list {
  list-style: none;
  margin-top: 0.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.contact-list li i {
  color: var(--accent);
  width: 24px;
  text-align: center;
  font-size: 1.1rem;
}

.contact-highlight {
  margin-top: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  background: #fef3f2;
  font-size: 0.86rem;
  color: #b42318;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.contact-map {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.map-placeholder {
  border-radius: 14px;
  height: auto;
  background: linear-gradient(135deg, #e0f2fe, #eff6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  border: 1px dashed #9ca3af;
}

/* =========
   FOOTER
   ========= */

.site-footer {
  padding: 1.5rem 0;
  background: #020617;
  color: #9ca3af;
  font-size: 0.8rem;
}

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

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: #e5e7eb;
}

/* ======================
   SCROLL ANIMATIONS
   ====================== */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   RESPONSIVE TWEAKS
   (FOR SECTIONS ABOVE)
   ====================== */

/* Tablet and below */
@media (max-width: 992px) {
  body {
    font-size: 15px;
  }

  .about-grid,
  .cap-grid,
  .quality-row,
  .cta-inner,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .hero-slider {
    height: auto;
    min-height: unset;
    padding: 3.5rem 0 3.2rem;
  }

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

  /* Reset special centering of last 2 industry cards on mobile/tablet */
  .industries-grid .industry-card:nth-child(5),
  .industries-grid .industry-card:nth-child(6) {
    grid-column: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
.logo-image {height:55px; margin-bottom: 10px;}
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(11, 35, 64, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.25rem 1rem;
    width: 100%;
    max-width: 260px;
    transform: translateY(-6px);
    display: none;
  }

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

  .nav-toggle {
    display: block;
	margin-right: 10px;
  }

  .hero-content {
    padding: 1.7rem 1.4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  section {
    padding: 3rem 0;
  }

  .vm-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-section {
    padding: 3rem 0;
  }

  .hero-badges {
    gap: 0.5rem;
  }

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

/* Extra small phones */
@media (max-width: 480px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    padding: 1.4rem 1.15rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid-full {
    grid-column: auto;
  }

  .hero-slider {
    min-height: 650px;
    padding: 3.8rem 0 2.8rem;
  }

  .industries-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}