/* ===== GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #e87722;
  --primary-dark: #c95e0a;
  --primary-light: #f59540;
  --primary-glow: rgba(232,119,34,0.25);
  --secondary: #0b1e3f;
  --secondary-light: #122850;
  --secondary-mid: #1a3460;
  --accent: #00c4ff;
  --accent-2: #7c3aed;
  --text-dark: #0d1117;
  --text-mid: #3d4a5c;
  --text-light: #6b7a8d;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --off-white-2: #eef1f6;
  --border: #e0e6ef;
  --border-light: #f0f3f8;
  --card-shadow: 0 4px 24px rgba(11,30,63,0.07);
  --card-shadow-md: 0 8px 32px rgba(11,30,63,0.10);
  --card-shadow-hover: 0 20px 60px rgba(232,119,34,0.18);
  --card-shadow-dark: 0 8px 40px rgba(0,0,0,0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.section-title span { color: var(--primary); }
.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.85;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.3px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,119,34,0.40);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232,119,34,0.50);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(11,30,63,0.2);
}
.btn-secondary:hover {
  background: var(--secondary-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11,30,63,0.28);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: var(--secondary);
  box-shadow: 0 4px 24px rgba(11,30,63,0.15);
  overflow: hidden; /* CRITICAL: prevent logo overflow on all devices */
}
.navbar.scrolled {
  background: var(--secondary);
  box-shadow: 0 4px 32px rgba(11,30,63,0.3);
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
/* Logo anchor - fixed container so image never overflows */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  height: 44px;        /* Fixed height container */
  max-width: 180px;    /* Fixed max-width container */
  overflow: hidden;    /* Kill any overflow inside the logo anchor */
}
/* Logo image - fills its container on ALL screen sizes */
.nav-logo-img {
  display: block;
  width: 100%;          /* Fill container width */
  height: 100%;         /* Fill container height */
  max-height: 44px;     /* Hard ceiling */
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  transition: max-height 0.3s ease;
}
.navbar.scrolled .nav-logo {
  height: 36px;
  max-width: 160px;
}
.navbar.scrolled .nav-logo-img {
  max-height: 36px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.2px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  box-shadow: 0 4px 16px rgba(232,119,34,0.35);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
  box-shadow: 0 6px 20px rgba(232,119,34,0.5) !important;
}
/* Hamburger toggle  - hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  z-index: 10;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--secondary);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 40px);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero_banner.png') center/cover no-repeat;
  opacity: 0.18;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg,
    rgba(11,30,63,0.98) 0%,
    rgba(11,30,63,0.85) 45%,
    rgba(26,52,96,0.70) 70%,
    rgba(232,119,34,0.12) 100%
  );
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,119,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particles span {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(232,119,34,0.5);
  border-radius: 50%;
  animation: float 6s infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-28px) scale(1.5); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(232,119,34,0.12);
  border: 1px solid rgba(232,119,34,0.35);
  color: var(--primary-light);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-title span { color: var(--primary); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 560px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.8s ease both;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.hero-stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.8px;
  margin-top: 5px;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-size: 10px; color: rgba(255,255,255,0.35);
  letter-spacing: 2.5px; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TICKER STRIP ===== */
.ticker-strip {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light), var(--primary));
  background-size: 300% 100%;
  animation: gradientShift 8s ease infinite;
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ticker-inner {
  display: flex; gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap; width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 600;
  color: var(--white); letter-spacing: 0.8px;
}
.ticker-item svg { width: 15px; height: 15px; flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HIGHLIGHTS / KEY FEATURES ===== */
.highlights { background: var(--off-white-2); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(232,119,34,0.15);
}
.card-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,119,34,0.12), rgba(232,119,34,0.04));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.highlight-card:hover .card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.card-icon svg { width: 28px; height: 28px; color: var(--primary); transition: var(--transition); }
.highlight-card:hover .card-icon svg { color: var(--white); }
.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--secondary); margin-bottom: 10px;
}
.card-desc { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-image-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-dark);
}
.about-badge {
  position: absolute;
  bottom: 28px; right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 12px 40px rgba(232,119,34,0.45);
}
.about-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 800; line-height: 1;
}
.about-badge-text {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; margin-top: 4px; opacity: 0.9;
}
.about-points {
  display: flex; flex-direction: column;
  gap: 16px; margin: 28px 0 36px;
}
.about-point {
  display: flex; align-items: flex-start;
  gap: 14px; font-size: 14.5px;
  color: var(--text-mid); line-height: 1.65;
}
.about-point-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.about-point-icon svg { width: 12px; height: 12px; color: var(--white); }

