:root {
  --navy: #011d51;
  --navy-deep: #01113a;
  --accent: #ff6b1a;
  --accent-dark: #d95500;
  --bg-soft: #f4f6f8;
  --text-muted: #5e6b7a;
}

/* ── BASE & RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 0.98rem;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ── SECTION BACKGROUNDS ── */
section:not(.hero):not(#founder):not(#deliver):not(#international):not(#contact):not(#values) { background: #ffffff; }
#about, #vision, #why, #solutions, #industries, #technical, #equipment, #clients { background: #ffffff; }
.hero, #founder, #deliver, #international, #values { background: #011d51; }
#deliver { background: #011d51; }
#international { background: #01113a; }
#values { background: #011d51; }
#founder { background: #011d51; }
#contact { background: #ffffff; padding: 0; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: #ffffff;
  border-bottom: 2px solid #e8edf2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo-icon { display: flex; align-items: center; height: 48px; }
.nav-logo-icon img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text { display: none; }
.nav-links { display: flex; gap: 0.1rem; align-items: center; }
.nav-links a {
  color: #011d51;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  font-family: 'Poppins', sans-serif;
}
.nav-links a:hover { color: var(--accent-dark); border-bottom-color: var(--accent); background: transparent; }
.nav-cta {
  background: var(--accent) !important; color: #ffffff !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 30px !important; font-weight: 700 !important;
  border-bottom: none !important; margin-left: 0.3rem;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; border-bottom: none !important; }

/* ── SERVICES DROPDOWN ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  color: #011d51; text-decoration: none; padding: 0.45rem 0.9rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; transition: all 0.2s;
  border-bottom: 3px solid transparent; cursor: pointer;
  display: flex; align-items: center; gap: 4px; user-select: none;
  font-family: 'Poppins', sans-serif;
}
.nav-dropdown-trigger:hover, .nav-dropdown.open .nav-dropdown-trigger { border-bottom-color: #011d51; }
.nav-arrow { font-size: 0.6rem; transition: transform 0.25s; display: inline-block; }
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 220px; background: #ffffff;
  border: 1px solid #e8edf2; border-top: 3px solid #011d51;
  border-radius: 0 0 8px 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 1000;
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-item {
  display: block !important; padding: 0.6rem 1.25rem !important;
  color: #2a3a4a !important; font-size: 0.82rem !important;
  font-weight: 600 !important; letter-spacing: 0.02em !important;
  text-transform: none !important; border-bottom: 1px solid #f0f2f5 !important;
  transition: background 0.15s, color 0.15s !important;
  border-left: none !important; text-decoration: none !important;
  font-family: 'Poppins', sans-serif !important;
}
.nav-dropdown-item:last-child { border-bottom: none !important; }
.nav-dropdown-item:hover { background: #f5f7fa !important; color: #011d51 !important; padding-left: 1.5rem !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: #011d51; margin: 5px 0; border-radius: 2px; }

@media(max-width:1000px) {
  .nav-links a, .nav-dropdown-trigger { font-size: 0.78rem; padding: 0.4rem 0.6rem; }
}
@media(max-width:850px) {
  .nav-inner { height: 64px; padding: 0 1rem; }
  .nav-logo-icon { height: 42px; }
  .nav-logo-icon img { height: 42px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; padding: 0.8rem 1.5rem 1.2rem;
    gap: 0.1rem; border-bottom: 2px solid #e8edf2;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    z-index: 100;
  }
  .nav-links.open a { border-bottom: 1px solid #f0f2f5 !important; border-radius: 4px; padding: 0.5rem 0.8rem; font-size: 0.85rem; }
  .nav-links.open .nav-cta { border-radius: 30px !important; border-bottom: none !important; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static; opacity: 1; pointer-events: auto;
    transform: none; box-shadow: none; border: none;
    border-left: 3px solid #011d51; margin-left: 1rem;
    border-radius: 0; border-top: none; display: none;
    background: transparent;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-item { padding: 0.4rem 0.8rem !important; font-size: 0.8rem !important; border-bottom: none !important; }
  .hamburger { display: block; }
}

/* ── SLIDER HERO ── */
.hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 600px;
  overflow: hidden; margin-top: 0;
  display: block;
}
.slider-container { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center;
  padding-bottom: 78px;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-1 { background: url('./pic1.jpeg') center/cover no-repeat; }
.slide-2 { background: url('./pic2.jpeg') center/cover no-repeat; }
.slide-3 { background: url('./pic3.jpeg') center/cover no-repeat; }
.slide-4 { background: url('./pic6.jpeg') center/cover no-repeat; }
.slide-5 { background: url('./pic5.jpeg') center/cover no-repeat; }
.slide::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 55px 55px; z-index: 0;
}
.slide-deco {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  z-index: 1; display: flex; align-items: center; justify-content: center;
  opacity: 0.06; font-size: 22rem; pointer-events: none;
}
.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(1,13,36,0.82) 0%, rgba(1,29,81,0.55) 55%, rgba(1,18,50,0.3) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  padding-top: 82px;
  padding-bottom: 30px;
  padding-left: clamp(2rem, 5vw, 5rem);
  max-width: 700px;
}

