/* ==========================================================================
   Image & Media Security Protection (No Drag, No Selection, No Callout)
   ========================================================================== */
img,
svg,
picture,
figure,
.img-zoom-wrap,
.image-frame,
.gallery-grid,
.product-card {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  -webkit-touch-callout: none !important;
}

/* Protective Invisible Shield Over Image Wrappers */
.img-zoom-wrap::after,
.image-frame::after,
.gallery-main::after,
.gallery-card::after,
.why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: auto;
}

/* 1. Percentage Preloader + Progress Bar */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ink, #07182d);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  width: min(400px, 85vw);
}

.preloader-brand {
  height: 54px;
  width: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 4px 12px rgba(0, 169, 189, 0.3));
  animation: preloaderPulse 2s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
  0% { transform: scale(0.98); opacity: 0.85; }
  100% { transform: scale(1.03); opacity: 1; }
}

.preloader-counter-wrap {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 30%, #00a9bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #176ce5, #00a9bd, #60a5fa);
  border-radius: 99px;
  transition: width 0.15s ease-out;
  box-shadow: 0 0 12px rgba(0, 169, 189, 0.8);
}

.preloader-tagline {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

/* 2. Custom Cursor Dot + Trailing Ring & 3. Hover Expansion */
#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.15s ease-out, background-color 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

#cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--blue, #176ce5);
  margin-top: -4px;
  margin-left: -4px;
  box-shadow: 0 0 10px rgba(23, 108, 229, 0.6);
}

#cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(23, 108, 229, 0.5);
  margin-top: -19px;
  margin-left: -19px;
  backdrop-filter: blur(1px);
}

body.cursor-active #cursor-dot,
body.cursor-active #cursor-ring {
  opacity: 1;
}

/* Cursor Hover Expansion State */
body.cursor-hover #cursor-dot {
  transform: scale(0.4);
  background-color: var(--cyan, #00a9bd);
}

body.cursor-hover #cursor-ring {
  transform: scale(1.7);
  background: rgba(0, 169, 189, 0.12);
  border-color: var(--cyan, #00a9bd);
}

@media (pointer: coarse) {
  #cursor-dot,
  #cursor-ring {
    display: none !important;
  }
}

/* 4. Scroll Progress Indicator */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #176ce5 0%, #00a9bd 50%, #60a5fa 100%);
  z-index: 10000;
  box-shadow: 0 1px 8px rgba(23, 108, 229, 0.6);
  transition: width 0.08s ease-out;
}

/* 5. Permanently Fixed Header */
.site-header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 100 !important;
  transform: none !important;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* 6. Navigation Underline Draw */
.primary-nav a:not(.nav-cta) {
  position: relative;
  padding-bottom: 4px;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue, #176ce5), var(--cyan, #00a9bd));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-cta::after {
  display: none !important;
}

/* 7. Button Arrow Nudge */
.btn .arrow,
.btn svg,
.btn-arrow-icon {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover .arrow,
.btn:hover svg,
.btn:hover .btn-arrow-icon {
  transform: translateX(6px);
}

/* 8. Perspective Grid Drift */
.perspective-grid-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  perspective: 700px;
}

.perspective-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotateX(65deg);
  animation: gridDrift 24s linear infinite;
  transform-origin: center center;
}

@keyframes gridDrift {
  0% { transform: rotateX(65deg) translateY(0); }
  100% { transform: rotateX(65deg) translateY(60px); }
}

/* 9. Floating Orb Loop */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  will-change: transform;
}

.orb-blue {
  background: radial-gradient(circle, #176ce5 0%, rgba(23, 108, 229, 0) 70%);
  animation: floatOrb 14s ease-in-out infinite alternate;
}

.orb-cyan {
  background: radial-gradient(circle, #00a9bd 0%, rgba(0, 169, 189, 0) 70%);
  animation: floatOrb 18s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, -50px, 0) scale(1.15); }
  100% { transform: translate3d(-30px, 30px, 0) scale(0.9); }
}

/* 10. Scroll Parallax */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* 11. Split-Text Mask Reveal */
.split-text-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.22em;
}