/* ===== STATS BAND ===== */
.stats-band {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-mid) 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(232,119,34,0.08);
  border-color: rgba(232,119,34,0.2);
  transform: translateY(-4px);
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 46px; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.stat-label {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 8px; letter-spacing: 0.5px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--secondary);
  position: relative; overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(232,119,34,0.05);
}
.services::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(0,196,255,0.04);
}
.services .section-title { color: var(--white); }
.services .section-desc { color: rgba(255,255,255,0.58); }
.services .section-label { color: var(--primary-light); }
.services .section-label::before { background: var(--primary-light); }
.services-header {
  display: flex;
  justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; flex-wrap: wrap; gap: 24px;
  position: relative; z-index: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  position: relative; z-index: 1;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,119,34,0.06), transparent 60%);
  opacity: 0; transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(232,119,34,0.30);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.05);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Outfit', sans-serif;
  font-size: 56px; font-weight: 800;
  color: rgba(232,119,34,0.10);
  line-height: 1; margin-bottom: 12px;
  transition: var(--transition);
}
.service-card:hover .service-num { color: rgba(232,119,34,0.22); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(232,119,34,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
}
.service-icon svg { width: 26px; height: 26px; color: var(--primary-light); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.service-desc { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.75; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 13px; font-weight: 600;
  color: var(--primary-light); transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ===== PROCESS / HOW WE WORK ===== */
.process { background: var(--off-white-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 60px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 56px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary), var(--primary), transparent);
  opacity: 0.25;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(232,119,34,0.2);
}
.process-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(232,119,34,0.35);
}
.process-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--secondary); margin-bottom: 10px;
}
.process-step-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* ===== INDUSTRIES ===== */
.industries { background: var(--white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 60px;
}
.industry-card {
  background: var(--off-white-2);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border-light);
  display: flex; align-items: center; gap: 18px;
  transition: var(--transition); cursor: default;
}
.industry-card:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--card-shadow-hover);
  transform: translateX(6px);
}
.industry-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-mid));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.industry-icon svg { width: 26px; height: 26px; color: var(--primary-light); }
.industry-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16.5px; font-weight: 700; color: var(--secondary);
}
.industry-desc { font-size: 12.5px; color: var(--text-light); margin-top: 3px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #f5a04a 100%);
  padding: 84px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -60px; left: 10%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 32px;
  position: relative; z-index: 1;
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800; color: var(--white); line-height: 1.15;
  letter-spacing: -0.5px;
}
.cta-subtitle { font-size: 16px; color: rgba(255,255,255,0.82); margin-top: 10px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== WHY CHOOSE ===== */
.why-choose { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-top: 60px;
}
.why-image {
  position: relative;
  width: 100%; height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-dark);
  overflow: hidden;
}
.edge-slider {
  position: relative;
  width: 100%; height: 100%;
}
.edge-slides {
  width: 100%; height: 100%;
  position: relative;
}
.edge-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.5s ease-in-out;
}
.edge-slide.active { opacity: 1; z-index: 1; }
.edge-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.edge-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); opacity: 0; transition: var(--transition);
  z-index: 2; cursor: pointer; border: none;
}
.edge-slider:hover .edge-btn { opacity: 1; }
.edge-btn:hover { background: var(--primary); color: var(--white); }
.edge-btn svg { width: 22px; height: 22px; }
.edge-prev { left: 16px; }
.edge-next { right: 16px; }
.edge-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.edge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition);
}
.edge-dot.active { background: var(--white); transform: scale(1.2); }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item {
  display: flex; gap: 18px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(232,119,34,0.03), transparent);
  transform: translateX(4px);
}
.why-item-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--off-white-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.why-item:hover .why-item-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.why-item-icon svg { width: 22px; height: 22px; color: var(--primary); transition: var(--transition); }
.why-item:hover .why-item-icon svg { color: var(--white); }
.why-item-title {
  font-weight: 700; font-size: 15px;
  color: var(--secondary); margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
}
.why-item-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* ===== FOOTER ===== */
.footer {
  background: #060d1c;
  padding: 88px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo-img {
  max-width: 280px;
  height: auto;
  object-fit: contain;
  margin-bottom: 28px;
}
.footer-desc {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 2; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: var(--transition);
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary); color: var(--white);
  transform: translateY(-3px);
}
.social-btn svg { width: 17px; height: 17px; }
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--white); letter-spacing: 0.3px; margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(232,119,34,0.25);
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.42);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 13px; margin-bottom: 18px; }
.footer-contact-item svg {
  width: 17px; height: 17px;
  color: var(--primary); flex-shrink: 0; margin-top: 2px;
}
.footer-contact-item p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7; }
.footer-contact-item p a { color: rgba(255,255,255,0.42); transition: var(--transition); }
.footer-contact-item p a:hover { color: var(--primary-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-mid) 100%);
  padding: 165px 0 85px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), transparent);
}
.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800; color: var(--white);
  margin-bottom: 14px; letter-spacing: -0.5px;
  position: relative; z-index: 1;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.48);
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--primary-light); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ===== ABOUT PAGE ===== */
.mission-vision {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 60px;
}
.mv-card {
  padding: 44px 36px; border-radius: var(--radius);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.mv-card.mission { background: linear-gradient(135deg, var(--secondary), var(--secondary-mid)); color: var(--white); }
.mv-card.vision { background: var(--off-white-2); }
.mv-card-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.mission .mv-card-icon { background: rgba(232,119,34,0.2); }
.vision .mv-card-icon { background: rgba(11,30,63,0.1); }
.mv-card-icon svg { width: 28px; height: 28px; }
.mission .mv-card-icon svg { color: var(--primary-light); }
.vision .mv-card-icon svg { color: var(--secondary); }
.mv-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 25px; font-weight: 700; margin-bottom: 14px;
}
.mission .mv-card-title { color: var(--white); }
.vision .mv-card-title { color: var(--secondary); }
.mv-card-text { font-size: 14.5px; line-height: 1.85; }
.mission .mv-card-text { color: rgba(255,255,255,0.68); }
.vision .mv-card-text { color: var(--text-mid); }

