/* ============================================================
   NEXTT GENERATION – style.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:     #0a3aff;          /* vivid blue */
  --primary-dk:  #0026c5;
  --accent:      #0a3aff;
  --cyan:        #00c8ff;
  --dark-bg:     #04091e;          /* hero / nav dark */
  --darker:      #020614;
  --mid-dark:    #0d1b3e;
  --light-bg:    #f4f7ff;
  --white:       #ffffff;
  --text-main:   #1a1a2e;
  --text-muted:  #5e6b8a;
  --border:      #dde3f0;
  --radius:      12px;
  --shadow:      0 8px 32px rgba(10,58,255,0.10);
  --font:        'Inter', sans-serif;
  --transition:  0.3s ease;
}

/* ── Reset / Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  background: #ffffff;        /* pure white canvas background outside hero banner card */
  overflow-x: hidden;
  max-width: 100%;
  padding-top: 72px;          /* offset for fixed navbar */
  padding-bottom: 80px;       /* offset for fixed bottom footer */
}

a { text-decoration: none; transition: color var(--transition); }

img { max-width: 100%; }

/* ── Utility ───────────────────────────────────────────────── */
.text-accent { color: var(--primary) !important; }
.text-cyan   { color: var(--cyan) !important; }

/* ============================================================
   NAVBAR
============================================================ */
#mainNavbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff !important;
  padding: 10px 0;
  transition: box-shadow 0.3s, background 0.3s;
  z-index: 1000;
}

#mainNavbar.scrolled {
  box-shadow: 0 4px 20px rgba(10,58,255,0.12) !important;
}

/* Logo box */
.logo-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #001fa3 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-ng {
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
}
.brand-logo-row {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 2px;
  line-height: 1;
}
.brand-sub {
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: justify;
  text-align-last: justify;
  display: block;
  width: 100%;
  line-height: 1;
  margin-top: 2px;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.brand-tagline {
  font-size: 0.44rem;
  color: var(--text-muted);
  text-align: justify;
  text-align-last: justify;
  display: block;
  width: 100%;
  line-height: 1;
  margin-top: 1px;
}
.brand-favicon-img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary);
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(10,58,255,0.1);
  background: #fff;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-main) !important;
  padding: 6px 10px !important;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(10,58,255,0.06);
}

/* Enquire button */
.btn-enquire {
  background: linear-gradient(135deg, var(--primary) 0%, #002fff 100%);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(10,58,255,0.30);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,58,255,0.45);
  color: #fff !important;
}

/* Cart button */
.btn-cart {
  background: #fff;
  color: var(--primary) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 10px 22px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(10,58,255,0.15);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-cart:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,58,255,0.35);
}

/* Mobile Cart Button */
.btn-cart-mobile {
  padding: 8px 12px !important;
  font-size: 1rem !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(10,58,255,0.15) !important;
  min-width: 44px;
  justify-content: center;
}

.btn-cart-mobile i {
  margin: 0 !important;
}

/* Mobile Enquire Button */
.btn-enquire-mobile {
  padding: 8px 14px !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(10,58,255,0.2) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Custom Hamburger Button ─────────────────────────────── */
.navbar-toggler-custom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(10,58,255,0.20);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.navbar-toggler-custom:hover {
  background: rgba(10,58,255,0.06);
  border-color: var(--primary);
}

.navbar-toggler-custom span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.68,-0.55,0.265,1.55),
              opacity 0.25s,
              width 0.25s;
}

/* Animate to X when drawer is open */
.navbar-toggler-custom.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler-custom.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.navbar-toggler-custom.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Left-Side Offcanvas Drawer ──────────────────────────── */
#mobileDrawer {
  width: 300px;
  border-right: none;
  box-shadow: 8px 0 40px rgba(4,9,30,0.30);
  background: linear-gradient(160deg, #04091e 0%, #0d1b3e 100%);
}

/* Offcanvas slide transition override — Bootstrap handles the
   transform; we just ensure the backdrop fades smoothly */
.offcanvas-backdrop {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background-color: rgba(4,9,30,0.55) !important;
}

