/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
   font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
  background-color: #f8fafc;
}

:root {
  --elevation-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
  --elevation-medium: 0 15px 35px rgba(15, 23, 42, 0.12);
  --elevation-strong: 0 22px 50px rgba(15, 23, 42, 0.16);
}

h1, h2, h3, h4 {
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

h3 {
  font-size: 1.05rem;
}

h4 {
  font-size: 0.95rem;
  color: #334155;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Utility */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}


.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #e5f0ff;
}

.section-heading {
  text-align: center;
   max-width: 680px;
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}


.section-heading p {
   font-size: 0.95rem;
  color: #475569;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #e5e7eb;
}

.logo-image {
  height: 48px;        /* adjust this to match your design */
  width: auto;
  object-fit: contain;
  display: block;
}
.site-header .logo-image {
  filter: brightness(0) invert(1);
}

.logo-title {
  font-weight: 600;
  font-size: 1rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #22c55e;
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #22c55e;
  background: rgba(34, 197, 94, 0.08);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  color: #f9fafb;
  background: #020617;
  overflow: hidden;
  padding-bottom: 4rem;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.4),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(34, 197, 94, 0.35),
      transparent 55%
    );
  opacity: 0.7;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero-weighbridge.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
  gap: 3rem;
  padding: 4.5rem 1.5rem 2rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  font-weight: 400;
  color: #d1fae5;
}

.hero-text p {
  max-width: 36rem;
  color: #cbd5f5;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.6);
}

/* Premium button micro-interactions */
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.35);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
}


.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.78rem;
  color: #e5e7eb;
}

.badge i {
  font-size: 0.85rem;
}

/* Hero Stat Panel */
.hero-stat-panel {
  align-self: center;
  display: grid;
  gap: 0.75rem;
}

.stat-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 0.9rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.5);
  position: relative;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #2563eb);
  border-radius: 999px;
  opacity: 0.9;
}

.stat-card:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}


.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #bbf7d0;
}

.stat-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Hero Video */
.hero-video-wrapper {
  position: relative;
  margin-top: 1.5rem;
}

.hero-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: 1.5rem;
  background: rgba(15, 23, 42, 0.92);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-video-text h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-video-text p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-video-embed video {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-video-embed video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.hero-video-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* About */
.section-inner.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.about-inner h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.about-inner p {
  color: #475569;
  margin-bottom: 1.2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.about-grid h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.about-grid ul {
  list-style: none;
  color: #64748b;
  font-size: 0.9rem;
}

.about-grid li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.about-grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
}
/* About section – image area */
/* About section media alignment */
.section-media {
  display: flex;
  justify-content: flex-end;
}

/* Image stack container */
.image-stack {
  display: grid;
  gap: 1.5rem;

  max-width: 420px;
  margin-left: auto;
}

/* SAME SIZE FRAME for both images */
.image-stack img {
  width: 100%;
  height: 240px;              /* ✅ THIS makes them equal size */
  display: block;

  object-fit: cover;          /* ✅ fills frame nicely */
  border-radius: 24px;

  background: #e9eef5;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
}

/* Keep styling hook if needed later */

/* Mobile behavior */
@media (max-width: 768px) {
  .section-media {
    justify-content: center;
    margin-top: 2rem;
  }

  .image-stack {
    max-width: 100%;
  }

  .image-stack img {
    height: 200px;   /* slightly smaller on mobile */
  }
}


/* ===========================
   Solutions Section
   =========================== */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem auto;
  text-align: center;
}


.solution-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.solution-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.solution-card p {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.8rem;
}

.solution-card span {
  font-size: 0.75rem;
  color: #2563eb;
  font-weight: 600;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}
.solution-card::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  border-radius: 999px;
  opacity: 0.7;
}


/* Responsive */
@media (max-width: 1000px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}
/* Solution icons */
.solution-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.8rem;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.solution-icon i {
  font-size: 1.1rem;
  color: #2563eb;
}


/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.industry-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.industry-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.industry-card h3 i {
  color: #2563eb;
  margin-right: 0.4rem;
}

.industry-card p {
  font-size: 0.9rem;
  color: #64748b;
}
/* Projects grid */
/* === Projects === */

.projects-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 1.6rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.projects-grid::-webkit-scrollbar {
  height: 6px;
}

