/* =====================================================
   Sri Andavar — Light Neumorphic Theme
   White + Orange + Dark Blue
   ===================================================== */
:root {
  --bg: #eef2f7;
  --surface: #eef2f7;
  --white: #ffffff;
  --text: #1a2b4a;
  --text-soft: #5a6a85;
  --dark-blue: #0b3a6e;
  --dark-blue-2: #124a85;
  --orange: #e85d04;
  --orange-soft: #ff7a1a;
  --orange-light: #fff0e6;
  --blue-light: #e8f1fb;
  --shadow-dark: #c8d0dc;
  --shadow-light: #ffffff;
  --radius: 20px;
  --radius-sm: 14px;
  --header-h: auto;
  --font-display: "Rajdhani", sans-serif;
  --font-body: "Barlow", sans-serif;
  --neo-out:
    10px 10px 20px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light);
  --neo-out-sm:
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  --neo-in:
    inset 6px 6px 12px var(--shadow-dark),
    inset -6px -6px 12px var(--shadow-light);
  --neo-hover:
    14px 14px 28px var(--shadow-dark),
    -14px -14px 28px var(--shadow-light);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
}
.container { width: min(1200px, 92%); margin: 0 auto; }

/* Neumorphic cards */
.neo-card,
.glass-card,
.card-light,
.highlight-card,
.service-card,
.product-card,
.industry-card,
.testimonial-card,
.faq-item,
.contact-info-card,
.contact-form,
.value-card,
.job-card,
.blog-card,
.process-step,
.why-item,
.spec-card,
.capability-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--neo-out);
  border: none;
  transition: var(--transition);
}
.neo-card:hover,
.glass-card:hover,
.highlight-card:hover,
.service-card:hover,
.product-card:hover,
.industry-card:hover,
.value-card:hover,
.process-step:hover {
  box-shadow: var(--neo-hover);
  transform: translateY(-4px);
}

.glass-card, .service-card, .highlight-card, .process-step,
.testimonial-card, .value-card, .why-item, .spec-card,
.capability-card, .contact-info-card, .contact-form, .job-card {
  padding: 32px;
}

/* Buttons — soft neo + orange/blue */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(145deg, var(--orange-soft), var(--orange));
  color: #fff;
  box-shadow: 6px 6px 14px rgba(232,93,4,0.35), -4px -4px 10px rgba(255,255,255,0.8);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 18px rgba(232,93,4,0.45), -4px -4px 10px #fff;
}
.btn-outline {
  background: var(--bg);
  color: var(--dark-blue);
  box-shadow: var(--neo-out-sm);
}
.btn-outline:hover {
  color: var(--orange);
  box-shadow: var(--neo-in);
}
.btn-steel {
  background: linear-gradient(145deg, var(--dark-blue-2), var(--dark-blue));
  color: #fff;
  box-shadow: 6px 6px 14px rgba(11,58,110,0.35);
}
.btn-steel:hover { transform: translateY(-2px); }