/* Drawer Header */
.drawer-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header .brand-name { color: #fff; }
.drawer-header .brand-sub  { color: rgba(255,255,255,0.50); }

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.drawer-close-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

/* Drawer Body */
.drawer-body {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 80px);
  overflow-y: auto;
}

/* Drawer nav list */
.drawer-nav {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.drawer-nav li {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Stagger each nav item when drawer opens */
#mobileDrawer.show .drawer-nav li:nth-child(1) { opacity:1; transform:translateX(0); transition-delay: 0.05s; }
#mobileDrawer.show .drawer-nav li:nth-child(2) { opacity:1; transform:translateX(0); transition-delay: 0.10s; }
#mobileDrawer.show .drawer-nav li:nth-child(3) { opacity:1; transform:translateX(0); transition-delay: 0.15s; }
#mobileDrawer.show .drawer-nav li:nth-child(4) { opacity:1; transform:translateX(0); transition-delay: 0.20s; }
#mobileDrawer.show .drawer-nav li:nth-child(5) { opacity:1; transform:translateX(0); transition-delay: 0.25s; }
#mobileDrawer.show .drawer-nav li:nth-child(6) { opacity:1; transform:translateX(0); transition-delay: 0.30s; }
#mobileDrawer.show .drawer-nav li:nth-child(7) { opacity:1; transform:translateX(0); transition-delay: 0.35s; }

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.70);
  border-left: 3px solid transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s, padding-left 0.25s;
}

.drawer-nav a i {
  width: 18px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--primary);
  transition: color 0.25s;
}

.drawer-nav a:hover,
.drawer-nav a.active-link {
  color: #fff;
  background: rgba(10,58,255,0.14);
  border-left-color: var(--primary);
  padding-left: 28px;
}

.drawer-nav a:hover i { color: var(--cyan); }

/* Drawer footer area */
.drawer-footer {
  padding: 20px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.drawer-socials .social-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ============================================================
   HERO BANNER WRAP  –  carousel card with 10px side margin + curved edges
============================================================ */

/* White sections need explicit background since body is now dark */
.about-kit-section,
.features-section,
.about-company-section,
.gallery-section { background: #fff; }

/* Outer shell: floating card layout with curved corners on all sides */
.hero-banner-wrap {
  margin: 15px 15px 24px;         /* 15px top + sides, 24px bottom space */
  border-radius: 24px;            /* curved corners on all sides */
  overflow: hidden;
  box-shadow:
    0 -2px 0 rgba(255,255,255,0.05),
    0 24px 64px rgba(4,9,30,0.80);
  position: relative;
  z-index: 1;
}

/* ── Hero section itself ── */
.hero-section {
  background: linear-gradient(135deg, #04091e 0%, #0d1b3e 55%, #091440 100%);
  height: 520px;                  /* fixed height for premium banner! */
  position: relative;
  overflow: hidden;               /* clips glow + content to card shape */
  padding: 0;
}

/* ── Hero Carousel Specific Styles ── */
.carousel-inner, .carousel-item {
  height: 100%;
}

.carousel-item {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* smooth scrolling transition */
}

/* Centering container within carousel items */
.carousel-item .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image slide styles */
.hero-slide-img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: #04091e;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay gradient for banners to look premium and match theme */
.hero-slide-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 9, 30, 0.4) 0%, rgba(9, 20, 64, 0.6) 100%);
  pointer-events: none;
}

/* Custom Prev/Next Arrows inside Carousel */
.hero-carousel-ctrl {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
  transition: background 0.3s, border-color 0.3s, opacity 0.3s, transform 0.3s;
}

.hero-carousel-ctrl i {
  transition: transform 0.2s;
}

.carousel:hover .hero-carousel-ctrl {
  opacity: 1;
}

.hero-carousel-ctrl.carousel-control-prev {
  left: 24px;
  transform: translateY(-50%) translateX(-10px);
}
.hero-carousel-ctrl.carousel-control-next {
  right: 24px;
  transform: translateY(-50%) translateX(10px);
}

.carousel:hover .hero-carousel-ctrl.carousel-control-prev {
  transform: translateY(-50%) translateX(0);
}
.carousel:hover .hero-carousel-ctrl.carousel-control-next {
  transform: translateY(-50%) translateX(0);
}