.slide-eyebrow {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  position: relative;
  z-index: 3;
  font-family: 'Poppins', sans-serif;
}

.slide-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.3rem, 4.4vw, 3.7rem);
  font-weight: 800; color: white; line-height: 1.08;
  margin-bottom: 1rem;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
  position: relative; z-index: 3;
  letter-spacing: -0.02em;
}
.hero-main-headline {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  max-width: 860px;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.hero-main-headline .accent { color: #ffffff; }
.slide-title .accent { border-bottom: none; }
.slide-desc {
  font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255,255,255,0.92);
  line-height: 1.7; margin-bottom: 1.5rem; max-width: 760px;
  font-weight: 500;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
  position: relative; z-index: 3;
}
.slide-desc strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.slide-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(15px);
  transition: opacity 0.65s ease 0.6s, transform 0.65s ease 0.6s;
  position: relative; z-index: 3;
}

.slide.active .slide-eyebrow {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-actions {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.btn-primary {
  background: var(--accent); color: #ffffff;
  padding: 0.9rem 1.8rem; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  letter-spacing: 0.02em; transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-secondary {
  border: 2px solid rgba(255,255,255,0.45); color: white;
  padding: 0.8rem 1.8rem; border-radius: 30px;
  font-weight: 600; font-size: 0.85rem; text-decoration: none;
  letter-spacing: 0.03em; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.07); }
.hero-cta {
  background: var(--accent);
  box-shadow: 0 10px 26px rgba(255,107,26,0.28);
}
.hero-cta:hover {
  background: var(--accent-dark);
}

.slider-arrow { display: none; }

.slider-dots {
  position: absolute; bottom: 96px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none;
  cursor: pointer; transition: all 0.35s; padding: 0;
}
.dot.active { background: #ffffff; width: 32px; border-radius: 5px; }

.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(1,13,36,0.93);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  height: 76px;
}
.hero-stats-inner { display: flex; align-items: center; gap: 0; }
.stat-item { padding: 0 2.5rem; text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem; font-weight: 900; color: #fff; line-height: 1;
}
.stat-label {
  font-size: 0.65rem; color: rgba(255,255,255,0.48); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px;
  font-family: 'Poppins', sans-serif;
}
.stat-divider { width: 1px; height: 35px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

@media(max-width:700px) {
  .slide-content { padding-left: 1.5rem; padding-right: 1.5rem; padding-top: 72px; }
  .hero-stats-bar { height: auto; padding: 0.75rem 0; }
  .hero-stats-inner { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .stat-divider { display: none; }
  .stat-item { padding: 0.4rem 1rem; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.55rem; }
  .slide-eyebrow { font-size: 0.55rem; padding: 4px 10px; white-space: normal; }
  .slide-desc { font-size: 0.9rem; }
  .btn-primary, .btn-secondary { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
  .slider-dots { bottom: 80px; }
}

/* ── SECTION COMMON ── */
section:not(.hero) { padding: 2.5rem 0; }
.section { padding: 2.5rem 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-heading-center { text-align: center; margin-bottom: 1.8rem; }
.section-heading-center .section-lead { margin: 0 auto; text-align: center; max-width: 720px; }
.badges-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: #4a5c6e; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}
.section-eyebrow::before { content: none; }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700;
  color: #011d51; line-height: 1.2; margin-bottom: 0.6rem;
}
.section-title.light { color: white; }
.section-lead { font-size: 0.98rem; color: #4a5c6e; line-height: 1.7; max-width: 640px; margin: 0; }
.section-lead.light { color: rgba(255,255,255,0.65); }
.divider { display: none; }
.divider.light { display: none; }

@media(max-width:600px) {
  section:not(.hero) { padding: 2rem 0; }
  .section { padding: 2rem 0; }
  .section-inner { padding: 0 1rem; }
}

/* ── ABOUT ── */
#about { background: #ffffff; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
@media(max-width:900px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-copy { padding: 0.5rem 0; }
.about-highlights { display: grid; gap: 1rem; margin-top: 1.6rem; }
.about-highlight {
  display: flex; gap: 0.95rem; align-items: flex-start;
  padding: 1rem 1.1rem; background: var(--bg-soft);
  border: 1px solid #e8edf2; border-radius: 12px;
}
.about-highlight-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ff7f3d);
  color: #ffffff; display: grid; place-items: center; font-size: 1.15rem;
}
.about-highlight strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.25rem; }
.about-highlight p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.about-panel { display: flex; align-items: center; justify-content: center; }
.about-panel-card {
  width: 100%; padding: 2rem; min-height: 280px;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef2f6 100%);
  border: 1px solid #e6ebf0; border-radius: 22px;
  box-shadow: 0 12px 30px rgba(1, 29, 81, 0.06);
}
.about-panel-icon {
  width: 68px; height: 68px; border-radius: 50%; margin-bottom: 1rem;
  background: var(--navy); color: #ffffff; display: grid; place-items: center;
  font-size: 1.6rem;
}
.about-panel-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 0.6rem; }
.about-panel-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.badge {
  background: rgba(1,29,81,0.08); border: 1px solid rgba(1,29,81,0.15);
  color: var(--navy); font-size: 0.75rem; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; letter-spacing: 0.03em;
  font-family: 'Poppins', sans-serif;
}
.about-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 1rem 1.25rem;
  background: #ffffff; border-radius: 8px;
  border-left: 3px solid var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.about-list li::before { content: '✦'; color: var(--navy); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }
.about-list li span { font-size: 0.88rem; color: #4a5c6e; line-height: 1.6; }

/* ── FOUNDER ── */
#founder { background: #011d51; }
.founder-grid { display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center; }
@media(max-width:900px) { .founder-grid { grid-template-columns: 1fr; gap: 2rem; } }
.founder-photo {
  width: 300px; height: 300px;
  background: linear-gradient(145deg, #01113a, #010e28);
  border-radius: 50%; overflow: hidden;
  border: 4px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 18px 42px rgba(0,0,0,0.24);
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  display: block;
}
@media(max-width:900px) { .founder-photo { width: 260px; height: 260px; margin: 0 auto; } }
.founder-quote {
  position: relative; padding: 2rem 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.founder-quote::before {
  content: '\201C'; position: absolute; top: -20px; left: 20px;
  font-family: 'Poppins', sans-serif; font-size: 5rem;
  color: #ffffff; opacity: 0.15; line-height: 1;
}
.founder-quote p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.85; font-style: italic; margin-bottom: 1.2rem; }
.founder-name { font-family: 'Poppins', sans-serif; font-size: 1.1rem; color: white; font-weight: 700; }
.founder-title { color: #8a99aa; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* Slightly increase eyebrow in founder area for better readability */
#founder .section-eyebrow {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  width: 100%;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Improve emoji / symbol rendering and visibility across sections */
.about-highlight-icon,
.about-panel-icon,
.why-icon,
.value-icon,
.deliver-icon,
.ind-icon,
.slide-deco,
.sol-icon-wrap,
.tech-icon,
.equip-photo-badge,
.contact-detail-icon,
.client-chip-dot,
.nav-logo-icon img {
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Poppins', sans-serif;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; vertical-align: middle; text-rendering: optimizeLegibility;
}

/* Add subtle text-shadow for small light-on-light contexts to improve contrast */
.about-highlight-icon, .deliver-icon, .ind-icon, .why-icon, .value-icon { text-shadow: 0 1px 0 rgba(0,0,0,0.12); }

/* Ensure decorative large symbols in hero are slightly more visible */
.slide-deco { opacity: 0.08; }

/* ── VISION MISSION ── */
#vision { background: #ffffff; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
@media(max-width:700px) { .vm-grid { grid-template-columns: 1fr; gap: 2rem; } }
.vm-item { padding: 2rem 0; border-top: 3px solid #011d51; }
.vm-label { color: #4a5c6e; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; font-family: 'Poppins', sans-serif; }
.vm-title { font-family: 'Poppins', sans-serif; font-size: 1.3rem; color: #011d51; margin-bottom: 1rem; font-weight: 700; }
.vm-text { color: #4a5c6e; font-size: 0.92rem; line-height: 1.8; }

/* ── WHY CHOOSE ── */
#why { background: #ffffff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media(max-width:900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #ffffff; padding: 1.8rem; border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border-top: 3px solid transparent;
  transition: all 0.3s;
}
.why-card:hover { border-top-color: #011d51; transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-title { font-weight: 700; font-size: 0.95rem; color: #011d51; margin-bottom: 0.5rem; font-family: 'Poppins', sans-serif; }
.why-desc { font-size: 0.85rem; color: #4a5c6e; line-height: 1.7; }

/* ── WHAT WE DELIVER ── */
#deliver { background: #011d51; }
.deliver-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; margin-top: 2rem;
}
@media(max-width:900px) { .deliver-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px) { .deliver-grid { grid-template-columns: 1fr; } }
.deliver-item { padding: 1.8rem 1.5rem; text-align: center; background: rgba(1,29,81,0.6); transition: background 0.3s; }
.deliver-item:hover { background: rgba(255,255,255,0.06); }
.deliver-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.deliver-title { color: white; font-weight: 600; font-size: 0.85rem; line-height: 1.4; font-family: 'Poppins', sans-serif; }
.deliver-bar { display: none; }

/* ── SOLUTIONS ── */
#solutions { background: #ffffff; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media(max-width:900px) { .solutions-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .solutions-grid { grid-template-columns: 1fr; } }
.sol-card { border: 1px solid #e8edf2; border-radius: 12px; padding: 1.8rem; position: relative; overflow: hidden; transition: all 0.3s; background: #ffffff; }
.sol-card:hover { border-color: #011d51; box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-4px); }
.sol-card:hover .sol-arrow { transform: none; }
.sol-icon-wrap { width: 50px; height: 50px; border-radius: 10px; background: linear-gradient(135deg, #011d51, #01113a); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.sol-title { font-weight: 700; font-size: 0.95rem; color: #011d51; margin-bottom: 0.75rem; font-family: 'Poppins', sans-serif; }
.sol-desc { font-size: 0.82rem; color: #4a5c6e; line-height: 1.7; }
.sol-arrow { display: none; }

/* ── INDUSTRIES ── */
#industries { background: #ffffff; }
.ind-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 3rem; }
@media(max-width:900px) { .ind-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:500px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
.ind-card { background: #ffffff; border-radius: 10px; padding: 1.5rem 1rem; text-align: center; border: 1px solid #e8edf2; transition: all 0.3s; cursor: default; }
.ind-card:hover { border-color: #011d51; box-shadow: 0 6px 20px rgba(0,0,0,0.06); transform: translateY(-3px); }
.ind-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.ind-label { font-size: 0.78rem; font-weight: 600; color: #011d51; line-height: 1.4; font-family: 'Poppins', sans-serif; }

/* ── INTERNATIONAL ── */
#international { background: #01113a; }
.intl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
@media(max-width:700px) { .intl-grid { grid-template-columns: 1fr; } }
.intl-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 2.2rem; }
.intl-card:hover { background: rgba(255,255,255,0.07); }
.intl-flag { font-size: 2.8rem; margin-bottom: 1rem; }
.intl-country { font-family: 'Poppins', sans-serif; font-size: 1.5rem; color: white; font-weight: 700; margin-bottom: 0.5rem; }
.intl-project { color: #8a99aa; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }
.intl-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.8; }
.intl-tag { display: inline-flex; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: #ffffff; font-size: 0.68rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; margin-top: 1.25rem; margin-right: 6px; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Poppins', sans-serif; }

/* ── TECHNICAL ── */
#technical { background: #ffffff; }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
@media(max-width:700px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card { text-align: center; padding: 2.2rem 1.8rem; border: 1px solid #e8edf2; border-radius: 12px; transition: all 0.3s; background: #ffffff; }
.tech-card:hover { border-color: #011d51; box-shadow: 0 6px 24px rgba(1,29,81,0.06); }
.tech-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.tech-title { font-weight: 700; font-size: 1rem; color: #011d51; margin-bottom: 0.75rem; font-family: 'Poppins', sans-serif; }
.tech-desc { font-size: 0.85rem; color: #4a5c6e; line-height: 1.75; }

/* ── EQUIPMENT ── */
#equipment { background: #ffffff; }
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media(max-width:900px) { .equip-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px) { .equip-grid { grid-template-columns: 1fr; } }
.equip-card { background: #ffffff; border-radius: 10px; overflow: hidden; border: 1px solid #e8edf2; transition: all 0.3s; }
.equip-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-3px); border-color: #011d51; }
.equip-photo { height: 120px; background: linear-gradient(135deg, #011d51, #01113a); display: flex; align-items: center; justify-content: center; position: relative; }
.equip-svg { width: 65px; height: 65px; opacity: 0.85; }
.equip-photo-badge { position: absolute; top: 8px; right: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); color: #ffffff; font-size: 0.55rem; font-weight: 700; padding: 3px 8px; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Poppins', sans-serif; }
.equip-info { padding: 1rem; }
.equip-name { font-weight: 700; font-size: 0.88rem; color: #011d51; margin-bottom: 4px; font-family: 'Poppins', sans-serif; }
.equip-use { font-size: 0.75rem; color: #4a5c6e; }

/* ── CLIENTS ── */
#clients { background: #ffffff; }
.clients-marquee { margin-top: 2.5rem; overflow: hidden; position: relative; }
.clients-marquee::before, .clients-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
.clients-marquee::before { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.clients-marquee::after { right: 0; background: linear-gradient(to left, #ffffff, transparent); }
.clients-track { display: flex; gap: 0; width: max-content; animation: marquee 30s linear infinite; }
.clients-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-chip { display: flex; align-items: center; gap: 8px; padding: 0.5rem 1.5rem; margin: 0 0.4rem; background: #f5f7fa; border: 1px solid #e8edf2; border-radius: 8px; white-space: nowrap; }
.client-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: #011d51; }
.client-chip-name { font-weight: 600; font-size: 0.85rem; color: #011d51; font-family: 'Poppins', sans-serif; }
.client-note { text-align: center; margin-top: 1.5rem; color: #8a99aa; font-size: 0.85rem; }

/* ── CONTACT ── */
#contact { padding: 0; background: #ffffff; }
.contact-split { display: grid; grid-template-columns: 380px 1fr; min-height: 650px; }
.contact-left {
  background: #011d51;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left-inner { max-width: 320px; }
.contact-eyebrow-label {
  font-size: 1.3rem; font-weight: 900; letter-spacing: 0.14em;
  text-transform: uppercase; color: #ffffff; margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}
.contact-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 900;
  color: #ffffff; line-height: 1.15; margin-bottom: 2rem;
}

/* Keep the eyebrow and remove the large H2 as per design notes */
.contact-heading { display: none; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.contact-detail-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}
.contact-detail-value { color: #ffffff; font-size: 0.88rem; font-weight: 500; line-height: 1.5; }
.contact-link { text-decoration: none; color: #ffffff; transition: opacity 0.2s; }
.contact-link:hover { opacity: 0.75; text-decoration: underline; }

.contact-social-row { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-social-label {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}
.contact-socials { display: flex; gap: 0.75rem; }
.contact-social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.contact-social-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }

.contact-emergency { margin-top: 1.5rem; padding: 1rem 1.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; }
.contact-emergency-label { color: #ffffff; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; font-family: 'Poppins', sans-serif; }
.contact-emergency-text { color: rgba(255,255,255,0.55); font-size: 0.78rem; line-height: 1.6; margin-bottom: 0.5rem; }
.contact-emergency-link { color: #ffffff; font-weight: 700; font-size: 0.9rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color 0.2s; font-family: 'Poppins', sans-serif; }
.contact-emergency-link:hover { border-bottom-color: #ffffff; }

.contact-right { display: flex; flex-direction: column; background: #ffffff; }
.contact-map-wrap { flex-shrink: 0; overflow: hidden; border-bottom: 1px solid #e8edf2; }
.contact-map-wrap iframe { display: block; width: 100%; height: 220px; border: 0; }
.contact-form-panel { padding: 2rem 2.5rem; flex: 1; overflow-y: auto; }
.contact-form-panel h3 {
  font-family: 'Poppins', sans-serif;
  color: #011d51; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem;
}

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; color: #4a5c6e; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: #f5f7fa; border: 1.5px solid #e8edf2;
  border-radius: 6px; padding: 0.55rem 0.85rem;
  color: #011d51; font-size: 0.88rem; font-family: 'Poppins', sans-serif;
  outline: none; transition: border 0.25s, background 0.25s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #aab4be; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: #011d51; background: #ffffff;
}
.form-group textarea { resize: vertical; min-height: 75px; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
@media(max-width:500px) { .form-row { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%; background: #011d51; color: #ffffff; border: none;
  padding: 0.75rem; border-radius: 6px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; font-family: 'Poppins', sans-serif;
  letter-spacing: 0.04em; transition: all 0.25s; margin-top: 0.3rem;
}
.form-submit:hover { background: #1a3a7a; transform: translateY(-1px); }

@media(max-width:1100px) { .contact-split { grid-template-columns: 320px 1fr; } .contact-form-panel { padding: 1.5rem; } }
@media(max-width:800px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-left { padding: 2.5rem 1.5rem; }
  .contact-left-inner { max-width: 100%; }
  .contact-map-wrap iframe { height: 200px; }
  .contact-form-panel { padding: 1.5rem; }
}

/* ── VALUE PILLARS ── */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden;
}
.value-card {
  padding: 1.8rem 1.5rem; background: rgba(1,29,81,0.7);
  text-align: center; transition: background 0.3s;
}
.value-card:hover { background: rgba(255,255,255,0.05); }
.value-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem; font-size: 1.3rem;
}
.value-title {
  color: white; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.4rem;
  font-family: 'Poppins', sans-serif;
}
.value-desc { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.7; }
@media(max-width:700px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:400px) { .values-grid { grid-template-columns: 1fr; } }

/* ── FOOTER ── */
footer { background: #f7f8fa; border-top: 1px solid #e8edf2; padding: 1rem 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: var(--text-muted); font-size: 0.74rem; font-family: 'Poppins', sans-serif; }
@media(max-width:500px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ── SCROLL TOP ── */
#scrollTop {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 40px; height: 40px; border-radius: 8px;
  background: #011d51; color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: #ffffff; color: #011d51; transform: translateY(-3px); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }

/* ── NOTIFICATION ── */
#notification {
  position: fixed; bottom: 4rem; right: 1.5rem; z-index: 1000;
  background: #011d51; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 0.8rem 1.2rem; max-width: 280px;
  transform: translateX(120%); transition: transform 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
#notification.show { transform: translateX(0); }
#notification p { color: white; font-size: 0.85rem; }
#notification strong { color: #ffffff; }