/* Sections */
.section { padding: 90px 0; position: relative; background: #f7f9fc; }
.section-light { background: #ffffff; color: var(--text); }
.section-dark { background: #e7eef7; }
.section-alt { background: #e7eef7; }
.section-blue-soft { background: #e3effa; }
.section-orange-soft { background: #fff3e8; }
.section-mint { background: #eaf6f2; }
.section-soft-white { background: #ffffff; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: var(--neo-out-sm);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  color: var(--dark-blue);
}
.section-sub { color: var(--text-soft); font-size: 1.1rem; }
.section-light h2, .section-light h3, .section-light h4,
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--dark-blue); }
.section-light .section-sub, .section-dark .section-sub { color: var(--text-soft); }

/* Topbar */
.topbar {
  background: var(--dark-blue);
  padding: 10px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--orange-soft); }
.topbar i { color: var(--orange-soft); margin-right: 6px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.85rem;
}
.social-links a:hover { background: var(--orange); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  box-shadow: 0 8px 24px rgba(11,58,110,0.08);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(11,58,110,0.12); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  min-height: 58px;
  gap: 12px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img {
  height: 112px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-mark {
  width: 48px; height: 48px;
  background: linear-gradient(145deg, var(--orange-soft), var(--orange));
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  box-shadow: 4px 4px 10px rgba(232,93,4,0.35);
}
.logo-with-img .logo-mark { display: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-blue);
}
.logo-text span {
  font-size: 0.7rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 10px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-radius: 10px;
}
.main-nav > li > a:hover,
.main-nav > li.active > a,
.main-nav > li:hover > a {
  color: var(--dark-blue);
  background: var(--bg);
  box-shadow: var(--neo-in);
}
.main-nav > li > a i.fa-chevron-down { font-size: 0.65rem; opacity: 0.7; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--neo-out);
  z-index: 100;
}
.main-nav > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.dropdown a i { color: var(--orange); width: 18px; }
.dropdown a:hover { background: var(--bg); box-shadow: var(--neo-in); color: var(--dark-blue); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 640px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--neo-out);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  z-index: 100;
}
.main-nav > li:hover .mega-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-menu a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  color: var(--text-soft);
}
.mega-menu a i { color: var(--orange); font-size: 1.1rem; margin-top: 3px; }
.mega-menu a strong {
  display: block;
  color: var(--dark-blue);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 2px;
}
.mega-menu a span { font-size: 0.8rem; color: var(--text-soft); }
.mega-menu a:hover { background: var(--bg); box-shadow: var(--neo-in); }

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 11px 20px; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  background: var(--bg);
  border: none;
  color: var(--dark-blue);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: var(--neo-out-sm);
}

/* Hero — photo full-bleed */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0a2340 !important;
  background-image:
    linear-gradient(105deg, rgba(8, 28, 52, 0.48) 0%, rgba(8, 28, 52, 0.32) 38%, rgba(8, 28, 52, 0.18) 68%, rgba(8, 28, 52, 0.12) 100%),
    url("../images/hero-bg.jpg") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(232,93,4,0.1), transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(11,58,110,0.1), transparent 40%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 80px 0; }
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--dark-blue);
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  width: 100%;
  max-width: 640px;
}
.hero-stat {
  background: var(--bg);
  box-shadow: var(--neo-out-sm);
  border-radius: 14px;
  padding: 12px 10px;
  min-width: 0;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-stat span {
  display: block;
  font-size: 0.62rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

/* Page hero */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  background:
    linear-gradient(135deg, rgba(11,58,110,0.92), rgba(232,93,4,0.75)),
    url("../images/7.jpeg") right center / contain no-repeat !important;
  background-color: var(--dark-blue) !important;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.5; }

/* Highlights */
.highlights { margin-top: 0; position: relative; z-index: 5; padding: 48px 0 56px; background: #ffffff; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.highlight-card { padding: 28px 22px; text-align: center; }
.highlight-card .icon-wrap {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--bg);
  box-shadow: var(--neo-out-sm);
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--orange);
}
.highlight-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.highlight-card p { font-size: 0.9rem; color: var(--text-soft); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-images img {
  border-radius: var(--radius);
  object-fit: contain;
  width: 100%;
  height: 220px;
  background: #fff;
  padding: 12px;
  box-shadow: var(--neo-out-sm);
}
.about-images img:first-child {
  grid-row: span 2;
  height: 100%;
  min-height: 456px;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(145deg, var(--orange-soft), var(--orange));
  color: white;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  box-shadow: 8px 8px 20px rgba(232,93,4,0.4);
}
.about-badge strong { display: block; font-size: 2rem; line-height: 1; }
.about-badge span { font-size: 0.85rem; opacity: 0.95; }
.about-content .section-eyebrow { text-align: left; }
.check-list { margin: 24px 0 32px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-soft);
}
.check-list li i { color: var(--orange); margin-top: 4px; }