.hero-carousel-ctrl:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.hero-carousel-ctrl.carousel-control-prev:hover i {
  transform: translateX(-2px);
}
.hero-carousel-ctrl.carousel-control-next:hover i {
  transform: translateX(2px);
}

/* Indicators Overrides */
.carousel-indicators.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  gap: 8px;
  z-index: 15;
}

.carousel-indicators.hero-dots button.dot {
  text-indent: 0 !important;
  border-top: none !important;
  border-bottom: none !important;
  box-sizing: content-box !important;
  opacity: 1;
}

.carousel-indicators.hero-dots button.dot:not(.active) {
  background: rgba(255, 255, 255, 0.22) !important;
}

.carousel-indicators.hero-dots button.dot.active {
  background: var(--primary) !important;
}

/* Radial glow background */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 60%, rgba(10,58,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(0,200,255,0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Centre wrapper */
.hero-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-pre-title {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  display: block;
}

.hero-title .text-accent { display: block; }

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  color: #ccd6ff;
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature badges row */
.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px auto;
}

.hero-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 90px;
}

.feat-icon-wrap {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.25rem;
  background: rgba(255,255,255,0.05);
  transition: border-color 0.3s, background 0.3s;
}

.feat-icon-wrap:hover {
  border-color: var(--cyan);
  background: rgba(0,200,255,0.10);
}

.hero-feat-item p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

/* CTA area */
.hero-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #002fff 100%);
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(10,58,255,0.40);
  display: inline-flex;
  align-items: center;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,58,255,0.55);
}

/* keep secondary defined but not used in hero now */
.btn-hero-secondary {
  background: transparent;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  padding: 12px 28px;
  transition: background 0.3s, border-color 0.3s;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.70);
}

/* Dots */
.hero-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.dot {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.22);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.dot.active { background: var(--primary); width: 42px; }

/* ============================================================
   IDEAL FOR  –  full-width, single-line horizontal scroll
   Sits flush below the carousel card, spans full viewport
============================================================ */
/*.ideal-section margins synced with new 15px margins */
.ideal-section {
  background: #fff;
  box-shadow: 0 4px 24px rgba(10,58,255,0.06);
  border-bottom: 1px solid var(--border);
  /* Full-width – overrides any parent margin from hero-banner-wrap */
  width: 100vw;
  margin-left: calc(-15px);     /* cancel the 15px side margin from wrap */
  margin-right: calc(-15px);
  position: relative;
  left: 0;
  overflow: hidden;
  height: 90px;                 /* Fixed height for marquee tape strip */
  display: flex;
  align-items: center;
}

/* Floating left badge label */
.ideal-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #f0f3ff;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0 24px;
  border-right: 2px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  z-index: 10;
  box-shadow: 6px 0 24px rgba(4,9,30,0.04);
}

/* Scrolling Marquee container offset to start after left label */
.ideal-marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 140px;          /* Offset so elements slide from under label */
  position: relative;
}

/* Right-side shadow gradient fading out elements as they approach screen edge */
.ideal-section::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, #ffffff);
  z-index: 5;
  pointer-events: none;
}

/* Continuous track scrolling from Left to Right */
.ideal-track {
  display: flex;
  width: max-content;
  animation: idealMarquee 22s linear infinite;
  gap: 0;
}

@keyframes idealMarquee {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Interactivity: pause continuous scroll on hover */
.ideal-track:hover {
  animation-play-state: paused;
}

/* Premium ribbon ticker cards with icon ABOVE text */
.ideal-item {
  display: flex;
  flex-direction: column;       /* Move icon above the text */
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 32px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
  text-align: center;
  min-width: 220px;
}

.ideal-item:hover {
  background: #f0f3ff;
}

.ideal-item i {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.25s;
}

.ideal-item:hover i {
  transform: translateY(-2px);
}

.ideal-item span {
  font-size: 0.7rem;
  font-weight: 750;
  color: var(--text-main);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTION TYPOGRAPHY HELPERS
============================================================ */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-main);
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  border-radius: 4px;
  margin: 12px auto 0;
}

.section-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.btn-know-more {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px;
  padding: 10px 22px;
  border-width: 2px;
  transition: all 0.3s;
}