.core-values { background: var(--off-white-2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 52px;
}
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
}
.value-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.value-icon svg { width: 26px; height: 26px; color: var(--primary-light); transition: var(--transition); }
.value-card:hover .value-icon svg { color: var(--white); }
.value-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--secondary); margin-bottom: 9px;
}
.value-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ===== SERVICES PAGE ===== */
.service-detail-card {
  background: var(--white); border-radius: var(--radius);
  padding: 44px 36px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-detail-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  transform: scaleY(0); transform-origin: top;
  transition: var(--transition);
}
.service-detail-card:hover::before { transform: scaleY(1); }
.service-detail-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(232,119,34,0.2);
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sdcard-header {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--border-light);
}
.sdcard-icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-mid));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition);
}
.service-detail-card:hover .sdcard-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.sdcard-icon svg { width: 30px; height: 30px; color: var(--primary-light); transition: var(--transition); }
.service-detail-card:hover .sdcard-icon svg { color: var(--white); }
.sdcard-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--secondary);
}
.sdcard-features { display: flex; flex-direction: column; gap: 10px; }
.sdcard-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-mid);
}
.sdcard-feature svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px; align-items: start;
}
.contact-info-card {
  background: linear-gradient(140deg, var(--secondary), var(--secondary-mid));
  border-radius: var(--radius);
  padding: 48px 38px; color: var(--white);
  position: sticky; top: 100px;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-info-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 700; margin-bottom: 8px; color: var(--white);
}
.contact-info-subtitle {
  font-size: 13.5px; color: rgba(255,255,255,0.52);
  margin-bottom: 40px; line-height: 1.8;
}
.contact-detail { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,119,34,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; color: var(--primary-light); }
.contact-detail-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary-light); margin-bottom: 5px;
}
.contact-detail-content {
  font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7;
}
.contact-detail-content a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.contact-detail-content a:hover { color: var(--primary-light); }
.contact-form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 48px 40px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--card-shadow-md);
}
.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 27px; font-weight: 700; color: var(--secondary); margin-bottom: 6px;
}
.form-subtitle { font-size: 13.5px; color: var(--text-light); margin-bottom: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--secondary); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,119,34,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; }

.map-section { background: var(--off-white-2); }
.map-container {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--card-shadow-md); margin-top: 52px;
}