.split-word {
  display: inline-block;
  transform: translateY(115%) rotate(3deg);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.split-word.word-visible {
  transform: translateY(0%) rotate(0deg);
  opacity: 1;
}

/* 12. Blur-to-Sharp Copy Reveal */
.blur-reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.blur-reveal.visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* 13. Infinite Marquee */
.marquee-section {
  background: var(--ink, #07182d);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: marqueeScroll 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan, #00a9bd);
  box-shadow: 0 0 10px var(--cyan, #00a9bd);
}

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

/* 14. Scroll Reveal: Fade + Rise + Deblur */
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(38px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* Stagger delay helpers for revealed children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }

/* 15. Clip-Path Reveal */
.clip-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: clip-path;
}

.clip-reveal.visible,
.reveal.visible .clip-reveal,
.product-card.visible .clip-reveal,
.gallery-card.visible .clip-reveal {
  clip-path: inset(0 0 0 0) !important;
}

/* 16. Project Image Hover Zoom */
.img-zoom-wrap {
  overflow: hidden;
  border-radius: inherit;
  position: relative;
}

.img-zoom-wrap img,
.product-card img,
.gallery-card img,
.gallery-main img {
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-card:hover img,
.gallery-card:hover img,
.gallery-main:hover img,
.img-zoom-wrap:hover img {
  transform: scale(1.08);
}

/* 17. 3D Project Card Tilt */
.tilt-card {
  transition: transform 0.15s ease-out, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 26px 60px rgba(7, 24, 45, 0.16);
}

/* 18. Cursor Spotlight */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(550px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(23, 108, 229, 0.14), transparent 45%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.spotlight-card:hover::before {
  opacity: 1;
}

/* 19. View Badge Scale Reveal */
.product-card {
  position: relative;
}

.view-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(7, 24, 45, 0.85);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.product-card:hover .view-badge {
  opacity: 1;
  transform: scale(1);
}

/* 20. Sticky Horizontal Scroll Showcase */
.horizontal-scroll-container {
  position: relative;
  height: 260vh;
}

.horizontal-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink, #07182d);
  color: #ffffff;
}

.horizontal-scroll-header {
  padding-bottom: 24px;
}

.horizontal-track-wrap {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin: -20px 0;
}

.horizontal-track {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: max(20px, calc((100vw - var(--container, 1220px)) / 2));
  will-change: transform;
  transition: transform 0.08s ease-out;
}

.horizontal-card {
  flex: 0 0 420px;
  min-height: 380px;
  background: var(--ink-2, #102946);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.horizontal-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue, #176ce5);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.horizontal-card .card-num {
  font-size: 12px;
  font-weight: 900;
  color: var(--cyan, #00a9bd);
  letter-spacing: 0.12em;
}

.horizontal-card h3 {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.3;
  margin: 20px 0 12px;
}

.horizontal-card p {
  color: #a8b8cc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* 21. Rotating Service Shape Badge */
.rotating-shape-wrap {
  position: absolute;
  bottom: -35px;
  right: 40px;
  width: 130px;
  height: 130px;
  z-index: 12;
  pointer-events: none;
}

.rotating-shape {
  width: 100%;
  height: 100%;
  animation: rotateShape 22s linear infinite;
  transform-origin: center center;
}

@keyframes rotateShape {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 22. Scroll-Linked Text Highlight */
.text-highlight {
  display: inline;
  background-image: linear-gradient(120deg, rgba(23, 108, 229, 0.22) 0%, rgba(0, 169, 189, 0.25) 100%);
  background-repeat: no-repeat;
  background-size: 0% 88%;
  background-position: 0 88%;
  transition: background-size 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 4px;
  border-radius: 4px;
}

.text-highlight.visible {
  background-size: 100% 88%;
}

/* 23. Animated Number Counter */
.counter-value {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Process Row Hover Shift & About Points Cards */
.about-points div {
  position: relative;
  overflow: hidden;
  border-radius: 12px !important;
  border-left: 4px solid var(--blue, #176ce5) !important;
  background: var(--soft, #f4f7fb);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, border-left-color 0.35s ease, box-shadow 0.35s ease !important;
  cursor: pointer;
}

.about-points div:hover {
  transform: translateY(-5px) scale(1.02);
  background: #ffffff !important;
  border-left-color: var(--cyan, #00a9bd) !important;
  box-shadow: 0 16px 36px rgba(7, 24, 45, 0.12);
}

.about-points div strong {
  transition: color 0.3s ease;
}

.about-points div:hover strong {
  color: var(--blue, #176ce5);
}

/* ==========================================================================
   Manufacturing Process Section - Premium Interactive Redesign
   ========================================================================== */
.process-shell {
  position: relative;
  padding: 54px 44px;
  border-radius: var(--radius-lg, 34px);
  background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
  box-shadow: 0 20px 60px rgba(7, 24, 45, 0.08);
  border: 1px solid rgba(220, 228, 237, 0.9);
  overflow: hidden;
}

/* Background Glowing Process Line */
.process-shell::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 70px;
  right: 70px;
  height: 3px;
  background: rgba(220, 228, 237, 0.8);
  z-index: 1;
}

.process-shell-line {
  position: absolute;
  top: 78px;
  left: 70px;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #176ce5 0%, #00a9bd 50%, #60a5fa 100%);
  z-index: 2;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(0, 169, 189, 0.8);
}

.process-shell.visible .process-shell-line {
  width: calc(100% - 140px);
}

.process-grid {
  position: relative;
  z-index: 3;
  gap: 18px;
}

@media (min-width: 992px) {
  .process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  position: relative;
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(220, 228, 237, 0.7);
  backdrop-filter: blur(10px);
  cursor: pointer;
  overflow: hidden;
}

.process-step:not(:last-child)::after {
  display: none !important;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.03) !important;
  background: #ffffff !important;
  border-color: var(--blue, #176ce5) !important;
  box-shadow: 0 20px 45px rgba(23, 108, 229, 0.15) !important;
}

.step-no {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #176ce5 0%, #00a9bd 100%);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(23, 108, 229, 0.35);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  position: relative;
  z-index: 4;
}

.process-step:hover .step-no {
  transform: scale(1.18) rotate(5deg);
  box-shadow: 0 12px 28px rgba(0, 169, 189, 0.6);
}

.process-step h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--ink, #07182d);
  transition: color 0.3s ease;
}

.process-step:hover h3 {
  color: var(--blue, #176ce5);
}

.process-step p {
  margin: 0;
  color: var(--muted, #657287);
  font-size: 13px;
  line-height: 1.6;
}

/* Staggered Step Reveal */
.process-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.process-shell.visible .process-step:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.process-shell.visible .process-step:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.process-shell.visible .process-step:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.process-shell.visible .process-step:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.process-shell.visible .process-step:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }

.capability-item,
.industry-row {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.process-step:hover,
.capability-item:hover,
.industry-row:hover {
  transform: translateX(12px) !important;
  background: rgba(23, 108, 229, 0.06);
  border-color: rgba(23, 108, 229, 0.3);
}

.capability-item .arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-item:hover .arrow {
  transform: translate(4px, -4px);
  color: var(--cyan, #00a9bd);
}

/* 25. Testimonial Card Lift */
.purpose-card,
.why-card,
.address-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.purpose-card:hover,
.why-card:hover,
.address-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(7, 24, 45, 0.12);
  border-color: rgba(23, 108, 229, 0.3);
}

/* 26. Contact Glow Pulse */
.contact-section {
  position: relative;
}

.contact-form {
  position: relative;
}

.contact-form::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, #176ce5, #00a9bd, #176ce5);
  z-index: -1;
  opacity: 0.35;
  filter: blur(14px);
  animation: glowPulse 4s ease-in-out infinite alternate;
}

.btn-primary.glow-pulse {
  animation: buttonGlow 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.25; filter: blur(10px); }
  100% { opacity: 0.55; filter: blur(20px); }
}

@keyframes buttonGlow {
  0% { box-shadow: 0 10px 25px rgba(23, 108, 229, 0.3); }
  100% { box-shadow: 0 14px 40px rgba(0, 169, 189, 0.6); }
}

/* 27. Magnetic Button */
.btn-magnetic {
  display: inline-flex;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* 28. Click Ripple */
.ripple-target {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.65s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* 29. Page Wipe + Smooth Anchor Transition */
#page-wipe {
  position: fixed;
  inset: 0;
  z-index: 99995;
  background: linear-gradient(135deg, #07182d 0%, #102946 50%, #00a9bd 100%);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 0 0 50px rgba(0, 169, 189, 0.4);
}

#page-wipe.wipe-in {
  transform: scaleX(1);
  transform-origin: left center;
}

#page-wipe.wipe-out {
  transform: scaleX(0);
  transform-origin: right center;
}

html {
  scroll-behavior: smooth;
}

/* 30. Copy-to-Clipboard Success Feedback */
.address-card[data-copy],
[data-copy] {
  cursor: pointer;
  position: relative;
}

.copy-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 10000;
  background: var(--ink, #07182d);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid var(--cyan, #00a9bd);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.copy-toast.toast-active {
  transform: translateY(0);
  opacity: 1;
}

/* 31. Native Smooth Scrolling & Scrollbar Polish */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ink, #07182d);
}

::-webkit-scrollbar-thumb {
  background: #1e3a60;
  border-radius: 5px;
  border: 2px solid var(--ink, #07182d);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue, #176ce5);
}

/* 32. Reduced-Motion Accessibility Override */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  #preloader {
    display: none !important;
  }

  #cursor-dot,
  #cursor-ring {
    display: none !important;
  }

  .perspective-grid,
  .floating-orb,
  .marquee-track,
  .rotating-shape {
    animation: none !important;
  }

  .split-word,
  .reveal,
  .blur-reveal,
  .clip-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}

/* ==========================================================================
   33. Mobile Optimization Rules (@media (max-width: 991px) and (max-width: 768px))
   ========================================================================== */

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
  }

  .product-card.large,
  .product-card.small {
    grid-column: span 1 !important;
  }

  .section-head {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 36px !important;
  }

  .horizontal-card {
    flex: 0 0 320px !important;
  }

  /* Process Section Mobile & Tablet Ultra-Clean Vertical Card Layout */
  .process-shell {
    padding: 24px 16px !important;
    border-radius: 24px !important;
    background: #f4f7fb !important;
    border: 1px solid rgba(220, 228, 237, 0.8) !important;
  }

  .process-shell::before,
  .process-shell-line {
    display: none !important;
  }

  .process-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    grid-template-columns: 1fr !important;
  }

  .process-step {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid rgba(220, 228, 237, 0.9) !important;
    border-left: 4px solid var(--blue, #176ce5) !important;
    box-shadow: 0 8px 24px rgba(7, 24, 45, 0.05) !important;
  }

  .process-step::after {
    display: none !important;
  }

  .step-no {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    margin-bottom: 0 !important;
    background: linear-gradient(135deg, #176ce5 0%, #00a9bd 100%) !important;
    box-shadow: 0 6px 16px rgba(23, 108, 229, 0.25) !important;
  }

  .process-step h3 {
    font-size: 17px !important;
    margin-bottom: 4px !important;
    color: var(--ink, #07182d) !important;
  }

  .process-step p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: var(--muted, #657287) !important;
  }

  /* Individual Sequential Scroll Reveal on Mobile */
  .process-step {
    opacity: 0 !important;
    transform: translateY(35px) scale(0.96) !important;
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
    transition-delay: 0s !important;
  }

  .process-step.visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }
}

@media (max-width: 768px) {
  /* Disable Custom Cursor on Mobile Touch */
  #cursor-dot,
  #cursor-ring {
    display: none !important;
  }

  /* Mobile Spacing & Container */
  .section {
    padding: 64px 0 !important;
  }

  .section-tight {
    padding: 48px 0 !important;
  }

  .container {
    width: calc(100% - 32px) !important;
  }

  /* Preloader Mobile Adjustments */
  .preloader-counter-wrap {
    font-size: 52px !important;
  }

  /* Hero Mobile Actions */
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* About Points Grid Stacking */
  .about-points {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Sticky Horizontal Showcase Pinning on Mobile */
  .horizontal-scroll-container {
    position: relative !important;
    height: 260vh !important;
  }

  .horizontal-scroll-sticky {
    position: sticky !important;
    top: 0 !important;
    height: 100vh !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 30px 0 !important;
  }

  .horizontal-track-wrap {
    width: 100% !important;
    overflow: hidden !important;
    padding: 16px 0 !important;
    margin: -16px 0 !important;
  }

  .horizontal-track {
    display: flex !important;
    gap: 20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .horizontal-card {
    flex: 0 0 82vw !important;
    min-height: 340px !important;
    padding: 34px 26px !important;
    box-sizing: border-box !important;
  }

  /* Address Grid & Toast Mobile Position */
  .address-grid {
    grid-template-columns: 1fr !important;
  }

  .copy-toast {
    bottom: 16px !important;
    right: 16px !important;
    left: 16px !important;
    justify-content: center !important;
    font-size: 12px !important;
    padding: 12px 18px !important;
  }

  /* Rotating emblem adjustment */
  .rotating-shape-wrap {
    width: 90px !important;
    height: 90px !important;
    right: 20px !important;
    bottom: -20px !important;
  }

  /* Floating Orbs Mobile Performance */
  .floating-orb {
    filter: blur(45px) !important;
    opacity: 0.2 !important;
  }
}