/* ============================================================
   ABOUT KIT SECTION
============================================================ */
.about-kit-section { background: #fff; }

.product-view-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-view-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-view-img {
  height: 140px;
  background: #eef1fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  gap: 6px;
  color: #aab3cc;
  overflow: hidden;
}

.product-view-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.view-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-align: center;
  padding: 8px 4px;
  margin: 0;
  background: #fff;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

/* ============================================================
   KEY FEATURES SECTION
============================================================ */
.features-section {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px 22px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(10,58,255,0.12);
  border-color: var(--primary);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(10,58,255,0.10) 0%, rgba(0,200,255,0.10) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--primary) 0%, #002fff 100%);
  color: #fff;
}

.feature-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   APPLICATIONS SECTION  –  9:16 portrait cards, horizontal scroll
============================================================ */
.applications-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.applications-section .section-heading { color: #fff !important; }

/* Scroll hint (mobile only) */
.app-scroll-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* ============================================================
   REUSABLE LOOP MARQUEE SYSTEM
============================================================ */
.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

/* Gradient fade overlays for light background sections */
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Specific overlays for dark sections (Applications) */
.applications-marquee::before {
  background: linear-gradient(to right, var(--dark-bg) 0%, rgba(4, 9, 30, 0) 100%) !important;
}
.applications-marquee::after {
  background: linear-gradient(to left, var(--dark-bg) 0%, rgba(4, 9, 30, 0) 100%) !important;
}

/* Column constraint overrides for narrow marquees */
.column-marquee {
  width: 100% !important;
  max-width: 100% !important;
  padding: 5px 0 !important;
}

.column-marquee::before,
.column-marquee::after {
  width: 45px !important; /* narrow overlay for columns */
}

/* Continuous scrolling track */
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
}

/* Hover-pause state */
.marquee-track:hover {
  animation-play-state: paused !important;
}

/* Kinetic Scrolling Keyframes */
@keyframes marqueeScrollRTL {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marqueeScrollLTR {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Speed / Duration Utility classes */
.duration-22s { animation: marqueeScrollRTL 22s linear infinite; }
.duration-25s { animation: marqueeScrollRTL 25s linear infinite; }
.duration-28s { animation: marqueeScrollRTL 28s linear infinite; }
.duration-30s { animation: marqueeScrollRTL 30s linear infinite; }

.marquee-track.direction-reverse {
  animation-name: marqueeScrollLTR;
}

/* Specific width locks for cards to prevent wrapping/distortions */
.marquee-item-feature {
  width: 220px;
  flex-shrink: 0;
  padding: 10px 8px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.marquee-item-app {
  width: 300px;
  flex-shrink: 0;
  padding: 12px 10px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.marquee-item-stat {
  width: 175px;
  flex-shrink: 0;
  padding: 8px 6px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Card overrides to work seamlessly in flex marquee */
.marquee-item-feature .feature-card,
.marquee-item-app .app-portrait-card,
.marquee-item-stat .stat-card {
  width: 100% !important;
  margin: 0 !important;
}

/* ── Landscape card shell ── */
.app-portrait-card {
  flex-shrink: 0;
  width: 280px;          /* card width  → height = 280 * 9/16 ≈ 157.5px */
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(4,9,30,0.45);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s;
  cursor: pointer;
}

.app-portrait-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(10,58,255,0.35);
}

/* ── 16:9 image box ── */
.app-portrait-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;      /* enforce 16:9 landscape ratio */
  overflow: hidden;
  background: linear-gradient(160deg, #0d1b3e 0%, #1a2a5e 100%);
  flex-shrink: 0;
}

/* Actual image – covers the whole box */
.app-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.app-portrait-card:hover .app-portrait-img {
  transform: scale(1.07);
}

/* Fallback when image is missing */
.app-portrait-fallback {
  display: none;             /* shown via JS onerror */
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.30);
  font-size: 0.65rem;
  text-align: center;
  padding: 20px;
}

/* Gradient shine overlay on image */
.app-portrait-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,58,255,0.50) 0%,
    rgba(10,58,255,0.10) 40%,
    transparent 70%
  );
  pointer-events: none;
  transition: opacity 0.35s;
}

.app-portrait-card:hover .app-portrait-inner::after {
  opacity: 0.75;
}

