:root {
  --navy: #0a1628;
  --navy2: #0f2044;
  --blue: #1a56db;
  --blue-light: #3b82f6;
  --blue-pale: #eff6ff;
  --blue-mid: #dbeafe;
  --accent: #0ea5e9;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f1f5f9;
  --gray-100: #e2e8f0;
  --gray-200: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --font: 'Plus Jakarta Sans', sans-serif;
  --display: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 32px rgba(26,86,219,0.2);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-pale); color: var(--blue); border: 1px solid var(--blue-mid);
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.tag-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.section-title {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; color: var(--navy); margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-sub { font-size: 1.05rem; color: var(--gray-500); line-height: 1.75; max-width: 560px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  padding: 13px 28px; border-radius: var(--radius-sm); border: none;
  cursor: pointer; text-decoration: none; transition: all 0.25s ease;
}
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { background: #1648c0; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,86,219,0.3); }
.btn-outline {
  background: transparent; color: var(--navy); border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-green { background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.btn-green:hover { background: #1da851; transform: translateY(-2px); }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; transition: all 0.35s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-100), 0 4px 24px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px; box-shadow: var(--shadow-blue);
}
.logo-wordmark { font-family: var(--display); font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.logo-wordmark span { color: var(--blue); }

nav.scrolled .logo-wordmark { color: var(--navy); }
nav:not(.scrolled) .logo-wordmark { color: #fff; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    padding: 15px 0;
    display: table;
}

nav.scrolled .nav-links a { color: var(--gray-500); }
.nav-links a:hover { color: var(--blue) !important; }

.nav-cta { display: flex; align-items: center; gap: 15px; }
.nav-phone {
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

nav.scrolled .nav-phone { color: var(--gray-700); }
.nav-phone:hover { color: var(--blue) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; display: block; }
nav.scrolled .hamburger span { background: var(--gray-700); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--gray-100);
  padding: 20px 24px; flex-direction: column; gap: 4px; z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--gray-700); text-decoration: none; font-weight: 600;
  font-size: 1rem; padding: 12px 0; border-bottom: 1px solid var(--gray-50);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
  /* background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 50%, #0c1f45 100%); */
  background-size: cover;
  background-position: center;
}
.hero-img-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 5;
}
.hero-img-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.7) 60%, rgba(10,22,40,0.85) 100%);
}

/* Decorative grid lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-image: linear-gradient(rgb(255 255 255 / 74%) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.live-dot { width: 7px; height: 7px; background: #ff4d4d; border-radius: 50%; animation: livePulse 1.5s ease-in-out infinite; }
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,77,77,0.6)} 50%{box-shadow:0 0 0 6px rgba(255,77,77,0)} }

.hero-headline {
  font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.05; color: #fff; margin-bottom: 20px;
}
.hero-headline .accent { color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 36px; max-width: 500px; font-weight: 400; }
.hero-ctas {display: flex;flex-wrap: wrap;gap: 12px;margin-bottom: 40px;}

.hero-stats { display: flex; gap: 32px; }
.stat-box {
  text-align: center;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
}
.stat-num { font-family: var(--display); font-size: 2rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 500; }

/* Hero right side: camera image */
.hero-visual {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hero-visual img { width: 100%; display: block; border-radius: var(--radius-xl); }
.hero-visual-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
  padding: 24px;
}
.cam-feed-widget {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.cam-status-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: livePulse 2s infinite; }
.cam-feed-text { font-size: 0.82rem; color: #fff; font-weight: 600; }
.cam-feed-sub { font-size: 0.72rem; color: rgba(255,255,255,0.55); }

.scroll-arrow {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.4); font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

/* ===== BRANDS ===== */
#brands { padding: 52px 0; background: var(--off-white); border-bottom: 1px solid var(--gray-100); }
.brands-label { text-align: center; font-size: 12px; font-weight: 700; color: var(--gray-400); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 32px; }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.brand-pill {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--gray-100); border-radius: 100px;
  padding: 12px 24px; transition: all 0.3s; cursor: default; box-shadow: var(--shadow-sm);
}
.brand-pill:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-2px); }
.brand-pill img { height: 28px; object-fit: contain; filter: grayscale(100%); transition: filter 0.3s; }
.brand-pill:hover img { filter: grayscale(0); }
.brand-pill-name { font-weight: 700; font-size: 0.9rem; color: var(--gray-700); }

