/* ============================================================
   RESQ TECHNOLOGIES – FULL UI REDESIGN
   Color palette: Blue #1a56db, Red #e02020, White #ffffff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #1a56db;
  --blue2:  #1040b8;
  --red:    #e02020;
  --red2:   #c01010;
  --orange: #e02020;
  --orange2:#c01010;
  --light:  #f4f7ff;
  --muted:  #dde4f5;
  --text:   #1a3070;
  --text2:  #4a5580;
  --white:  #ffffff;
  --shadow: 0 8px 40px rgba(26,86,219,.12);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--light);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- UTILITY ---------- */
.section-tag {
  display: inline-block;
  background: rgba(0,102,255,.10);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-heading span { color: var(--orange); }

.section-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 540px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 4px;
  margin: 14px 0 22px;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: .4px;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.announce-bar strong { color: #ff8080; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,64,184,.15);
}

.header-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

/* Logo */
.logo a { display: flex; align-items: center; gap: 10px; }

.logo img { height: 50px; width: auto; }

/* Header stats – removed from header, hidden */
.header-stats { display: none; }

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--muted);
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}

.stat-content { line-height: 1.3; }

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text2);
  font-weight: 600;
}

.stat-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

/* Header CTA */
.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,102,255,.30);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue2), #002fa8);
  box-shadow: 0 6px 20px rgba(0,102,255,.40);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--muted);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,102,255,.05);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,107,0,.28);
}

.btn-orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,0,.38);
}

/* Header nav links (replaces separate nav bar) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin-left: auto;
  margin-right: 20px;
}

.header-nav > li { position: relative; }

.header-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.header-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: var(--transition);
  border-radius: 2px;
}

.header-nav > li > a:hover,
.header-nav > li > a.active {
  color: var(--blue);
}

.header-nav > li > a:hover::after,
.header-nav > li > a.active::after {
  width: 65%;
}

.header-nav .chevron {
  font-size: 9px;
  opacity: .6;
  transition: transform .2s;
}

.header-nav .has-dropdown:hover .chevron { transform: rotate(180deg); }

.header-nav .has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 500;
  box-shadow: 0 16px 40px rgba(26,64,184,.16);
  overflow: hidden;
  border-top: 3px solid var(--blue);
}

.header-nav .has-dropdown:hover .dropdown { display: block; }

.header-nav .dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--muted);
  transition: var(--transition);
  font-weight: 500;
}

.header-nav .dropdown li:last-child a { border-bottom: none; }

.header-nav .dropdown li a:hover {
  background: var(--light);
  color: var(--blue);
  padding-left: 24px;
}

/* ============================================================
   NAVIGATION BAR (kept for CSS compatibility, hidden)
   ============================================================ */
.main-nav { display: none; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-list {
  display: flex;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.82);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
  transition: var(--transition);
  position: relative;
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  width: 70%;
}

/* Dropdown chevron */
.has-dropdown > a .chevron {
  font-size: 9px;
  opacity: .7;
  transition: transform .2s;
}

.has-dropdown:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown menu */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 500;
  box-shadow: 0 16px 40px rgba(26,64,184,.16);
  overflow: hidden;
  border-top: 3px solid var(--blue);
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--muted);
  transition: var(--transition);
}

.dropdown li:last-child a { border-bottom: none; }

.dropdown li a:hover {
  background: var(--light);
  color: var(--blue);
  padding-left: 24px;
}

.nav-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  letter-spacing: .5px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 10px;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--blue);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 560px;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,143,.82) 0%,
    rgba(26,58,143,.45) 50%,
    rgba(224,32,32,.10) 100%
  );
}

.slide.active { opacity: 1; }

.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 760px;
}

.slide-caption .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}

.slide-caption h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(26,58,143,.5);
  margin-bottom: 18px;
}

.slide-caption p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  max-width: 500px;
  margin: 0 auto 28px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Arrows */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.20);
  font-size: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-prev:hover, .slider-next:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.1);
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* Hero stats bar */
.hero-stats-bar {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hstat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--muted);
  transition: var(--transition);
}

.hstat:last-child { border-right: none; }

.hstat:hover { background: var(--light); }

.hstat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.hstat-icon.blue  { background: rgba(26,86,219,.12);  color: var(--blue); }
.hstat-icon.orange{ background: rgba(224,32,32,.12);   color: var(--orange); }
.hstat-icon.green { background: rgba(26,86,219,.10);   color: var(--blue); }
.hstat-icon.purple{ background: rgba(224,32,32,.10);   color: var(--orange); }

.hstat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.hstat-label {
  font-size: 12px;
  color: var(--text2);
  font-weight: 500;
  margin-top: 3px;
}

/* ============================================================
   PRODUCTS / SERVICES
   ============================================================ */
.products-section {
  padding: 80px 0;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .divider {
  margin: 14px auto 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,64,184,.08);
  transition: var(--transition);
  border: 1px solid var(--muted);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(224,32,32,.14);
  border-color: rgba(224,32,32,.22);
}

.product-img-wrap {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #eef2ff, #dde4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-img-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: var(--transition);
}

.product-card:hover .product-img-wrap::before { transform: scaleX(1); }

.product-img-wrap img {
  max-width: 80%;
  max-height: 160px;
  object-fit: contain;
  transition: transform .4s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}

.product-link:hover { gap: 9px; color: var(--blue2); }

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-we-are {
  padding: 90px 0;
  background: linear-gradient(135deg, #0d1f6e 0%, #1a56db 50%, #e02020 100%);
  position: relative;
  overflow: hidden;
}

.who-we-are::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,32,32,.18), transparent 70%);
  pointer-events: none;
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-text .section-tag {
  background: rgba(255,107,0,.15);
  color: var(--orange);
}