/* ── Label bar below image ── */
.app-portrait-label {
  background: #0d1b3e;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.app-portrait-label i {
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
}

.app-portrait-label span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ============================================================
   ABOUT COMPANY / STATS
============================================================ */
.about-company-section { background: #fff; }

.stat-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 12px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(10,58,255,0.08) 0%, rgba(0,200,255,0.08) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 auto 12px;
}

.stat-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.3;
}

.stat-sub {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   GALLERY SECTION
============================================================ */
.gallery-section { background: var(--light-bg); }

.gallery-placeholder {
  background: #e8ecf5;
  border: 2px dashed #c0c8e0;
  border-radius: var(--radius);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}

.gallery-placeholder:hover {
  border-color: var(--primary);
  background: #eef1fb;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--mid-dark) 100%);
}

.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  height: 100%;
}

.contact-info-card h4 { color: #fff; font-weight: 700; }

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.contact-info-item i { font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }

.contact-form { background: #fff; border-radius: 16px; padding: 32px; box-shadow: var(--shadow); }

.contact-input {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text-main);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,58,255,0.10);
  outline: none;
}

/* ============================================================
   FOOTER
============================================================ */
.footer-section {
  background: #020614;
  color: rgba(255,255,255,0.70);
  position: relative;
}

/* Footer brand */
.logo-box-sm {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #001fa3 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-ng-sm { color: #fff; font-weight: 900; font-size: 0.9rem; letter-spacing: -1px; }

.footer-brand .brand-name {
  color: #fff;
}
.footer-brand .brand-sub {
  color: rgba(255, 255, 255, 0.55);
}

.footer-desc { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.55); }

/* Social icons */
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.70);
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s;
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Footer links */
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 1rem;
}