.projects-grid::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.4);
  border-radius: 999px;
}
/* scroll hint */
.scroll-hint {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  margin: 0.5rem 0 1.5rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

/* One column on tablet / mobile */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.project-card {
  display: flex;
   flex-direction: column; /* ✅ image top, content bottom */
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
  transition: box-shadow 0.3s ease;
}
.project-card {
  scroll-snap-align: start;
}

.project-card:hover {
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}


.project-image {
  height: 210px;
  background: #020617;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-scroll-wrapper {
  position: relative;
}

.projects-scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, transparent, #eaf2ff);
  pointer-events: none;
}


/* Text column */
.project-body {
  flex: 1;
  padding: 1.4rem 1.5rem 1.6rem;
}

.project-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.project-body p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.7rem;
}

.project-meta {
  list-style: none;
  font-size: 0.86rem;
  color: #475569;
  padding: 0;
  margin: 0;
}

.project-meta li {
  margin-bottom: 0.2rem;
}

/* Stack image on top on smaller screens */
@media (max-width: 768px) {
  .project-card {
    flex-direction: column;
  }

  .project-image {
    max-width: 100%;
    width: 100%;
    height: 220px;        /* keep a nice, shallow card image */
  }
}


/* ===========================
   Clients / Logos strip
   =========================== */

.client-strip-wrapper {
  margin-top: 3rem;
  padding: 1.6rem 0;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left,
              rgba(45, 212, 191, 0.14),
              transparent 60%);
  overflow: hidden;
  position: relative;
}

/* moving belt */
.client-strip {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: client-bounce 14s ease-in-out infinite alternate;
}

/* pause on hover */
.client-strip-wrapper:hover .client-strip {
  animation-play-state: paused;
}

/* one set of logos */
.client-row {
  display: flex;
  gap: 4rem;
}

/* pill background behind each logo */
.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.55);
}

/* logo images – COLOURED by default */
.client-logo img {
  display: block;
  height: 34px;
  width: auto;
  /* keep them crisp and colourful */
  filter: none;
  opacity: 0.95;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
}

/* hover effect */
.client-logo:hover img {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 6px rgba(148, 163, 184, 0.6));
}

/* ping-pong animation (no big gaps) */
@keyframes client-bounce {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); } /* adjust -20%..-35% to taste */
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .client-strip-wrapper {
    padding: 1.2rem 0;
    margin-top: 2.4rem;
  }

  .client-strip {
    gap: 2.5rem;
    animation-duration: 14s; /* slightly faster on mobile */
  }

  .client-row {
    gap: 2.5rem;
  }

  .client-logo {
    padding: 0.55rem 1.1rem;
  }

  .client-logo img {
    height: 26px;
  }
}

/* cards below the strip stay as you had */
.client-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.mini-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.mini-card h3 i {
  color: #2563eb;
  margin-right: 0.4rem;
}

.mini-card p {
  font-size: 0.9rem;
  color: #64748b;
}



/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.contact-info p {
  color: #475569;
  margin-bottom: 1rem;
}

.contact-block {
  margin-bottom: 1rem;
}

.contact-block h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-block p {
  font-size: 0.9rem;
  color: #64748b;
}

.contact-block i {
  margin-right: 0.4rem;
  color: #2563eb;
}