.who-text .section-heading {
  color: var(--white);
}

.who-text .section-sub {
  color: rgba(255,255,255,.68);
  margin-bottom: 30px;
}

.who-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.who-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}

.who-feat-item:hover {
  background: rgba(224,32,32,.12);
  border-color: rgba(224,32,32,.30);
}

.feat-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  flex-shrink: 0;
}

.who-feat-item span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  letter-spacing: .4px;
  text-transform: uppercase;
}

.who-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Images grid */
.who-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 460px;
}

.who-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.who-img:first-child {
  grid-row: span 2;
  height: 100%;
}

/* ============================================================
   APPLICATIONS MARQUEE
   ============================================================ */
.applications-section {
  padding: 80px 0 0;
  background: var(--white);
}

.applications-section .section-header {
  text-align: center;
  margin-bottom: 36px;
}

/* Marquee wrapper – clips overflow and adds fade edges */
.marquee-track-wrap {
  overflow: hidden;
  width: 100%;
  padding: 0 0 80px;
  position: relative;
}

.marquee-track-wrap::before,
.marquee-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.marquee-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  flex-shrink: 0;
  width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.marquee-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,143,.6), transparent 55%);
  opacity: 0;
  transition: var(--transition);
}

.marquee-item:hover::after { opacity: 1; }

.marquee-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.marquee-item:hover img { transform: scale(1.06); }

/* ============================================================
   CLIENTS LOGO MARQUEE
   ============================================================ */
.clients-section {
  padding: 70px 0 0;
  background: var(--light);
}

.clients-section .section-header {
  text-align: center;
  margin-bottom: 36px;
}

.logo-marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 0 0 70px;
  position: relative;
}

.logo-marquee-wrap::before,
.logo-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}

.logo-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}

@keyframes logo-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-marquee-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: logo-marquee-scroll 30s linear infinite;
}

.logo-marquee-track:hover { animation-play-state: paused; }

.logo-marquee-item {
  flex-shrink: 0;
  width: 180px;
  background: var(--white);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: var(--transition);
}

.logo-marquee-item:hover {
  box-shadow: 0 8px 28px rgba(0,102,255,.12);
  border-color: rgba(0,102,255,.22);
  transform: translateY(-3px);
}

.logo-marquee-item img {
  max-width: 100%;
  max-height: 65px;
  object-fit: contain;
  filter: grayscale(50%);
  transition: var(--transition);
}

.logo-marquee-item:hover img { filter: grayscale(0%); }

/* ============================================================
   CONTACT CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0d1f6e 0%, #1a56db 45%, #e02020 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,32,32,.25), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 500px;
  margin: 0 auto 28px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(160deg, #0a1550 0%, #0d2060 40%, #1a0a3a 100%);
  color: #a0b4e0;
  font-size: 13.5px;
}

.footer-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1fr 1.8fr;
  gap: 44px;
}

.footer-col h4.footer-heading {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-logo { height: 44px; margin-bottom: 14px; }

.footer-desc {
  color: #8aabdf;
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  color: #c0d4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links { padding: 0; }

.footer-links li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-links li:last-child { border-bottom: none; }

.footer-links a {
  color: #8aabdf;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '▸';
  color: var(--orange);
  font-size: 10px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.fc-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(224,32,32,.20);
  color: #ff7070;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fc-text {
  font-size: 13px;
  color: #8aabdf;
  line-height: 1.6;
}

.fc-text a { color: #8aabdf; transition: color .2s; }
.fc-text a:hover { color: var(--white); }

.qr-box {
  background: var(--white);
  display: inline-block;
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

/* Footer bottom */
.footer-bottom {
  background: linear-gradient(90deg, #060f3a 0%, #0d2e8a 50%, #1a0530 100%);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #6080b8;
}

.footer-design strong { color: var(--orange); }

/* ============================================================
   PAGE INNER HEADER  (about / contact / clients / products)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.page-hero .breadcrumb a { color: var(--orange); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.page-section {
  padding: 70px 0;
}

.page-section .inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.content-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 20px rgba(26,64,184,.08);
  border: 1px solid var(--muted);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text2);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--muted);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,.10);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* Products grid inner page */
.products-inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Clients grid inner page */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.client-tile {
  background: var(--white);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: var(--transition);
}

.client-tile:hover {
  border-color: rgba(0,102,255,.25);
  box-shadow: 0 8px 24px rgba(0,102,255,.10);
  transform: translateY(-3px);
}

.client-tile img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: var(--transition);
}

.client-tile:hover img { filter: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .who-inner { grid-template-columns: 1fr; }
  .who-images-grid { height: 320px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .marquee-item { width: 220px; }
  .logo-marquee-item { width: 150px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .products-inner-grid { grid-template-columns: 1fr 1fr; }
  .slide-caption h2 { font-size: 32px; }
  .header-stats { display: none; }
  .page-section .inner-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .slider-wrapper { height: 380px; }
  .nav-toggle { display: flex; }
  .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    background: var(--white);
    z-index: 999;
    padding: 10px 0;
    box-shadow: 0 8px 24px rgba(26,64,184,.15);
    margin: 0;
  }
  .header-nav.open { display: flex; }
  .header-nav > li > a { padding: 12px 20px; border-bottom: 1px solid var(--muted); }
  .applications-section .section-header,
.clients-section .section-header {
  text-align: center;
  margin-bottom: 36px;
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .products-inner-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .slide-caption h2 { font-size: 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .cta-banner h2 { font-size: 26px; }
  .marquee-item { width: 150px; }
  .marquee-item img { height: 130px; }
  .logo-marquee-item { width: 120px; min-height: 65px; }
}