.footer-links a:hover { color: #fff; padding-left: 4px; }

/* Footer contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}

.footer-contact-list li i { font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
}

.footer-credit { color: rgba(255,255,255,0.40); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.whatsapp-float i { font-size: 1.3rem; }

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.60);
  color: #fff;
}

/* ============================================================
   SCROLL REVEAL – AOS overrides
============================================================ */
[data-aos] { will-change: transform, opacity; }

/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */

/* ── Desktop large (1400px+) ── */
@media (min-width: 1400px) {
  .hero-banner-wrap { margin: 15px 15px 24px; border-radius: 28px; }
  .ideal-section    { margin-left: -15px; margin-right: -15px; width: calc(100vw); }
}

/* ── Tablet (≤992px) ── */
@media (max-width: 991.98px) {
  .hero-banner-wrap  { margin: 12px 12px 20px; border-radius: 20px; }
  .ideal-section     { margin-left: -12px; margin-right: -12px; }
  .hero-section      { height: 480px; padding: 0; }
  .hero-center       { max-width: 620px; }
}

/* ── Mobile L (≤768px) ── */
@media (max-width: 767.98px) {
  .hero-banner-wrap  { margin: 10px 10px 16px; border-radius: 16px; }
  .ideal-section     { margin-left: -10px; margin-right: -10px; }
  
  /* Hero Carousel strict 16:9 Aspect Ratio */
  .hero-section      { height: auto !important; aspect-ratio: 16 / 9 !important; padding: 0 !important; }
  .hero-center       { max-width: 100%; }
  
  /* Hide details to fit the widescreen aspect ratio beautifully */
  .hero-section .hero-desc,
  .hero-section .hero-features { display: none !important; }
  
  /* Compact Slide 1 layout */
  .hero-section .hero-title { font-size: clamp(1rem, 4.5vw, 1.5rem) !important; margin-bottom: 6px !important; }
  .hero-section .hero-subtitle { font-size: clamp(0.58rem, 2.5vw, 0.78rem) !important; margin-bottom: 8px !important; line-height: 1.4 !important; }
  .hero-section .hero-pre-title { font-size: 0.55rem !important; margin-bottom: 4px !important; letter-spacing: 2px !important; }
  .hero-section .btn-hero-primary { padding: 5px 12px !important; font-size: 0.68rem !important; border-radius: 6px !important; }
  .hero-section .hero-cta { margin-bottom: 0 !important; }
  /* Make the carousel arrow controls visible, circular, and perfectly sized on mobile view */
  .hero-carousel-ctrl {
    display: flex !important;
    opacity: 0.82 !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 0.75rem !important;
    background: rgba(4, 9, 30, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  .hero-carousel-ctrl.carousel-control-prev { left: 8px !important; transform: translateY(-50%) !important; }
  .hero-carousel-ctrl.carousel-control-next { right: 8px !important; transform: translateY(-50%) !important; }

  .brand-tagline       { display: none; }
  .whatsapp-float span { display: none; }
  
  /* Fixed sizing circular WhatsApp button closer to corner to prevent UI breaking */
  .whatsapp-float {
    width: 46px !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 50% !important;
    bottom: 20px !important;
    right: 20px !important;
    box-shadow: 0 4px 16px rgba(37,211,102,0.40) !important;
  }
  
  .contact-form        { padding: 20px; }
  .contact-info-card   { padding: 20px; }

  /* ── Mobile Horizontal Scrolling Cards ── */
  .mobile-scroll-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px !important;
    margin-bottom: 12px !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(10, 58, 255, 0.4) rgba(10, 58, 255, 0.05);
  }

  .mobile-scroll-row::-webkit-scrollbar {
    height: 6px;
    display: block !important;
  }

  .mobile-scroll-row::-webkit-scrollbar-track {
    background: rgba(10, 58, 255, 0.05);
    border-radius: 10px;
  }

  .mobile-scroll-row::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    border-radius: 10px;
  }

  .mobile-scroll-row > [class*="col-"] {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
  }

  /* Customized column/card widths on mobile scroll */
  .gallery-section .mobile-scroll-row > [class*="col-"] {
    width: 210px !important;
  }

  /* Product views responsive height override for 25% side-by-side layout */
  .product-view-img {
    height: 80px !important;
  }
}

/* ── Mobile S (≤576px) ── */
@media (max-width: 575.98px) {
  .hero-banner-wrap  { margin: 8px 8px 12px; border-radius: 14px; }
  .ideal-section     { margin-left: -8px; margin-right: -8px; }
  .hero-section      { height: auto !important; aspect-ratio: 16 / 9 !important; padding: 0 !important; }
  .hero-pre-title    { font-size: 0.70rem; letter-spacing: 3px; }
  .hero-features     { gap: 10px; margin: 24px auto; }
  .section-heading   { font-size: 1.3rem; }
  .app-portrait-card { width: 240px !important; }
}

/* ============================================================
   PRODUCT VIEW LIGHTBOX POPUP MODAL
============================================================ */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product-lightbox.show {
  opacity: 1;
  pointer-events: all;
}

/* Blur Backdrop */
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Lightbox Card Wrap */
.lightbox-card-wrap {
  position: relative;
  background: #020614; /* beautiful dark modal contrast */
  width: 90%;
  max-width: 800px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(4, 9, 30, 0.6);
  display: flex;
  flex-direction: column;
  z-index: 10;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-lightbox.show .lightbox-card-wrap {
  transform: scale(1);
}

/* Fullscreen / Resized layout */
.lightbox-card-wrap.fullscreen {
  width: 98vw !important;
  height: 96vh !important;
  max-width: 100% !important;
}

/* Header */
.lightbox-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 9, 30, 0.6);
}

.lightbox-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  margin: 0;
}

.lightbox-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ctrl-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
}

.ctrl-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.06);
}

.ctrl-btn.close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
}

/* Viewport Area */
.lightbox-viewport {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.lightbox-card-wrap.fullscreen .lightbox-viewport {
  height: calc(96vh - 160px) !important;
}

/* Zoom container and Active Image */
.lightbox-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-out;
  cursor: grab;
}

.lightbox-zoom-container:active {
  cursor: grabbing;
}

.lightbox-zoom-container img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 12px;
}