/* ===== SERVICES ===== */
#services {background: var(--white);}
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: all 0.3s ease; cursor: default;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--blue); margin-bottom: 20px; transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--blue); color: #fff; }
.service-title { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.service-link {
  font-size: 0.85rem; font-weight: 700; color: var(--blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s;
}
.service-link:hover { gap: 10px; }

/* ===== WHY CHOOSE US ===== */
#why {background: var(--navy);}
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left {}
.why-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 5px 14px; border-radius: 100px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 18px; }
.why-title { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.why-title span { color: var(--accent); }
.why-sub { color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 40px; }

.why-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.4); position: relative; }
.why-img img { width: 100%; display: block; }
.why-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: #fff; border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.badge-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue); }
.badge-num { font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.badge-label { font-size: 0.75rem; color: var(--gray-500); margin-top: 2px; }

.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-feat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 20px; transition: all 0.3s;
}
.why-feat:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }
.why-feat-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.why-feat-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(26,86,219,0.3); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--accent); }
.why-feat-title { font-weight: 700; color: #fff; font-size: 0.95rem; }
.why-feat-text { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* Counter section inside Why */
.why-counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.ctr { text-align: center; padding: 20px 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); }
.ctr-num { font-family: var(--display); font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.ctr-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 6px; font-weight: 500; }

/* ===== PRODUCTS ===== */
#products {background: var(--off-white);}
.products-header { text-align: center; margin-bottom: 56px; }
.products-header .section-sub { margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.product-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.35s ease; cursor: pointer;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-mid); }
.product-img-wrap { height: 180px; overflow: hidden; position: relative; background: var(--gray-50); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px; background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}
.product-body { padding: 20px; }
.product-name { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.product-feats { list-style: none; margin-bottom: 16px; }
.product-feats li { font-size: 0.82rem; color: var(--gray-500); padding: 3px 0; display: flex; align-items: center; gap: 7px; }
.product-feats li::before { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

/* ===== LIVE MONITORING ===== */
#monitoring {background: var(--white);}
.monitoring-header { text-align: center; margin-bottom: 56px; }
.monitoring-header .section-sub { margin: 0 auto; }
.monitoring-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.monitoring-left {}
.monitoring-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.monitoring-img img { width: 100%; display: block; }

.monitoring-right { display: flex; flex-direction: column; gap: 20px; }
.monitor-feat {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 20px; transition: all 0.3s;
}
.monitor-feat:hover { background: var(--blue-pale); border-color: var(--blue-mid); }
.monitor-feat-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; flex-shrink: 0; }
.monitor-feat-title { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.monitor-feat-text { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; }

.dashboard-mockup {
  background: var(--navy); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-top: 0;
}
.dash-bar { background: var(--navy2); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; }
.dash-bar-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 1px; }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: livePulse 1.5s infinite; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
.dash-cam { border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 16/9; }
.dash-cam img { width: 100%; height: 100%; object-fit: cover; }
.dash-cam-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 8px 8px 6px; font-size: 10px; font-weight: 600; color: #fff; letter-spacing: 0.5px; }
.dash-cam-live { position: absolute; top: 6px; left: 6px; background: rgba(239,68,68,0.9); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; }

/* ===== TESTIMONIALS ===== */
#testimonials { padding: 100px 0; background: var(--off-white); }
.test-header { text-align: center; margin-bottom: 56px; }
.test-header .section-sub { margin: 0 auto; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.test-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.test-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.test-text { font-size: 0.9rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 20px; border-bottom: 1px solid var(--gray-100); padding-bottom: 20px; }
.test-person { display: flex; align-items: center; gap: 12px; }
.test-avatar-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.test-avatar-fallback {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff; font-family: var(--display);
}
.test-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.test-role { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }

/* ===== FAQ ===== */
#faq {background: var(--off-white);}
.faq-layout {
    /* display: grid; */
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
}
.faq-left { padding-top: 4px; }
.faq-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 32px; }
.faq-img img { width: 100%; display: block; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s; background: var(--white);
}
.faq-item.open { border-color: var(--blue-mid); }
.faq-q {
  padding: 18px 22px; cursor: pointer; font-weight: 700; font-size: 0.95rem;
  color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 12px; user-select: none;
}
.faq-icon { color: var(--blue); font-size: 0.85rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 22px 18px; font-size: 0.88rem; color: var(--gray-500); line-height: 1.8; }

/* ===== CONTACT ===== */
#contact {/* background: var(--off-white); */}
.contact-header { text-align: center; margin-bottom: 56px; }
.contact-header .section-sub { margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 40px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }

.contact-img-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 20px; }
.contact-img-wrap img { width: 100%; display: block; height: 200px; object-fit: cover; }