/* Services / products grids */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card .icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--bg);
  box-shadow: var(--neo-out-sm);
  display: grid; place-items: center;
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .link-more {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}
.service-card .link-more:hover { color: var(--dark-blue); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  overflow: hidden;
  padding: 0;
}
.product-card .img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius) var(--radius) 0 0;
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: 0.5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.05); }
.product-card .img-wrap .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: var(--font-display);
  box-shadow: 3px 3px 8px rgba(232,93,4,0.35);
}
.product-body { padding: 24px; }
.product-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.product-body p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 16px; }

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step { text-align: center; position: relative; padding: 32px 20px; }
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(11,58,110,0.12);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.process-step .icon-wrap {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--neo-out-sm);
  display: grid; place-items: center;
  font-size: 1.5rem;
  color: var(--orange);
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process-step p { color: var(--text-soft); font-size: 0.9rem; }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-item { display: flex; gap: 20px; }
.why-item .icon-wrap {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--bg);
  box-shadow: var(--neo-out-sm);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.why-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-item p { color: var(--text-soft); font-size: 0.95rem; }

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card { text-align: center; padding: 36px 20px; }
.industry-card i { font-size: 2.2rem; color: var(--dark-blue); margin-bottom: 16px; }
.industry-card h3 { font-size: 1.1rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--neo-out-sm);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) { grid-column: span 2; height: 280px; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(11,58,110,0.9));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

/* Testimonials */
.testimonial-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card .quote-icon { font-size: 2rem; color: var(--orange); opacity: 0.6; margin-bottom: 16px; }
.testimonial-card p { color: var(--text-soft); font-style: italic; margin-bottom: 24px; font-size: 1.05rem; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--dark-blue), var(--orange));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  box-shadow: var(--neo-out-sm);
}
.author-info strong { display: block; color: var(--dark-blue); font-size: 1rem; }
.author-info span { font-size: 0.85rem; color: var(--text-soft); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 14px; overflow: hidden; padding: 0; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--dark-blue);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-q i { color: var(--orange); transition: var(--transition); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; color: var(--text-soft); }

/* CTA */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(11,58,110,0.94), rgba(232,93,4,0.88)),
    url("../images/16.jpeg") right center / contain no-repeat !important;
  background-color: var(--dark-blue) !important;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
  text-transform: uppercase;
  color: #fff;
}
.cta-banner p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
}
.cta-banner .btn-outline {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border: 2px solid rgba(255,255,255,0.5);
  margin-left: 10px;
}
.cta-banner .btn-outline:hover {
  background: #fff;
  color: var(--orange);
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-card .icon-wrap {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--bg);
  box-shadow: var(--neo-out-sm);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--text-soft); font-size: 0.95rem; }
.contact-info-card a:hover { color: var(--orange); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: none;
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: var(--neo-in);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: var(--neo-in), 0 0 0 3px rgba(232,93,4,0.2);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.95rem; }
.data-table th, .data-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(11,58,110,0.08);
}
.data-table th {
  background: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-blue);
  font-size: 0.85rem;
  box-shadow: var(--neo-in);
}
.data-table td { color: var(--text-soft); }
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--neo-out);
  padding: 8px;
}