/* Thumbnails strip */
.lightbox-thumbs-wrap {
  padding: 16px 24px;
  background: rgba(4, 9, 30, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 16px;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lightbox-thumb {
  width: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
}

.lightbox-thumb.active {
  border-color: var(--primary);
  background: rgba(10, 58, 255, 0.12);
  transform: translateY(-4px);
}

.lightbox-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.lightbox-thumb span {
  font-size: 0.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.lightbox-thumb.active span {
  color: var(--cyan);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .lightbox-card-wrap {
    width: 95%;
  }
  .lightbox-viewport {
    height: 280px;
  }
  .lightbox-card-wrap.fullscreen .lightbox-viewport {
    height: calc(96vh - 150px) !important;
  }
}

/* ============================================================
   FLOATING GLASSMORPHIC VIEWPORT-FIXED BOTTOM DOCK
============================================================ */
.fixed-bottom-footer {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(10, 58, 255, 0.12);
  border-radius: 50px;
  z-index: 9999;
  padding: 10px 24px;
  box-shadow: 0 12px 40px rgba(10, 58, 255, 0.12);
  transition: all 0.3s ease;
}

.fixed-footer-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.fixed-footer-item {
  flex: 1;
  text-align: center;
}

.fixed-footer-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  text-decoration: none;
}

.fixed-footer-link i {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

/* Hover & Active states */
.fixed-footer-link:hover,
.fixed-footer-link.active {
  color: var(--primary) !important;
}

.fixed-footer-link:hover i {
  transform: translateY(-2px);
}

/* Page spacing buffer for fixed dock */
body {
  padding-bottom: 90px !important;
}

/* Elevate WhatsApp button to float cleanly above dock */
.whatsapp-float {
  bottom: 84px !important;
}

/* Mobile responsive adjustments for fixed dock */
@media (max-width: 576px) {
  .fixed-bottom-footer {
    bottom: 10px;
    width: 95%;
    padding: 8px 16px;
  }
  .fixed-footer-link {
    font-size: 0.6rem;
    gap: 2px;
  }
  .fixed-footer-link i {
    font-size: 1rem;
  }
  .whatsapp-float {
    bottom: 74px !important;
  }
}

/* ============================================================
   UNDER CONSTRUCTION LAYOUT
============================================================ */
.construction-section {
  min-height: calc(100vh - 162px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(10, 58, 255, 0.05) 0%, #ffffff 80%);
  padding: 40px 15px;
}

.construction-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 32px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(10, 58, 255, 0.08);
  border-top: 4px solid var(--primary);
  text-align: center;
}

.construction-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(10, 58, 255, 0.08) 0%, rgba(0, 200, 255, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin: 0 auto 24px;
  animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.03); box-shadow: 0 8px 24px rgba(10, 58, 255, 0.1); }
  100% { transform: translateY(0) scale(1); }
}

.construction-title {
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.construction-badge {
  background: rgba(10, 58, 255, 0.06);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(10, 58, 255, 0.1);
}

.construction-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-construction-home {
  background: linear-gradient(135deg, var(--primary) 0%, #002fff 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(10, 58, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-construction-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 58, 255, 0.45);
}

.btn-construction-secondary {
  background: #fff;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 12px 32px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(10, 58, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-construction-secondary:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 58, 255, 0.35);
}

.construction-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Active state for cart button */
.btn-cart.active,
.btn-cart-mobile.active {
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(10, 58, 255, 0.35);
}

/* Stretches carousel link containers to full viewport of slide */
.hero-slide-link-wrap {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}


/* ============================================================
   CLICKABLE CONTACT LINKS & CONFIRMATION MODAL
============================================================ */

/* Contact link styling */
.contact-link {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s, transform 0.2s;
  cursor: pointer;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: var(--primary);
  transform: translateX(2px);
}

.contact-link:hover::after {
  width: 100%;
}

/* Contact section specific - ensure visibility on dark background */
.contact-section .contact-link {
  color: #ffffff;
  font-weight: 600;
}

.contact-section .contact-link:hover {
  color: var(--cyan);
}

/* Footer contact links */
.footer-contact-list .contact-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.footer-contact-list .contact-link:hover {
  color: var(--cyan);
}

/* Social link styling */
.social-link {
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ============================================================
   CONFIRMATION MODAL
============================================================ */
.confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.confirmation-modal.show {
  display: flex;
  opacity: 1;
}

.confirmation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 30, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.confirmation-card {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px 32px;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(10, 58, 255, 0.25);
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirmation-modal.show .confirmation-card {
  transform: scale(1);
}

.confirmation-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(10, 58, 255, 0.10) 0%, rgba(0, 200, 255, 0.10) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(10, 58, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(10, 58, 255, 0);
  }
}

.confirmation-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.2;
}

.confirmation-message {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-confirm-cancel,
.btn-confirm-proceed {
  flex: 1;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-confirm-cancel {
  background: #f0f3ff;
  color: var(--text-main);
  border: 2px solid var(--border);
}

.btn-confirm-cancel:hover {
  background: #e8ecf5;
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn-confirm-proceed {
  background: linear-gradient(135deg, var(--primary) 0%, #002fff 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(10, 58, 255, 0.30);
}

.btn-confirm-proceed:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 58, 255, 0.45);
}

/* Mobile responsive */
@media (max-width: 575.98px) {
  .confirmation-card {
    padding: 32px 24px 24px;
    max-width: 95%;
  }

  .confirmation-icon-wrap {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .confirmation-title {
    font-size: 1.3rem;
  }

  .confirmation-message {
    font-size: 0.88rem;
  }

  .confirmation-actions {
    flex-direction: column;
  }

  .btn-confirm-cancel,
  .btn-confirm-proceed {
    width: 100%;
  }
}


/* ============================================================
   WHATSAPP CONFIRMATION MODAL
============================================================ */
.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-modal.show {
  display: flex;
  opacity: 1;
}

.whatsapp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 30, 0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.whatsapp-card {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: 24px;
  max-width: 520px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(37, 211, 102, 0.30);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-modal.show .whatsapp-card {
  transform: scale(1);
}

/* Header */
.whatsapp-header {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 24px 24px 0 0;
  position: relative;
}

.whatsapp-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.whatsapp-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.whatsapp-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 4px 0 0;
  line-height: 1.3;
}

.whatsapp-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.whatsapp-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* Contact Info */
.whatsapp-contact-info {
  background: #f0f9f5;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #e0f2ea;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-info-row i {
  width: 20px;
  text-align: center;
  color: #25d366;
  font-size: 0.95rem;
}

/* Message Preview */
.whatsapp-message-preview {
  padding: 20px 24px;
  background: #fff;
}

.preview-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.preview-label i {
  color: #25d366;
}

.message-bubble {
  background: #dcf8c6;
  border-radius: 12px 12px 12px 2px;
  padding: 14px 16px;
  font-size: 0.92rem;
  color: #303030;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 8px;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.message-bubble::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #dcf8c6 transparent;
}

.preview-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.preview-hint i {
  color: #25d366;
}

/* Message Edit */
.whatsapp-message-edit {
  padding: 0 24px 24px;
  background: #fff;
}

.edit-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.edit-label i {
  color: #25d366;
}

.whatsapp-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0f2ea;
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: var(--font);
  color: var(--text-main);
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafffe;
}

.whatsapp-textarea:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.10);
  background: #fff;
}

.char-counter {
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.char-counter span {
  font-weight: 700;
  color: #25d366;
}

/* Action Buttons */
.whatsapp-actions {
  padding: 20px 24px 24px;
  display: flex;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 0 0 24px 24px;
}

.btn-whatsapp-cancel,
.btn-whatsapp-send {
  flex: 1;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp-cancel {
  background: #fff;
  color: var(--text-main);
  border: 2px solid #dde3f0;
}

.btn-whatsapp-cancel:hover {
  background: #f0f3ff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp-send {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50);
}

.btn-whatsapp-send:active {
  transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 575.98px) {
  .whatsapp-card {
    max-width: 96%;
    max-height: 95vh;
  }

  .whatsapp-header {
    padding: 20px;
    flex-wrap: wrap;
  }

  .whatsapp-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .whatsapp-title {
    font-size: 1.1rem;
  }

  .whatsapp-subtitle {
    font-size: 0.75rem;
  }

  .whatsapp-contact-info,
  .whatsapp-message-preview,
  .whatsapp-message-edit {
    padding-left: 20px;
    padding-right: 20px;
  }

  .whatsapp-actions {
    flex-direction: column;
    padding: 16px 20px 20px;
  }

  .btn-whatsapp-cancel,
  .btn-whatsapp-send {
    width: 100%;
  }

  .message-bubble {
    font-size: 0.88rem;
  }
}