/* Contact Form */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.contact-form h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.contact-response-note {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #cbd5f5;
  font-size: 0.9rem;
  outline: none;
  background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.full-width {
  width: 100%;
}

.form-note {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.4rem;
}

/* Footer */
.site-footer {
  width: 100%;
  background: #0b1220;
  color: #9aa4b2;
  padding: 30px 20px;
  margin: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
}


.footer-subtext {
  color: #6b7280;
  margin-top: 0.2rem;
}
.footer-legal {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.3rem;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-center {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-center.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stat-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-video-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-inner.about-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .projects-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.6rem 0;
  }

  .nav {
    position: absolute;
    top: 56px;
    right: 1.5rem;
    left: 1.5rem;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 0.9rem;
    padding: 0.8rem 1rem 1rem;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(4px);
  }

  .nav a {
    padding: 0.3rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .hero-stat-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-video-card {
    padding: 1.1rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-strip-wrapper {
    border-radius: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.9rem;
  }

 .section {
  padding: 4.5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

}
/* ===========================
   HERO INTRO – PREMIUM MOTION
   =========================== */

.hero-text > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.2s; }
.hero-text > *:nth-child(2) { animation-delay: 0.4s; }
.hero-text > *:nth-child(3) { animation-delay: 0.6s; }
.hero-text > *:nth-child(4) { animation-delay: 0.8s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#solutions {
  position: relative;
}

#solutions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  transform: translateX(-50%);
  border-radius: 999px;
}
.solution-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}
/* Icon micro-motion */
.card-icon i,
.industry-card i,
.mini-card i {
  transition: transform 0.25s ease;
}

.card:hover .card-icon i,
.industry-card:hover i,
.mini-card:hover i {
  transform: translateY(-2px);
}
/* ===========================
   Trust Strip (Conversion)
   =========================== */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-item {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #334155;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.trust-item i {
  color: #2563eb;
  font-size: 1rem;
}
/* ===========================
   Page Load Polish
   =========================== */

body {
  animation: pageFadeIn 0.5s ease forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a, button {
  -webkit-tap-highlight-color: transparent;
}
/* ===========================
   About Section (PDF Aligned)
   =========================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.about-lead {
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.about-points {
  margin-top: 1.2rem;
  padding-left: 1.1rem;
}

.about-points li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #334155;
}

.about-trust .trust-box {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.about-trust h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.about-trust ul li {
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  color: #475569;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   About Section – Visual Split
   =========================== */

.about-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 1rem;
}

.about-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.about-lists h4 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.about-lists ul li {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: #475569;
}

.about-images {
  display: grid;
  gap: 1.2rem;
}

.about-images img {
  width: 100%;
  border-radius: 1.1rem;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

/* Mobile */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-lists {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   Industries Section
   =========================== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.industry-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  text-align: center;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card i {
  font-size: 1.4rem;
  color: #2563eb;
  margin-bottom: 0.6rem;
}

.industry-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.industry-card p {
  font-size: 0.85rem;
  color: #475569;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}

.industry-card::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  border-radius: 999px;
  opacity: 0.7;
}
/* FIX: Center Industries heading exactly like Certifications */

#industries .section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

#industries .section-heading h2 {
  margin-bottom: 0.6rem;
}

#industries .section-heading p {
  margin: 0 auto;
}


/* Responsive */
@media (max-width: 1000px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}


/* ===========================
   Projects – Visual Polish
   =========================== */

.project-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.project-card p {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0.8rem;
}

.project-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 0.6rem;
}

.project-meta li {
  font-size: 0.75rem;
  color: #334155;
  margin-bottom: 0.3rem;
}
.project-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #065f46;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  margin: 0.6rem 1rem 0;
}

/* ===========================
   Certifications & Compliance
   =========================== */

.section-soft {
  background: linear-gradient(
    to bottom,
    rgba(241, 245, 249, 0.6),
    rgba(248, 250, 252, 0.9)
  );
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.cert-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.cert-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.cert-card p {
  font-size: 0.85rem;
  color: #475569;
}

/* Responsive */
@media (max-width: 1000px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}
/* Global card spacing harmony */
.solution-card,
.industry-card,
.cert-card,
.project-card {
  border-radius: 1.2rem;
}

/* ===========================
   How It Works
   =========================== */

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.how-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  position: relative;
}

.how-step {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.08em;
}

.how-card h3 {
  font-size: 1rem;
  margin: 0.4rem 0 0.6rem;
}

.how-card p {
  font-size: 0.85rem;
  color: #475569;
}

/* Responsive */
@media (max-width: 1000px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}


/* ===========================
   Product Catalogue
   =========================== */

/*
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.catalogue-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.catalogue-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.catalogue-card p {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0.6rem;
}

.catalogue-card ul {
  list-style: none;
  padding: 0;
  font-size: 0.8rem;
  color: #334155;
}

.catalogue-card ul li {
  margin-bottom: 0.3rem;
}            


@media (max-width: 1000px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }
}                     */



/* ===========================
   Section Background System
   =========================== */

.section-white {
  background: #ffffff;
}

.section-soft {
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #eef4ff 100%
  );
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 4px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2563eb, #22c55e);
  border-radius: 999px;
}
/* ===========================
   Card Bottom Underline (Reusable)
   =========================== */

.card-underline {
  position: relative;
}

.card-underline::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  border-radius: 999px;
  opacity: 0.85;
}
/* ===========================
   Product Catalogue Flow Arrows
   =========================== 

.catalogue-grid {
  position: relative;
}

.catalogue-card {
  position: relative;
}

*/

/* ===========================
   Projects Horizontal Scroll
   =========================== */

.projects-scroll {
  overflow-x: auto;
  padding-bottom: 1rem;
}

.projects-track {
  display: flex;
  gap: 1.6rem;
  scroll-snap-type: x mandatory;
}

.project-card {
  min-width: 320px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover polish (same feel as clients) */
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

/* Hide ugly scrollbar (Chrome) */
.projects-scroll::-webkit-scrollbar {
  height: 6px;
}

.projects-scroll::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.4);
  border-radius: 999px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp i {
  font-size: 1.2rem;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.contact-form {
  width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cfd6e4;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