/* Content */
.content-block { margin-bottom: 48px; }
.content-block h2 { font-size: 1.8rem; margin-bottom: 16px; }
.content-block h3 { font-size: 1.35rem; margin: 28px 0 12px; color: var(--dark-blue); }
.content-block p { color: var(--text-soft); margin-bottom: 14px; }
.content-block ul.feature-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--text-soft);
}
.content-block ul.feature-list li i { color: var(--orange); margin-top: 5px; flex-shrink: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.spec-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 40px 0; }
.spec-card { padding: 36px; border-top: 4px solid var(--orange); }
.spec-card.alt { border-top-color: var(--dark-blue); }
.spec-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.spec-card .spec-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
}
.spec-card.alt .spec-tag { color: var(--dark-blue); }
.spec-visual {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  box-shadow: var(--neo-out);
}
.spec-visual img { max-height: 260px; width: auto; object-fit: contain; margin: 0 auto; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--orange), var(--dark-blue));
  border-radius: 3px;
}
.timeline-item { position: relative; margin-bottom: 36px; padding-left: 20px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--bg), 3px 3px 8px var(--shadow-dark);
}
.timeline-item h4 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline-item span {
  font-size: 0.8rem;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.timeline-item p { color: var(--text-soft); margin-top: 6px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 36px 24px; }
.value-card i { font-size: 2rem; color: var(--orange); margin-bottom: 16px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--text-soft); font-size: 0.95rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { overflow: hidden; padding: 0; background: var(--bg); box-shadow: var(--neo-out); border-radius: var(--radius); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; background: #fff; padding: 0; display: block; }
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.78rem;
  color: var(--orange);
  margin-bottom: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-body h3 a { color: var(--dark-blue); text-decoration: none; }
.blog-body h3 a:hover { color: var(--orange); }
.blog-body p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 14px; }

.job-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.job-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.job-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--text-soft); font-size: 0.9rem; }
.job-meta i { color: var(--dark-blue); margin-right: 4px; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  margin-top: 40px;
  box-shadow: var(--neo-out);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 10px 22px;
  border-radius: 12px;
  background: var(--bg);
  border: none;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--neo-out-sm);
  transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active {
  background: linear-gradient(145deg, var(--orange-soft), var(--orange));
  color: white;
  box-shadow: 4px 4px 10px rgba(232,93,4,0.35);
}

.material-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.material-badge {
  padding: 14px 28px;
  background: var(--bg);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--dark-blue);
  box-shadow: var(--neo-out-sm);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(11,58,110,0.08);
  color: var(--text-soft);
  font-size: 0.95rem;
}
.hours-list li span:last-child { color: var(--dark-blue); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--dark-blue);
  padding-top: 80px;
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.6fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  align-items: start;
}
.footer-menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.footer-brand .logo,
.footer-logo-link {
  margin-bottom: 18px;
  display: inline-flex;
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.6); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 20px; }
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-col ul a:hover { color: var(--orange-soft); padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.footer-contact li i { color: var(--orange-soft); margin-top: 4px; width: 16px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  color: white;
  font-family: var(--font-body);
}
.newsletter-form button {
  padding: 12px 18px;
  background: var(--orange);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--orange-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
.footer-bottom a:hover { color: var(--orange-soft); }
.footer-credit a {
  color: var(--orange-soft);
  font-weight: 600;
  text-decoration: none;
}
.footer-credit a:hover { color: #fff; }
.footer-credit .fa-instagram { margin-left: 4px; }

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-size: 1.7rem;
  box-shadow: 8px 8px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible,
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* If JS fails, still show content after a moment */
html.no-js .reveal {
  opacity: 1;
  transform: none;
}

.form-success {
  background: var(--bg);
  box-shadow: var(--neo-out);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--dark-blue);
  margin-bottom: 16px;
  display: none;
}
.form-success.show { display: block; }

@media (max-width: 1100px) {
  .highlights-grid, .services-grid, .products-grid, .blog-grid, .testimonial-slider { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mega-menu { width: 520px; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .dropdown, .mega-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; width: 100%; display: none; box-shadow: none; margin-top: 4px;
  }
  .main-nav > li.open .dropdown,
  .main-nav > li.open .mega-menu { display: grid; }
  .mega-menu { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .about-grid, .contact-grid, .two-col, .spec-cards { grid-template-columns: 1fr; }
  .about-images img:first-child { grid-row: auto; min-height: 200px; height: 200px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; height: 200px; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(11,58,110,0.45); z-index: 1150; }
  .nav-overlay.show { display: block; }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .highlights-grid, .services-grid, .products-grid, .blog-grid,
  .testimonial-slider, .process-steps, .industries-grid, .why-grid,
  .values-grid { grid-template-columns: 1fr; }
  /* keep footer 2-col on small phones — overridden in layout-fix */
  .form-row { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
}