/* ===== PRODUCTS PAGE ===== */
.products-intro { background: var(--off-white-2); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 52px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(232,119,34,0.2);
}
.product-card-body { padding: 28px 24px; }
.product-tag {
  display: inline-block;
  background: rgba(232,119,34,0.1);
  color: var(--primary);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 40px; margin-bottom: 14px;
}
.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--secondary); margin-bottom: 8px;
}
.product-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.75; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== MOBILE NAV ===== */
.nav-mobile {
  position: fixed; inset: 0;
  background: var(--secondary);
  z-index: 1001;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile .nav-links-m a {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 30px; font-weight: 700;
  color: rgba(255,255,255,0.72);
  padding: 14px 0; text-align: center;
  transition: var(--transition); letter-spacing: -0.5px;
}
.nav-mobile .nav-links-m a:hover { color: var(--primary-light); }
.nav-close {
  position: absolute; top: 28px; right: 28px;
  color: rgba(255,255,255,0.55); cursor: pointer; transition: var(--transition);
}
.nav-close:hover { color: var(--white); }
.nav-close svg { width: 28px; height: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}

/* ===== MOBILE NAVBAR (≤768px) ===== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 68px 0; }

  /* Hide desktop nav links, show hamburger */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Strict 2-column layout: logo LEFT, toggle RIGHT */
  .nav-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    gap: 0 !important;
    width: 100% !important;
  }

  /* Toggle: fixed 48px on the RIGHT */
  .nav-toggle {
    order: 2 !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
  }

  /* Logo wrapper: strict fixed box, LEFT side */
  .nav-logo {
    order: 1 !important;
    flex: 0 0 auto !important;   /* Do NOT grow — fixed size only */
    width: 150px !important;     /* Fixed pixel width — no auto-grow */
    height: 44px !important;     /* Fixed pixel height */
    max-width: 150px !important;
    max-height: 44px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    line-height: 0 !important;
  }

  /* Logo image: fills the fixed container */
  .nav-logo-img {
    display: block !important;
    width: 100% !important;       /* Fill container width */
    height: 100% !important;      /* Fill container height */
    max-width: 150px !important;
    max-height: 44px !important;
    object-fit: contain !important;
    object-position: left center !important;
    flex-shrink: 0 !important;
  }
  .navbar.scrolled .nav-logo {
    height: 36px !important;
    width: 130px !important;
    max-width: 130px !important;
    max-height: 36px !important;
  }
  .navbar.scrolled .nav-logo-img {
    max-height: 36px !important;
    max-width: 130px !important;
  }

  /* Footer logo */
  .footer-brand .footer-logo-img { max-width: 200px; }

  /* Hero: extra padding-top so content never goes under navbar */
  .hero { padding-top: calc(var(--nav-h) + 60px) !important; }

  /* Page layout */
  .hero-stats { gap: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-badge { right: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .industries-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-stats { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-desc { margin: 0 auto 44px; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .services-header { justify-content: flex-start; }
}

/* ===== SMALL PHONES (≤480px) ===== */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .nav-inner { padding: 0 12px !important; }
  .nav-toggle { flex: 0 0 44px !important; width: 44px !important; height: 44px !important; padding: 9px !important; }
  .nav-logo { width: 130px !important; max-width: 130px !important; height: 40px !important; max-height: 40px !important; }
  .nav-logo-img { max-width: 130px !important; max-height: 40px !important; }
  .navbar.scrolled .nav-logo { width: 115px !important; max-width: 115px !important; height: 34px !important; max-height: 34px !important; }
  .navbar.scrolled .nav-logo-img { max-width: 115px !important; max-height: 34px !important; }
  .footer-brand .footer-logo-img { max-width: 160px; }
  .footer-grid { padding-bottom: 40px; }
}

/* ===== VERY SMALL PHONES (≤380px) ===== */
@media (max-width: 380px) {
  :root { --nav-h: 56px; }
  .nav-inner { padding: 0 10px !important; }
  .nav-toggle { flex: 0 0 40px !important; width: 40px !important; height: 40px !important; padding: 8px !important; }
  .nav-logo { width: 110px !important; max-width: 110px !important; height: 36px !important; max-height: 36px !important; }
  .nav-logo-img { max-width: 110px !important; max-height: 36px !important; }
  .navbar.scrolled .nav-logo { width: 95px !important; max-width: 95px !important; height: 30px !important; max-height: 30px !important; }
  .navbar.scrolled .nav-logo-img { max-width: 95px !important; max-height: 30px !important; }
  .footer-brand .footer-logo-img { max-width: 130px; }
}

/* ===== EXTRA SMALL PHONES (≤320px) ===== */
@media (max-width: 320px) {
  :root { --nav-h: 52px; }
  .nav-inner { padding: 0 8px !important; }
  .nav-toggle { flex: 0 0 36px !important; width: 36px !important; height: 36px !important; padding: 7px !important; }
  .nav-logo { width: 90px !important; max-width: 90px !important; height: 32px !important; max-height: 32px !important; }
  .nav-logo-img { max-width: 90px !important; max-height: 32px !important; }
  .navbar.scrolled .nav-logo { width: 80px !important; max-width: 80px !important; height: 26px !important; max-height: 26px !important; }
  .navbar.scrolled .nav-logo-img { max-width: 80px !important; max-height: 26px !important; }
}
