/* ==========================================================================
   1. ROOT VARIABLES & GLOBAL DEFAULTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  /* Typography */
  --font-body: "Lato", sans-serif;
  --font-heading: "Lato", sans-serif;
  --fs-h1: clamp(32px, 5vw, 60px);
  --fs-h2: clamp(24px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.5vw, 32px); 
  --fs-h4: clamp(18px, 1.7vw, 39px);
  --fs-h5: clamp(16px, 1.6vw, 20px);
  --fs-body: clamp(14px, 1.7vw, 18px);

  /* Colors & Gradients */
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: rgba(255, 255, 255, 0.8);
  --gradient-main: linear-gradient(90deg, #5f7cff, #ff5fa2, #ffa05f);
  --gradient-text: linear-gradient(90deg, #0087cb 0%, #e35ba1 74%, #ffdf8b 100%);
  --stats-bg: #f5f5f5;
  --divider-color: #dcdcdc;

  /* Layout & Spacing */
  --container-width: 1200px;
  --padding: 20px;

  /* Padding Scale */
  --px-sm: clamp(12px, 3vw, 16px);
  --px-md: clamp(20px, 5vw, 40px);
  --px-lg: clamp(40px, 6vw, 100px);
  --px-xl: clamp(20px, 8vw, 240px);

  --py-sm: clamp(30px, 6vh, 40px);
  --py-md: clamp(50px, 8vh, 80px);
  --py-lg: clamp(80px, 10vh, 140px);
  --py-xl: clamp(120px, 15vh, 240px);

  --space-sm: clamp(10px, 2vw, 20px);
  --space-md: clamp(20px, 3vw, 35px);
  --space-lg: clamp(20px, 5vw, 50px);

  /* Button Scale */
  --btn-py-sm: 8px;
  --btn-px-sm: 16px;
  --btn-py-md: 12px;
  --btn-px-md: 24px;
  --btn-py-lg: 16px;
  --btn-px-lg: 32px;
  --btn-gap-sm: 8px;
  --btn-gap-md: 12px;
  --btn-gap-lg: 16px;
  --btn-radius: 50px;
}

/* ==========================================================================
   2. BASE RESET & UTILITY CLASSES
   ========================================================================== */
* {margin: 0; padding: 0; box-sizing: border-box; }
html, body {width: 100%; max-width: 100%; overflow-x: hidden !important; margin: 0; padding: 0; }


/* No Copy Content */
body {
    -webkit-user-select: none !important;
    -moz-user-select: -moz-none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
    .post blockquote,.wp-block-code code {
      -webkit-user-select: text !important;
      -moz-user-select: text !important;
      -ms-user-select: text !important;
      user-select: text !important;
}

body {font-family: var(--font-body); font-size: var(--fs-body); background: #c9367c; min-height: 100vh; cursor: none; /* Custom cursor fallback */ }

h1, h2, h3, h4, h5 {font-family: var(--font-heading); }

input, textarea, select, button {font-family: var(--font-body); }
 a, button, [role="button"], input, textarea, select {cursor: pointer; }

/* Container Utility */
.container {width: 100%; max-width: var(--container-width); margin: auto; padding-left: clamp(12px, 4vw, 24px); padding-right: clamp(12px, 4vw, 24px); }

/* Spacing Utilities */
.section-space { padding: clamp(120px, 15vh, 200px) 0; }
.px-sm { padding: 0 var(--px-sm); }
.px-md { padding: 0 var(--px-md); }
.px-lg { padding: 0 var(--px-lg); }
.px-xl { padding: 0 var(--px-xl); }
.py-sm { padding: var(--py-sm) 0; }
.py-md { padding: var(--py-md) 0; }
.py-lg { padding: var(--py-lg) 0; }
.py-xl { padding: var(--py-xl) 0; }

/* Text Gradient Utilities */
.gradient-para {background: linear-gradient(90deg, #6a6cff, #ff5aa5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.gradient-text {background: linear-gradient(90deg, #6a5cff, #ff6a88, #ffb347, #6a5cff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ==========================================================================
   3. GLOBAL COMPONENTS & MICRO-INTERACTIONS
   ========================================================================== */
.logo-cursor {position: fixed; top: 0; left: 0; width: 25px; height: 25px; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.2s ease, height 0.2s ease; }

.logo-cursor img {width: 100%; height: 100%; object-fit: contain; }

/* Typing Effect */
#typed-text {background: linear-gradient(90deg, #00c6ff, #ff4d8d, #ffa05f); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; display: inline-block; }
.typed-cursor {color: #ff4d8d; font-weight: 300; margin-left: 2px; animation: blinkCursor 0.8s infinite; }
@keyframes blinkCursor {0%, 100% { opacity: 1; } 50% { opacity: 0; } }
/* Preloader Screen */
#app-preloader-screen, 
#page-loader {position: fixed; inset: 0; width: 100vw; height: 100vh; background-color: #ffffff; z-index: 99999; display: flex; justify-content: center; align-items: center; opacity: 1; visibility: visible; transition: opacity 0.4s ease, visibility 0.4s ease; }
#page-loader {background: var(--gradient-main); backdrop-filter: blur(10px); transition: opacity 0.6s ease, visibility 0.6s ease; }
#app-preloader-screen.preloader-hidden, 
#page-loader.hide {opacity: 0 !important; visibility: hidden !important; display: none !important; pointer-events: none !important; }
.preloader-animation-ring {width: 50px; height: 50px; border: 4px solid #f3f3f3; border-top: 4px solid #ff4d8d; border-radius: 50%; animation: preloaderSpin 1s linear infinite; }
.loader-inner img {width: clamp(120px, 15vw, 220px); animation: logoPulse 1.8s ease-in-out infinite; }
@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-group {
  display: flex;
  gap: var(--btn-gap-md);
}

.btn-md {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn.primary {
  font-weight: 600;
  border-radius: 27px;
  background-image: linear-gradient(90deg, rgb(0, 135, 203) 0%, rgb(227, 91, 161) 74%, rgb(227, 91, 161) 100%);
  border: 2px solid #ffffff;
  color: var(--white);
}

.btn.secondary {
  font-weight: 600;
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 27px;
  background-image: linear-gradient(90deg, #0087cb 0%, #e35ba1 74%, #e35ba1 100%);
}

.btn-gradient {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  background: linear-gradient(45deg, #4facfe, #ff5fa2);
  border: 1px solid #fff;
  transition: 0.3s;
}

.btn-gradient a {
  text-decoration: none;
  font-family: var(--font-body);
  color: #ffffff;
}

.btn:hover, 
.btn-gradient:hover {
  transform: translateY(-3px);
}
/* ==========================================
   TYPING EFFECT (ZERO-GLITCH LAYOUT)
   ========================================== */

/* Outer wrapper locks layout dimensions */
.typing-wrapper {
  display: inline-flex;
  align-items: center;
  vertical-align: bottom;
  min-height: 1.2em; /* Permanent height lock */
}

/* The dynamic text */
#typed-text {
  display: inline-block;
  min-width: 18ch; /* IMPORTANT: prevents width jump */
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
}

/* Pseudo-element cursor (prevents DOM node layout shifts) */
.typing-wrapper::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.85em; /* Matches font size baseline */
  background-color: #ff5fa2; /* Accent pink */
  margin-left: 3px;
  animation: cursorBlink 0.7s step-start infinite;
}

/* Precise step blinking without fade blur */
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Reserve container height so hero CTAs don't bounce on mobile wrap */
.hero-title {
  min-height: 3.8em;
}
.hc-mm-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 9998 !important;
  transition: opacity 0.3s ease !important;
}

/* FULL-HEIGHT RIGHT DRAWER PANEL */
.hc-mm-panel {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  transform: none !important;
  width: 82% !important;
  max-width: 320px !important;
  height: 100vh !important;
  height: 100dvh !important; /* Mobile dynamic viewport height support */
  
  /* Brand Gradient Matching Your Footer Image */
  background: linear-gradient(135deg, #6b66ff 0%, #ff758c 50%, #ff9e66 100%) !important;
  
  border-radius: 0 !important;
  border: none !important;
  padding: 24px 20px !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35) !important;
  z-index: 9999 !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
}

/* HEADER & FIXED CLOSE BUTTON */
.hc-mm-header {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 40px !important;
  margin-bottom: 12px !important;
  position: relative !important;
}

.hc-mm-close {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
  padding: 0 !important;
  z-index: 10000 !important;
}

.hc-mm-close:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  transform: scale(1.05);
}

/* NAVIGATION LINKS WITH UNDERLINE DIVIDERS */
.hc-mm-nav {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  gap: 0 !important;
  margin-top: 10px !important;
}

.hc-mm-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 16px 4px !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important; /* Translucent divider line */
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: padding-left 0.2s ease, background-color 0.2s ease !important;
}
.hc-mm-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  background: transparent !important;
  flex-shrink: 0 !important;
}
.hc-mm-label {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
  flex-grow: 1 !important;
}
.hc-mm-link:hover {
  padding-left: 8px !important;
}
.hc-mm-backdrop[aria-hidden="true"],
.hc-mm-backdrop:not(.is-active) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hc-mm-panel[aria-hidden="true"],
.hc-mm-panel:not(.is-active) {
  transform: translateX(100%) !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hc-mm-panel {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s !important;
}

/* Open State */
.hc-mm-backdrop[aria-hidden="false"],
.hc-mm-backdrop.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.hc-mm-panel[aria-hidden="false"],
.hc-mm-panel.is-active {
  transform: translateX(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Smooth Slide Transition */
.hc-mm-panel {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s !important;
}

/* 2. Open State (Triggered by JavaScript) */
.hc-mm-backdrop[aria-hidden="false"],
.hc-mm-backdrop.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.hc-mm-panel[aria-hidden="false"],
.hc-mm-panel.is-active {
  transform: translateX(0) !important; /* Slide into view */
  visibility: visible !important;
  pointer-events: auto !important;
}


.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: 0.3s ease;
}

.header.scrolled {
  opacity: 1;
  backdrop-filter: blur(5px);
  padding: 10px 0;
  background: rgba(150, 50, 80, 0.6);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: auto;
  width: 50%;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(12px, 1.8vw, 17px);
  position: relative;
  padding: 10px 0;
  border-radius: 30px;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #ff4d8d);
  transform: translateX(-50%);
  transition: 0.3s;
}

.nav-links a:hover::after { width: 80%; }
.nav-links a:hover {
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  color: var(--text-light);
}

.menu-btn {
  display: none;
  font-size: 26px;
  color: var(--white);
  cursor: pointer;
}

/* Mobile Drawer Menu Toggle */
.hc-mm-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: clamp(35px, 5vw, 43px);
  height: clamp(35px, 5.2vw, 45px);
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(26deg, #5f7cff, #ff5fa2, #ffa05f);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.06);
  cursor: pointer;
  appearance: none;
  z-index: 1205;
}

.hc-mm-toggle__lines {
  width: clamp(16px, 3vw, 22px);
  display: grid;
  gap: 5px;
}

.hc-mm-toggle__lines span {
  display: block;
  height: 2px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hc-mm-backdrop, .hc-mm-panel { display: none; }
html.hc-mm-open, body.hc-mm-open { overflow: hidden; }

/* ==========================================================================
   5. HERO BANNER SECTION
   ========================================================================== */
.hero {
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100% !important;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(79deg, #005d8d 0%, #e35ba1c4 65%, #ffde8fc7 101%);
}
.hero-content {
  position: relative;
  color: var(--white);
  z-index: 2;
  padding-top: clamp(15px, 4vw, 30px);
}
.hero h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  padding-bottom: clamp(12px, 3vw + 0.5rem, 20px);
}
.hero p {
  color: var(--white);
  max-width: 600px;
  margin-bottom: clamp(12px, 2vw, 20px);
  line-height: 1.5;
}

/* ==========================================================================
   6. STATS SECTION
   ========================================================================== */
.stats-section {
  background: var(--stats-bg);
}
.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-align: center;
}
.stat {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat h2, .stat p {
  opacity: 0;
  transform: translateY(20px);
}
.stat p { font-size: clamp(15px, 1.7vw, 22px); }
.stat.active h2,
.stat.active p {
  opacity: 1;
  transform: translateY(0);
}
.stat.active h2 { transition: all 0.5s ease; }
.stat.active p { transition: all 0.6s ease; }
.stat h2 {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat:nth-child(1).active p { transition-delay: 0.2s; }
.stat:nth-child(2).active p { transition-delay: 0.4s; }
.stat:nth-child(3).active p { transition-delay: 0.6s; }
.stat:nth-child(4).active p { transition-delay: 0.8s; }

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: clamp(70px, 7vw, 110px);
  background: linear-gradient(180deg, #7a7aff, #597fbf);
  opacity: 0.8;
}

/* ==========================================================================
   7. ABOUT US SECTION
   ========================================================================== */
.about {
  background-color: #f5f5f5;
  padding: 0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.about-text { flex: 1; }
.about-text h2 {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 600;
  margin-bottom: 20px;
}
.about-text h2 span { display: block; }
.about-text p {
  font-size: var(--fs-body);
  color: #000;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
}

.about-image {
  flex: 1.2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: clamp(500px, 55vw, 600px);
  height: auto;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.about-image:hover img { transform: scale(1.04); }

.animate-fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about.visible .animate-fade-in-left,
.about.visible .animate-fade-in-right {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   8. OFFERINGS CAROUSEL SECTION
   ========================================================================== */
.offering {
  background: var(--gradient-main);
  text-align: center;
  color: #fff;
}

.offering h2 { font-size: var(--fs-h2); }
.offering p {
  width: 70%;
  margin: auto;
  padding-top: 12px;
}

.offering-head p { font-size: var(--fs-body); }

.slider {
  position: relative;
  overflow: hidden;
 margin-top: clamp(1.25rem, 0.81rem + 1.88vw, 2.5rem);
}

.track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.5s ease;
}

.card {
  flex: 0 0 calc(20% - 20px);
  background: transparent;
  text-align: center;
}

.card-img {
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  overflow: hidden;
}

.card h3 { margin-top: 10px; }

.card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.card:hover img { transform: scale(1.08); }
.card-text { margin-top: 10px; font-size: 14px; color: #fff; }

.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #333;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-btn:hover { background: #000; color: #fff; }

.dots {
  text-align: center;
  margin-top: 20px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  transition: 0.3s;
}

.dots span.active {
  background: #fff;
  transform: scale(1.3);
}

/* ==========================================================================
   9. VIDEO CTA BANNER SECTION
   ========================================================================== */
.video-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  max-width: 100% !important;
}

.overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.banner-content h2 {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* ==========================================================================
   10. SECURITY & HOTSPOT FEATURES SECTION
   ========================================================================== */

   /* ==========================================
   1. SECTION & MAIN CONTAINER
   ========================================== */

.security {
  padding: clamp(24px, 5vw, 60px) 0;
  background-color: #f5f5f5;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.security .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2.5vw, 24px);
  box-sizing: border-box;
}

/* Layout Wrapper */
.security-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
}

/* ==========================================
   2. LEFT SIDE: IMAGE & HOTSPOTS
   ========================================== */

.image-box {
  position: relative;
  flex: 1 1 clamp(190px, 24vw, 260px);
  max-width: 260px;
  margin: 0 auto;
  width: 100%;
  display: block;
}

.image-box .main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Hotspots */
.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(22px, 2.5vw, 28px);
  height: clamp(22px, 2.5vw, 28px);
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

/* Hotspot Coordinates */
.hotspot-hologram {
  top: 20%;
  left: 75%;
}

.hotspot-holo-code {
  top: 48%;
  left: 15%;
}

.hotspot-barcode {
  top: 65%;
  left: 75%;
}

/* Hotspot Pulsing Effects */
.hotspot .pulse-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #ff5fa2;
  animation: hotspotPulse 2s infinite ease-in-out;
}

.hotspot .hotspot-dot {
  position: absolute;
  inset: 3px;
  background: linear-gradient(45deg, #ff5fa2, #ffa05f);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 8px rgba(255, 95, 162, 0.8);
}

/* Hotspot Active / Hover States */
.hotspot:hover,
.hotspot.active {
  transform: translate(-50%, -50%) scale(1.25);
  background: linear-gradient(45deg, #ffa05f, #ff5fa2);
  box-shadow: 0 0 25px rgba(255, 160, 95, 0.9);
}

/* Tooltips */
.hotspot-tooltip {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #ffffff;
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 9999 !important;
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

.hotspot:hover .hotspot-tooltip,
.hotspot.active .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Animations */
@keyframes hotspotPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes pulseAnimation {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2.8); opacity: 0; }
}

/* ==========================================
   3. RIGHT SIDE: CONTENT & DYNAMIC CARDS
   ========================================== */

.security-content {
  flex: 1 1 clamp(280px, 50vw, 670px);
  max-width: 670px;
  width: 100%;
  box-sizing: border-box;
}

.section-title,
.security-content h2 {
  font-size: clamp(20px, 3.2vw, 36px);
  margin-bottom: clamp(8px, 1.5vw, 15px);
  line-height: 1.25;
  background: linear-gradient(45deg, #4facfe, #ff5fa2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-intro,
.security-content .main-text {
  margin-bottom: clamp(16px, 2vw, 25px);
  color: #555555;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.6;
}

/* 3D Flip/Dynamic Content Wrapper */
.dynamic-content {
  perspective: 1000px;
  position: relative;
  width: 100%;
  min-height: clamp(180px, 25vw, 250px);
  margin-bottom: clamp(14px, 2vw, 20px);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Content Panel Visibility Switching */
.content-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(6px);
}

.content-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.feature-title,
.content-item h3,
.content-item h4 {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: clamp(6px, 1vw, 8px);
  color: #000;
}

.feature-lead,
.content-item p {
  font-size: clamp(12px, 1.1vw, 15px);
  color: #555555;
  line-height: 1.6;
  margin-bottom: clamp(10px, 1.5vw, 14px);
}

/* ==========================================
   4. MAGNIFIER / ZOOM THUMBNAILS
   ========================================== */

.corner-img-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.zoom-container {
  width: clamp(130px, 18vw, 200px);
  height: clamp(80px, 11vw, 120px);
  border: 1px solid #e2e8f0;
  border-radius: clamp(6px, 1vw, 8px);
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.corner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-container:hover .corner-img {
  transform: scale(1.6);
}

/* ==========================================
   5. BUTTON & EXTRA FEATURES GRID
   ========================================== */

.btn-gradient {
  display: inline-block;
  padding: clamp(8px, 1.2vw, 12px) clamp(20px, 2.5vw, 30px);
  border-radius: 30px;
  background: linear-gradient(90deg, #4facfe, #ff5fa2);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 162, 0.4);
}

.features-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 40px;
}

.feature-item {
  flex: 0 0 calc(50% - 20px);
}

.feature-item h4 {
  font-size: var(--fs-h4, 18px);
  margin-bottom: 6px;
  background: linear-gradient(45deg, #4facfe, #ff5fa2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-item p {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
}

/* ==========================================================================
   11. BARCODE POPUP MODAL
   ========================================================================== */
.barcode-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.barcode-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.barcode-modal-content {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  max-width: 360px;
  width: 88%;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.barcode-modal-overlay.active .barcode-modal-content {
  transform: scale(1) translateY(0);
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #64748b;
  background-color: #f1f5f9;
  border-radius: 50%;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 100;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-modal:hover {
  color: #0f172a;
  background-color: #e2e8f0;
  transform: scale(1.1) rotate(90deg);
}

.popup-barcode-img {
  width: 100%;
  max-width: 180px;
  max-height: 280px;
  object-fit: contain;
  height: auto;
  margin: 14px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.content-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.content-item.active {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: scale(1) !important;
}
/* ==========================================================================
   12. LOGO MARQUEE / CAROUSEL SECTION
   ========================================================================== */
.logo-loop-sec {
  background: #eee;
  overflow: hidden;
  padding-top: 0;
}

.logo-title {
  text-align: center;
  font-size: var(--fs-h2);
  margin-bottom: clamp(20px, 3vw, 30px);
  background-image: linear-gradient(79deg, #0087cb 0%, #e35ba1 49%, #ffde8f 100%);
  color: #fff;
}

.logo-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0; 
  height: 100px; 
  display: flex; 
  align-items: center;
}

.logo-track {
  display: flex;
  gap: 20px;
  padding: 0 60px;
}

.logo-item {
  flex: 0 0 calc(100% / 10);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item.active {
  transform: scale(1.2);
  opacity: 1;
}

.logo-item img {
  max-width: 100%; 
  max-height: 70px; 
  object-fit: contain;
}

.logo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.logo-arrow.left { left: 15px; background-image: url(./images/left-arw.webp); }
.logo-arrow.right { right: 15px; background-image: url(./images/right-arw.webp); }

/* ==========================================================================
   13. INDUSTRY CAROUSEL SECTION
   ========================================================================== */
.industry-carousel {
  background: #f8f9fb;
  text-align: center;
}

.industry-header h2 { font-size: var(--fs-h2); margin: 15px; }
.industry-header p { font-size: clamp(15px, 1.7vw, 18px); }

.industry-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.industry-viewport {
  overflow: hidden;
  width: 100%;
}

.industry-track {
  display: flex;
  gap: 20px;
  width: max-content;
  transition: transform 0.5s ease;
  margin: clamp(20px, 4vw, 30px) 0;
}

.industry-card {
  min-width: clamp(180px, 16vw, 240px);
  flex-shrink: 0;
}

.industry-card img {
  width: 100%;
  height: clamp(140px, 16vw, 180px);
  object-fit: cover;
  border-radius: 16px;
}

.industry-card p {
  margin-top: 10px;
  font-size: clamp(13px, 1vw, 16px);
}

.industry-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #eee;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.industry-btn.prev { left: 12px; }
.industry-btn.next { right: 12px; }

.industry-dots { margin-top: 20px; }
.industry-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 4px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.industry-dots .active { background: #333; }

/* ==========================================================================
   14. INTERACTIVE MAP SECTION
   ========================================================================== */
.map-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
  top: 0;
  transform: translateX(60px);
}

.india-map {
  width: clamp(300px, 26vw, 1000px);
  height: auto;
  display: block;
}

.pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #ff3b3b;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  transition: transform 0.2s;
  animation: pulse 1.6s infinite;
}
/* Base Pin Styling */
.pin {
  position: absolute;
  width: clamp(14px, 2vw, 22px);
  height: clamp(14px, 2vw, 22px);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

.pin:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Specific City Coordinates (Fluid Clamp Positioning) */
.pin[data-city="mumbai"] {
  top: clamp(50%, 58%, 62%);
  left: clamp(10%, 14%, 18%);
}
.map-container {
  position: relative;
  width: 100%;
}

/* Map Popup Card */
#popup {
  position: absolute;
  width: clamp(190px, 45vw, 240px);
  padding: clamp(10px, 2.5vw, 16px);
  background: rgba(15, 23, 42, 0.92); /* Dark slate theme background */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: clamp(8px, 1.5vw, 14px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  box-sizing: border-box;
}

/* Active State */
#popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Close Button (Top Right) */
#popup .close {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #a0aec0;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

#popup .close:hover {
  color: #ff5fa2;
}
.popup active{left: 115.641px;}

/* Popup Header */
#popup-title {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  margin: 0 16px 6px 0; /* Margin right keeps text clear of close button */
  line-height: 1.3;
  background: linear-gradient(45deg, #4facfe, #ff5fa2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Popup Content Text */
#popup-text {
  font-size: clamp(11px, 1.1vw, 13px);
  color: #cbd5e1;
  line-height: 1.45;
  margin: 0 0 clamp(8px, 1.5vw, 12px) 0;
}

/* Action Button */
#popup #enterBtn {
  display: block;
  width: 100%;
  padding: clamp(6px, 1vw, 8px) 0;
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, #4facfe, #ff5fa2);
  color: #ffffff;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#popup #enterBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 95, 162, 0.4);
}

.pin[data-city="kolkata"] {
  top: clamp(46%, 52%, 56%);
  left: clamp(40%, 40%, 50%);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}
.popup {
  position: absolute;
  display: none;
  background: #000;
  border: 1px solid #e0e0e0;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 10;
  width: 220px;
}

.popup.active { display: block; }
.popup h4 { margin-bottom: 10px; font-size: 16px; }
.popup p { font-size: 12px; line-height: 1.5; }
.popup button {
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #5f7cff, #ff5fa2);
  color: #fff;
  cursor: pointer;
}

.popup .close {
  float: right;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #666;
}

.popup .close:hover { color: #000; }

/* ==========================================================================
   15. FOOTER & FLOATING CTA
   ========================================================================== */
.footer-main {
  background: var(--gradient-main);
  padding: 60px 0 20px;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: clamp(15px, 3vw, 30px);
}

.footer-logo { width: clamp(120px, 90%, 220px); }

.footer-col h4 {
  margin-bottom: 15px;
  font-size: clamp(16px, 1.2vw, 14px);
}

.footer-col a {
  display: block;
  color: #fff;
  font-size: clamp(16px, 1.2vw, 14px);
  margin-bottom: 8px;
  text-decoration: none;
  opacity: 0.9;
}

.footer-col a:hover { opacity: 1; }

.footer-journey {
  background: linear-gradient(79deg, #0087cb 0%, #e35ba1 49%, #ffde8f 100%);
  color: #fff;
}

.journey-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 60px);
}

.journey-left h2 {
  font-size: var(--fs-h3);
  margin-bottom: clamp(15px, 2vw, 25px);
}

.journey-list {
  list-style: none;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.6;
}

.journey-list li {
  font-size: clamp(15px, 1.6vw, 16px);
  display: flex;
  line-height: 1.7rem;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: clamp(8px, 2vw, 15px);
}

.journey-list img {
  width: clamp(18px, 0.4vw, 24px);
  margin-top: clamp(4px, 0.6vw, 8px);
}

.journey-list a { text-decoration: none; color: #fff; }

.footer-bottom {
  position: relative;
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.8;
}

.footer-bottom::after {
  content: "";
  position: absolute;
  left: 50px;
  bottom: 30px;
  transform: translateX(50px);
  width: 86%;
  height: 1px;
  background: var(--divider-color);
  opacity: 0.4;
}

/* Floating Call Action Button */
.call-btn {
  z-index: 99;
  position: fixed;
  bottom: clamp(20px, 5vw, 50px);
  right: clamp(20px, 5vw, 50px);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.call-btn img {
  width: clamp(40px, 1vw, 75px);
  height: auto;
  object-fit: contain;
}
@keyframes hotspotPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.45); opacity: 0.25; }
  100% { transform: scale(1); opacity: 0.8; }
}

.hotspot:hover .hotspot-tooltip {
  opacity: 1 !important;
}

/* Fix floating phone call widget z-index issue */
.phone-icon, .call-float-btn {
  z-index: 99 !important;
  bottom: 15px !important;
  right: 15px !important;
}

/* ==========================================================================
   16. RESPONSIVE BREAKPOINTS (CONSOLIDATED MEDIA QUERIES)
   ========================================================================== */

/* Laptop & Tablet Displays (Max-Width: 992px) */
@media (max-width: 992px) {
  body { cursor: auto; }
  .logo-cursor { display: none; }
  .security-wrap {flex-direction: column; align-items: center; gap: 35px; text-align: center;}
  .image-box { flex: 0 0 auto; width: 100%; max-width: 320px; margin: 0 auto;}
  .security-content {width: 100%; max-width: 100%;}
  .dynamic-content { grid-template-columns: 1fr; }
  .card { flex: 0 0 calc(33.33% - 20px); }
  .corner-img-wrap { justify-content: flex-end; }
  .features-flex { gap: 15px; }
  .feature-item h4 { font-size: 1rem; }
  .feature-item p { font-size: 0.88rem; }
  .hero-content,.about-container,.security-wrap,.footer-journey,.footer-main {padding: var(--py-md);}
  .security-wrap {flex-direction: row;flex-wrap: nowrap;}
  .security {padding: 0;}
  .pin-mob {left: 16%!important;}
  .pin-mob-b {left: 55%!important;}
  .logo-loop-sec {padding: 0;}
}
/* Mid-Size Tablets (Max-Width: 900px) */
@media (max-width: 900px) {
  .journey-wrap { flex-direction: row; text-align: center; }
  /* .footer-grid { grid-template-columns: 1fr 1fr; text-align: center; } */
  .journey-list li {text-align: left;}
  .pin-mob-b {left: 60% !important;}
  .pin-mob {left: 20% !important;}
}
  /* Portrait Tablets (Max-Width: 768px) */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .header { padding: 20px 0; }
  .menu-btn { display: none !important; }
  .hc-mm-toggle {
    display: inline-flex;
    position: fixed;
    right: clamp(20px, 8vw, 60px);
  }
  .hc-mm-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
    z-index: 1200;
  }
  .hc-mm-panel {
    display: block;
    position: fixed;
    right: 14px;
    height: 65%;
    top: clamp(92px, 10vh, 145px);
    bottom: clamp(68px, 10vh, 125px);
    width: min(86vw, 335px);
    border-radius: 78px 28px 28px 78px;
    background: rgba(25, 10, 50, 0.66);
    backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 90, 165, 0.24);
    transform: translateX(115%);
    opacity: 0;
    transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 220ms ease;
    z-index: 1201;
    overflow: hidden;
  }
  body.hc-mm-open .hc-mm-backdrop { opacity: 1; pointer-events: auto; }
  body.hc-mm-open .hc-mm-panel { transform: translateX(0); opacity: 1; }
  .hero h1 {font-size: clamp(24px, 4vw + 1rem, 28px); }
  .stats-container { flex-direction: row; gap: 30px; }
  .stat::after { display: none; }
  .about-container { flex-direction: column; text-align: center; }
  .about-text p { margin: 0 auto 20px; }
  .about-image { width: 100%; justify-content: center; }
  .video-banner { height: 400px; }
  .main-img { max-width: 220px; }
  .industry-btn { display: flex !important; width: 34px; height: 34px; }
  .industry-btn.prev { left: 8px; }
  .industry-btn.next { right: 8px; }
  .about-sec {padding: 0;}
  .hotspot-holo-code {left: 10%;}
  .hotspot-barcode {left: 50%;}
  .hotspot-hologram {left: 55%;}
  .logo-arrow {width: 30px;height: 30px;}
  .journey-list li {font-size: 13px;}
  .map-container {transform: translateX(25px);}
  .footer-main {padding-bottom: 20px;}
  .footer-bottom::after {left: 10px;}
}
/* Mobile Screens (Max-Width: 576px) */
@media (max-width: 576px) {
  .main-img { max-width: 250px; }
  .logo-item { flex: 0 0 calc(100% / 8); }
  .hotspot { width: 28px; height: 28px; }
  .zoom-container { width: 100px; height: 100px; }
  .features-flex {gap: 18px 0;}
  .feature-item {flex: 0 0 100%;}
  .corner-img-wrap {justify-content: center!important;}
  .dynamic-content {min-height: auto;}
  .stats-container {padding: var(--py-md);}
  .about-container {padding: 0;}
  .industry-btn {display: flex;align-items: center;justify-content: center;}
  .security-wrap {padding: 0;}
  .image-box {max-width: 230px;}
  .security-wrap {padding: var(--btn-gap-sm);}
  .security {padding: var(--px-md);}
  .zoom-container {width: 200px;}
  .hotspot-hologram {left: 80%;}
  .hotspot-holo-code {left: 15%;}
  .hotspot-barcode {left: 75%;}
  .journey-wrap {flex-direction: column;}
  .map-container {transform: translateX(90px);}
  .pin-mob {left: 15% !important;}
  .pin-mob-b {left: 42% !important;}
  .footer-grid {grid-template-columns: repeat(2, 2fr);}
  .container {width: 100%; padding: 0 20px;}
  .hero-title {font-size: 28px; }
}
@media (max-width: 500px) {
  .footer-grid {grid-template-columns: 1fr; gap: 15px; }
  .stats-container { display: grid; grid-template-columns: repeat(2, 1fr); }
  .card { flex: 0 0 100%; }
}
@media (max-width: 440px) {
  .hero-title {font-size: 22px !important;}
  p, li {font-size: 13px !important;}
  html, body {overflow-x: hidden !important;}  
  .security-wrap {flex-direction: row;flex-wrap: wrap; }
  .stats-container {padding: 30px 0;}
  .about{padding: var(--sm) 0;}
  .security {padding: 0;}
  .footer-journey {padding: var(--py-sm)!important;}
  .map-container {transform: translateX(0px);}
  .pin-mob {left: 20% !important; }
  .pin-mob-b {left: 60% !important;}
  .footer-grid {text-align: center;}
  .footer-bottom::after {left: -15px;}
  .industry-header {padding: 0 20px;}
  .security-wrap {gap: 15px;padding-bottom: 35px;}
  .pillars {padding: var(--py-sm)!important;}
  .pillars-content {gap: 0 0;}
  .gradient-underline-heading {padding-bottom: 0!important;}
  .vision-wrap {gap: 0!important;}
 }
  @media (max-width: 410px) { .vision-wrap {padding: var(--py-sm); }
.vision-wrap {gap: 0!important;}}
@media (max-width: 379px) {
  .hero { height: 70vh; }
  .hero h1 { font-size: 25px; margin-bottom: 10px; }
  .hero p { max-width: 400px; font-size: 14px; margin-bottom: 20px; }
  .main-img { max-width: 250px; height: 50vh; }
  .card { flex: 0 0 50%; }
  .map-container { transform: translateX(25px); }
  .hotspot { width: 32px; height: 32px; font-size: 0.95rem; line-height: 32px; }
  .security-content {padding: 0 5px;}
  .security-content h2 {font-size: 20px;margin-bottom: 10px;}
  .security-content .main-text {font-size: 13px;margin-bottom: 18px;}
  .zoom-container {width: 160px;height: 100px;}
  .barcode-modal-content {padding: 18px 16px;max-width: 290px;width: 92%;}
  .close-modal {top: 8px;right: 10px;width: 28px;height: 28px;font-size: 16px;}
  .popup-barcode-img {max-width: 140px;max-height: 200px;margin: 10px auto;}
  .security-wrap {text-align: center;}
  .corner-img-wrap {justify-content: center !important;}
  .image-box {display: flex!important;align-items: center;justify-content: center!important;}
  .pulse-ring {inset: -1px!important;}
  .hotspot-holo-code {top: 45%;left: 22%;}
  .journey-list li {text-align: left;}
  .pin-mob-b {left: 50%!important;}
  .pin-mob {top: 58%!important;left: 16%!important;}
  .hero-content {padding: var(--py-sm);}
  .btn {padding: 10px 15px;font-size: 13px;gap: 5px;}
  .hero h1 {font-size: 24px;}
  .stats-container {padding: var(--py-sm);}
  .about-container {padding: var(--py-sm);}
  .security-wrap {flex-direction: column-reverse;flex-wrap: nowrap;}
  .hotspot-holo-code {left: 15%;}
  .footer-journey {padding: var(--py-sm);}
  .map-container {transform: translateX(-12px);}
  .pin-mob-b {left: 70% !important;}
  .pin-mob {left: 20% !important;}
  .logo-loop-sec {padding: 0;}
  .footer-main {padding: var(--py-sm);}
  .footer-grid {padding: 0;}
  .footer-bottom::after {left: -40px;}
  #popup.active {transform: translateX(-25%);}
  body.hc-mm-open .hc-mm-panel {transform: translateX(-30%);width: 75%;}
  .hc-mm-nav {margin-top: 35px;}
      .footer-grid {grid-template-columns: 1fr; gap: 15px;}
}
@media screen and (max-width: 350px) {
  #typed-text {font-size: 0.9em;}
}
@media screen and (max-width: 332px) {
  .pin-mob-b {left: 75%;}
  .pin-mob {left: 22%;}
}