.info-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.info-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-blue); }
.info-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--blue); flex-shrink: 0; }
.info-title { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 3px; }
.info-val { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

.emergency-card {
  background: #fff5f5; border: 1px solid #fecaca; border-radius: var(--radius);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.em-icon { color: var(--red); font-size: 1.2rem; }
.em-text { font-size: 0.85rem; color: #991b1b; }
.em-text strong { font-weight: 700; }
.em-text a { color: #dc2626; text-decoration: none; font-weight: 700; }

.action-btns { display: flex; gap: 10px; }
.action-btns .btn { flex: 1; justify-content: center; }

.form-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.form-title { font-family: var(--display); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 28px; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 12px; font-weight: 700; color: var(--gray-700); letter-spacing: 0.3px; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 12px 16px; color: var(--gray-900); font-family: var(--font); font-size: 0.9rem;
  outline: none; transition: all 0.2s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(26,86,219,0.08);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-submit-wrap { margin-top: 20px; }
.form-privacy { font-size: 0.78rem; color: var(--gray-400); text-align: center; margin-top: 12px; }

/* ===== MAP ===== */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.map-wrap iframe { display: block; width: 100%; height: 180px; border: none; }

/* ===== FOOTER ===== */
footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-mark { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 17px; margin-bottom: 12px; }
.footer-logo-text { font-family: var(--display); font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-logo-text span { color: var(--accent); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.9rem; text-decoration: none; transition: all 0.3s;
}
.soc-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-col-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  animation: waFloat 3s ease-in-out infinite;
}
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-r.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .monitoring-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-img { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .test-grid { grid-template-columns: 1fr; }
  .why-counters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 12px; flex-wrap: wrap; }
  .stat-box { padding: 12px 16px; }
  .stat-num { font-size: 1.6rem; }
  .why-features { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .form-grid2 { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .action-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-counters { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

#hero:before {
    content: "";
    position: absolute;
    background: linear-gradient(160deg, #0a1628f5 0%, #0f2044ab 50%, #0c1f4557 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#hero:before {
    content: "";
    position: absolute;
    background: linear-gradient(160deg, #0a1628f5 0%, #0f2044ab 50%, #0c1f4557 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/* Video Phone Camera  */


/* Video Phone Camera end  */



.mt-5{ margin-top:5px !important; }
.mt-10{ margin-top:10px !important; }
.mt-15{ margin-top:15px !important; }
.mt-20{ margin-top:20px !important; }
.mt-25{ margin-top:25px !important; }
.mt-30{ margin-top:30px !important; }
.mt-35{ margin-top:35px !important; }
.mt-40{ margin-top:40px !important; }
.mt-45{ margin-top:45px !important; }
.mt-50{ margin-top:50px !important; }
.mt-60{ margin-top:60px !important; }
.mt-70{ margin-top:70px !important; }
.mt-80{ margin-top:80px !important; }
.mt-90{ margin-top:90px !important; }
.mt-100{ margin-top:100px !important; }


.mb-5{ margin-bottom:5px !important; }
.mb-10{ margin-bottom:10px !important; }
.mb-15{ margin-bottom:15px !important; }
.mb-20{ margin-bottom:20px !important; }
.mb-25{ margin-bottom:25px !important; }
.mb-30{ margin-bottom:30px !important; }
.mb-35{ margin-bottom:35px !important; }
.mb-40{ margin-bottom:40px !important; }
.mb-45{ margin-bottom:45px !important; }
.mb-50{ margin-bottom:50px !important; }
.mb-60{ margin-bottom:60px !important; }
.mb-70{ margin-bottom:70px !important; }
.mb-80{ margin-bottom:80px !important; }
.mb-90{ margin-bottom:90px !important; }
.mb-100{ margin-bottom:100px !important; }

.pt-5{ padding-top:5px !important; }
.pt-10{ padding-top:10px !important; }
.pt-15{ padding-top:15px !important; }
.pt-20{ padding-top:20px !important; }
.pt-25{ padding-top:25px !important; }
.pt-30{ padding-top:30px !important; }
.pt-35{ padding-top:35px !important; }
.pt-40{ padding-top:40px !important; }
.pt-45{ padding-top:45px !important; }
.pt-50{ padding-top:50px !important; }
.pt-60{ padding-top:60px !important; }
.pt-70{ padding-top:70px !important; }
.pt-80{ padding-top:80px !important; }
.pt-90{ padding-top:90px !important; }
.pt-100{ padding-top:100px !important; }


.pb-5{ padding-bottom:5px !important; }
.pb-10{ padding-bottom:10px !important; }
.pb-15{ padding-bottom:15px !important; }
.pb-20{ padding-bottom:20px !important; }
.pb-25{ padding-bottom:25px !important; }
.pb-30{ padding-bottom:30px !important; }
.pb-35{ padding-bottom:35px !important; }
.pb-40{ padding-bottom:40px !important; }
.pb-45{ padding-bottom:45px !important; }
.pb-50{ padding-bottom:50px !important; }
.pb-60{ padding-bottom:60px !important; }
.pb-70{ padding-bottom:70px !important; }
.pb-80{ padding-bottom:80px !important; }
.pb-90{ padding-bottom:90px !important; }
.pb-100{ padding-bottom:100px !important; }


section{ padding:70px 0; }

/* Breadcrumb   */
section.breadcrumb-section {
    width: 100%;
    height: 350px;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

section.breadcrumb-section:before {
    content: "";
    height: 100%;
    background: linear-gradient(to right, #132141 0, #1321418f 75%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    width: 100%;
    z-index: 1;
}

section.breadcrumb-section .breadcrumb_title {
    margin: 0;
    z-index: 2;
    font-size: 30px;
    color: #fff !important;
}

.breadcrumb-style {
}

.breadcrumb-style ul {
    margin: 0;
}

.breadcrumb-style ul li:first-child {
    padding-left: 0;
}
.breadcrumb-style ul li {
    display: inline-block;
    list-style-type: none;
    color: #ffffff;
    padding: 0 10px;
    position: relative;
    font-size: 15px;
}

.breadcrumb-style ul li a {
    color: #ffffff;
    text-decoration: unset;
}

.breadcrumb-style ul li::after {
    content: '/';
    position: absolute;
    right: -2px;
    opacity: 0.5;
}


.breadcrumb-style ul li:last-child {
    font-weight: 700;
    color: #1a56db;
}

section.breadcrumb-section .container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.breadcrumb-style ul li:last-child:after {
    display: none;
}



/* Breadcrumb End  */


/* About us page  */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a56db24;
    color: #1a56db;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 14px;
    transition: all 0.3s;
}

.about-highlight .icon {
    width: 38px;
    height: 38px;
    background: #e30613;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-highlight .icon i {
    color: white;
    font-size: 16px;
}

.about-highlight h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.about-highlight p {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #174cc1;
    color: white;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgb(20 66 168 / 59%);
}

.about-badge .num {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.about-badge .txt {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.about-badge-2 {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-badge-2 .icon {
    width: 44px;
    height: 44px;
    background: #fef2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge-2 .icon i {
    color: #1a56db;
    font-size: 20px;
}

.about-badge-2 .info .num {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.about-badge-2 .info .lbl {
    font-size: 12px;
    color: #6b7280;
}

.text-justify{ text-align:justify !important; }

/* About us page End  */



/* Popup lead form  */
#popup-overlay {display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(10, 20, 5, 0.72); backdrop-filter: blur(4px); padding: 30px 15px; overflow: auto; }
#popup-overlay.active{display:block;}
#popup-box{
  background:#fff;width:100%;max-width:520px;
  border-radius:4px;overflow:hidden;position:relative;
  box-shadow:0 24px 64px rgba(0,0,0,0.3);
  animation:popIn .35s cubic-bezier(.22,.68,0,1.2) forwards;
      margin: auto;
}
@keyframes popIn{from{opacity:0;transform:scale(.88) translateY(20px);}to{opacity:1;transform:scale(1) translateY(0);}}
.popup-top{background: #1a56db;padding: 17px 25px 17px;}
.popup-top h2{font-size:26px;font-weight:400;color:#fff;margin-bottom:6px;}
.popup-top h2 em{font-style:italic;color:#A8D878;}
.popup-top p{font-size:13px;color:rgba(255,255,255,0.65);font-weight:300;}
.popup-close{position:absolute;top:14px;right:16px;background:rgba(255,255,255,0.15);border:none;color:#fff;font-size:18px;width:32px;height:32px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;line-height:1;}
.popup-close:hover{background:rgba(255,255,255,0.28);}
.popup-body{padding:24px 32px 28px;}
.popup-body .pfld{display:flex;flex-direction:column;gap:5px;}
.popup-body .pfld label{font-size: 12px;letter-spacing: 0.1em;text-transform:uppercase;color:#666666;font-weight:500;}
.popup-body .pfld input,.popup-body .pfld select{border: 1px solid #c7c7c7;background:#fff;color:#1a1a1a;font-size:14px;font-weight:300;padding:11px 14px;outline:none;transition:border-color .2s;width:100%;border-radius:2px;}
.popup-body .pfld input:focus,.popup-body .pfld select:focus{border-color: #1a56db;}
.popup-body .pfld select option{background:#fff;}
.popup-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:10px;}
.popup-btn{width:100%;background: #181818;color:#fff;font-size:12px;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;padding:15px;border:none;cursor:pointer;transition:background .2s;border-radius:2px;margin-top:6px;}
.popup-btn:hover{background: #1a56db;}
.popup-disc{font-size: 14px;color: #3e3e3e;line-height:1.6;margin-top:10px;text-align:center;}
#popup-ok{display:none;padding:32px;text-align:center;}
#popup-ok .ok-icon{font-size:40px;margin-bottom:12px;}
#popup-ok p{font-size:22px;color:#1a56db;margin-bottom:6px;}
#popup-ok span{font-size:13px;color:#666666;}
.popup-timer{font-size:10px;color:rgba(255,255,255,0.5);text-align:right;margin-top:6px;}

/* Popup lead form end  */

/* Menu dropdown  */
.nav-links li.hassub:hover > ul {
    display: block;
}

.nav-links li.hassub > ul {
    position: absolute;
    background: var(--blue);
    padding: 15px;
    list-style: none;
    border-radius: 7px;
    display: none;
}

.nav-links li.hassub > ul > li > a {
    text-transform: unset;
    width: 100%;
    display: table;
    padding: 5px 0;
}

.nav-links li.hassub > ul > li > a:hover {
    color: #111 !important;
}


/* Menu dropdown end  */