@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&family=Share+Tech+Mono&display=swap");

:root {
  --void: #0b0c10;
  --ink: #14161c;
  /* --paper: #f1f0ea; */
  --paper: #fff;
  /* --paper: #f7f9f2; */
  --paper-dim: #e7e5dd;
  --gradient-brand: linear-gradient(
    135deg,
    #ff5f8f 0%,
    #ff4d94 20%,
    #d946ef 50%,
    #8b5cf6 75%,
    #6366f1 100%
  );
  --primary-pink: #ff5c8a;
  --primary-purple: linear-gradient(90deg, #b84dff, #6c63ff);
  --primary-cyan: #22d3ee;
  --line-dark: #2a2c34;
  --text-soft: #8a8d98;
  --bg-soft: #f9f9f9;
  --hov-bg: #222b32b5;
  --hov-bg-1: #222b32;
  --text-light: #5c5e68;
  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
.mda91-body {
  background: var(--paper);
  color: var(--void);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--signal);
  color: var(--paper);
}
.text-focus {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(50px) scale(0.96);
  animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.process-bg {
  background-color: var(--bg-soft);
  padding: 100px 0px;
}
.eyebrow,
.highlight-txt,
.d-m-s {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  background-image: linear-gradient(90deg, #b84dff, #6c63ff) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.d-m-s::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; /* gap adjust karo */
  width: 100%;
  height: 1px;
  opacity: 0.3;
  background: var(--void); /* border color */
}
/* DESIGN */
.eyebrow .design {
  background: var(--primary-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DEVELOPMENT */
.eyebrow .development {
  background: var(--primary-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MARKETING */
.eyebrow .marketing {
  background: var(--primary-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dots */
.eyebrow .dot {
  color: #7c3aed;
  font-size: 18px;
  opacity: 0.8;
}
/* ===== NAV ===== */

/* ===== NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  /* Aapka original purple gradient ab kam opacity (0.75) ke sath */
  background: linear-gradient(
    90deg,
    rgba(184, 77, 255, 0.75),
    rgba(108, 99, 255, 0.75)
  ) !important;

  /* Glassmorphic blur taaki piche ka content clean scroll ho */
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(14px) !important;

  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo,
.header-logo {
  width: 120px;
  padding: 14px 0px;
}
/* 2. Primary Navigation Menu List */
.nav-menu {
  display: flex;
  list-style: none;
  height: 100%;
  margin: 0px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--paper);
  text-decoration: none;
  padding: 0 10px;
  font-size: 14px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  font-weight: 800;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.nav-align {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.nav-link:hover {
  color: #000;
}
.nav-link:hover .arrow {
  color: var(--ink); /* Modern Blue Accent Color */
}

.arrow,
.r-arrow {
  font-size: 0.65rem;
  margin-left: 6px;
  opacity: 0.7;
  color: var(--paper);
}
/* Invisible Bridge: Jo main link aur dropdown ke beech ke gap ko fill karega */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -30px; /* Jitna aapka gap hai uske mutabik isko badha ya kam kar sakte hain */
  left: 0;
  width: 100%;
  height: 30px; /* Top ke negative value ke barabar hi height rakhein */
  background: transparent; /* Yeh invisible rahega par hover ko tootne nahi dega */
}
/* 3. Dropdown Core Engine (Pure CSS Display System) */
.dropdown-menu {
  position: absolute;
  top: 190%;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(184, 77, 255, 0.75),
    rgba(108, 99, 255, 0.75)
  ) !important;
  width: max-content;
  min-width: 220px;
  max-width: 320px;
  white-space: nowrap;
  display: none;
  z-index: 9999;
  list-style: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.nav-item.has-dropdown {
  position: relative;
}
.dropdown-menu li {
  position: relative;
  width: 100%;
}
.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  white-space: nowrap;
}
.dropdown-menu a {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #334155;
  color: #ffffff;
}

/* --- Level 2: Nested Sub-Dropdown Physics --- */
.sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%; /* Level 1 side display tracking */
  background: linear-gradient(
    90deg,
    rgba(184, 77, 255, 0.75),
    rgba(108, 99, 255, 0.75)
  ) !important;
  min-width: 200px;
  list-style: none;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

/* CSS Triggers for Hover Operations */
.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-sub-dropdown:hover > .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Hide Unnecessary Checkbox Element */
.nav-toggle-input {
  display: none;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.25s ease;
}
.nav-menu a:hover::after {
  width: 100%;
}

/* =========================== */

/* =========================== */
.nav-cta {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  background: var(--gradient-brand);
  background: var(--paper);
  box-shadow:
    0 10px 30px rgba(255, 95, 143, 0.25),
    0 15px 40px rgba(139, 92, 246, 0.25);
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}
.nav-cta:hover {
  background: var(--paper-dim);
  color: var(--ink);
  transform: translateY(-4px); /* Button smoothly upar lift hoga */
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(180, 69, 255, 0.35);
}

/* ===== HERO ===== */
.hero {
  padding: 110px 0 100px;
  /* position: relative; */
}
/* 1. Main Section Box Setup */
.banner-vid {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.banner-vid .hero.wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%; /* Ya jo bhi aapki vertical height set hai (e.g., 80vh ya min-height) */
}

/* 2. Full Width Background Video Controls */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(
    -50%,
    -50%
  ); /* Dynamic absolute screen center positioning */
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover; /* Video ratio crop handle bina stretch hue */
  z-index: 1; /* SVG aur hero-grid ke bilkul peeche background me rakhne ke liye */
  pointer-events: none; /* Mouse clicks ko content par bypass karne ke liye */
}

/* 3. Text Visibility Overlay Setup (Optional but highly recommended for SEO contrast) */
.banner-vid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(6, 9, 19, 0.4) 0%,
    rgba(6, 9, 19, 0.2) 100%
  );
  z-index: 1; /* Video ke upar subtle dark tint layer text readability badhane ke liye */
  pointer-events: none;
}
/* ================================= */
.banner-img {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.banner-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(20, 25, 35, 0.18) 18%,
    rgba(12, 18, 28, 0.45) 45%,
    rgba(10, 15, 25, 0.7) 100%
  );
  z-index: 1;
}

.img-hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}
/* ================================= */
/* 4. Active Content Grid Elevation */
.hero-grid,
.hero-bg {
  position: relative;
  z-index: 3; /* Taaki aapka brand text aur SVG links video ke upar float karein aur clickable rahein */
}
/* ======================= */

/* 2. Modern Premium Gradient Over Video Layer */
.banner-vid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Modern Dark Slate to Transparent Clean Gradient */

  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.75) 0%,
    /* Top side: Darker to merge nicely with navbar */ rgba(15, 23, 42, 0.4) 50%,
    /* Center side: Soft blend */ rgba(6, 9, 19, 0.8) 100%
      /* Bottom side: Deep dark to blend with next section */
  );

  /* Mix Blend Mode for Hollywood/Cinematic Tech Vibe (Optional - try it out!) */
  mix-blend-mode: multiply;

  z-index: 2; /* Video (z-index: 1) ke upar aur Text (z-index: 3) ke niche */
  pointer-events: none; /* Taaki clicks background text/links par smoothly bypass ho sakein */
}

/* 3. Double Check Content Z-Index Alignment */
.hero-content,
.hero-grid,
.hero-bg,
.hero.wrap {
  position: relative;
  z-index: 10; /* Content overlay ke upar solid filter ke sath float karega */
}
.hero-bg {
  position: absolute;
  top: -60px;
  right: -6%;
  width: 54%;
  height: 620px;
  z-index: -1;
  opacity: 0.8;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 20px 0 26px;
  color: var(--paper);
}

.img-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 54px);
  max-width: 650px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0 26px;
  color: var(--paper);
}
@keyframes heroReveal {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(50px) scale(0.96);
  }
  60% {
    opacity: 1;
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}
.hero h1 em,
.img-hero h1 em {
  font-style: normal;

  /* 1. Gradient ko background me set karein */
  /* background-image: linear-gradient(90deg, #b84dff, #6c63ff) !important; */
  background-image: var(--primary-purple);

  /* 2. Gradient ko text ke andar constraint/clip karein */
  -webkit-background-clip: text !important;
  background-clip: text !important;

  /* 3. Original text color ko transparent karein taaki piche ka gradient dikhe */
  -webkit-text-fill-color: transparent !important;
  text-fill-color: transparent !important;

  display: inline-block;
}
.hero p,
.img-hero p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: #fff;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  text-transform: uppercase;
  background: var(--gradient-brand);
  font-weight: 200;
  font-size: 15px;
  color: var(--paper);
  padding: 16px 28px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.btn-primary span {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--paper-dim);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  font-weight: 200;
  font-size: 15px;
  color: var(--primary-cyan);
  padding: 16px 8px;
  border-bottom: 1px solid var(--primary-cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  color: var(--paper);
  border-bottom: 1px solid var(--paper);
}
/* console mock */
.console {
  background: var(--void);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(11, 12, 16, 0.35);
}
.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-dark);
}
.console-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a3c46;
}
.console-url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
  background: #1c1e26;
  padding: 5px 14px;
  border-radius: 6px;
  margin-left: 8px;
  flex: 1;
}
.console-body {
  padding: 26px 22px 30px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: #c9cbd4;
  min-height: 180px;
}
.console-line {
  color: var(--text-soft);
  margin-bottom: 8px;
}
.console-line .ok {
  color: var(--primary-cyan);
}
.console-line .num {
  color: var(--ember);
}
.console-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--signal);
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
  vertical-align: middle;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
#typed-target {
  color: #f1f0ea;
  font-weight: 500;
}

/* start digital banner setion */
/* ==========================================================================
   DIGITAL MARKETING BANNER - COMPLETE CSS
   ========================================================================== */

/* 1. SECTION & MAIN CONTAINER */
.dm-banner-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url("../images/new-images/digital-m1-bg.webp") no-repeat center
    center / cover;
  overflow: hidden;
  content-visibility: auto; /* High performance page rendering */
}
.dm-banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0%, rgba(20, 25, 35, 0.18) 18%, rgba(12, 18, 28, 0.45) 45%, rgba(10, 15, 25, 0.7) 100%); */
  z-index: 1;
  background: linear-gradient(
    270deg,
    rgb(255 255 255 / 10%) 0%,
    rgb(0 0 0 / 0%) 18%,
    rgb(26 36 52 / 75%) 45%,
    rgb(0 0 0) 100%
  );
}

.dm-banner-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 10px;
  align-items: center;
}
/* ==========================================================================
   AUTHENTIC CHAT BUBBLE SHAPED POPUP CARD (FULL COMPLETE CSS)
   ========================================================================== */

/* 1. PERSPECTIVE CONTAINER */
.dm-banner-right {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: end;
  justify-content: left;
  perspective: 1000px;
}

.popup-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 230px;
  height: 157px;
}

/* 2. CHAT BUBBLE CONTAINER (SHAPED WITH SVG PATH) */
.popup-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);

  /* SVG Clip-Path for Perfect Chat Bubble + Left Pointing Tail */
  clip-path: path(
    "M 30,0 L 410,0 A 24,24 0 0,1 434,24 L 434,316 A 24,24 0 0,1 410,340 L 30,340 A 24,24 0 0,1 6,316 L 6,190 L -12,170 L 6,150 L 6,24 A 24,24 0 0,1 30,0 Z"
  );

  /* Modern High-End Glow Shadow */
  filter: drop-shadow(-12px 18px 25px rgba(0, 0, 0, 0.45))
    drop-shadow(0px 0px 15px rgba(108, 99, 255, 0.25));

  opacity: 0;
  transform: scale(0.85) translateX(30px) rotate(-3deg);
  pointer-events: none;

  will-change: transform, opacity;
  animation: chatPopupCycle 12s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

/* Animation Delays for 4 Cards Cycle */
.card-1 {
  animation-delay: 0s;
}
.card-2 {
  animation-delay: 3s;
}
.card-3 {
  animation-delay: 6s;
}
.card-4 {
  animation-delay: 9s;
}

/* 3. IMAGE INSIDE CHAT SHAPE */
.popup-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.05);
}

/* 4. GLOW OVERLAY IN EXACT CHAT BUBBLE SHAPE */
.card-ambient-glow {
  position: absolute;
  inset: 0;
  /* Exact same SVG path so glow takes full chat bubble geometry */
  clip-path: path(
    "M 30,0 L 410,0 A 24,24 0 0,1 434,24 L 434,316 A 24,24 0 0,1 410,340 L 30,340 A 24,24 0 0,1 6,316 L 6,190 L -12,170 L 6,150 L 6,24 A 24,24 0 0,1 30,0 Z"
  );
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.1) 20%,
    rgba(7, 10, 18, 0.9) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* 5. GLASS BADGE INSIDE CHAT BUBBLE */
.card-badge {
  position: absolute;
  bottom: 20px;
  /* left: 30px; Offset to clear left tail padding */
  /* right: 20px; */
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  /* background: rgb(15 23 42 / 0%); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */
  /* border-radius: 14px; */
}

.badge-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   6. SPRINGY CHAT POPUP ANIMATION KEYFRAMES
   ========================================================================== */
@keyframes chatPopupCycle {
  0% {
    opacity: 0;
    transform: scale(0.8) translateX(40px) rotate(4deg);
    pointer-events: none;
  }
  /* Chat Bubble Pop-In */
  4%,
  22% {
    opacity: 1;
    transform: scale(1) translateX(0) rotate(0deg);
    pointer-events: auto;
  }
  /* Chat Bubble Exit */
  25%,
  100% {
    opacity: 0;
    transform: scale(1.05) translateX(-25px) rotate(-3deg);
    pointer-events: none;
  }
}

/* Pause animation on mouse hover */
.popup-card-wrapper:hover .popup-card {
  animation-play-state: paused;
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
  .dm-banner-right {
    height: 360px;
  }
  .popup-card-wrapper {
    max-width: 100%;
    height: 300px;
  }
  .dm-banner-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .dm-banner-left,
  .dm-banner-right {
    width: 100%;
    max-width: 700px;
    margin: auto;
  }
}

@media (max-width: 576px) {
  .dm-banner-right {
    height: 290px;
  }
  .popup-card-wrapper {
    height: 250px;
  }
  .badge-text {
    font-size: 13px;
  }
}
/* end digital banner setion */
/* marquee */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.marquee-track {
  display: flex;
  /* gap: 25px; */
  width: max-content;
  animation: scroll 32s linear infinite;
}
.marquee-track img {
  width: 40%;
  white-space: nowrap;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== SECTION HEADERS ===== */
.sec-pt {
  padding: 100px 40px;
}
.section-tight {
  padding: 90px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}
.section-head h2,
.center-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 14px;
}
.center-heading {
  margin-bottom: 64px;
  text-align: left;
}
.section-head p,
.para-p {
  color: #4a4c56;
  font-size: 16px;
  max-width: 420px;
}

/* ===== SERVICES (bento) ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
} /* Line 605: Updated Bento Card Base */
.bento-card {
  position: relative; /* Compulsory background absolute track ke liye */
  overflow: hidden; /* Iske bina image container ke bahar zoom ho jayegi */
  padding: 44px 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Taaki content bottom par perfect align rahe */
  border-radius: 16px; /* Agar border radius pehle se lagaya hua h */

  /* Smooth Hover Scale Engine for Card Body */
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  z-index: 1;
}
.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.bento-card:hover::before {
  transform: scaleX(1);
}
/* Background Image Wrapper (Pure viewport logic standard) */
.bento-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Text content ke peeche rakhne ke liye */
  overflow: hidden;
}

/* Background Image Object Layer styling */
.bento-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(140%); /* Brightness thodi kam ki h taaki card ke upar ka text bilkul bright white dikhe */

  /* Zoom speed control: Standard high-end animation */
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
}

/* Modern Dark Overlay Layer to increase text readability */
.bento-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.bento-card h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
  animation: pulseGlow 2s ease-in-out infinite;
  will-change: transform;
}

.bento-card h3 span svg,
.bento-card h3 span i {
  transition: transform 0.35s ease;
}

.bento-card:hover h3 span {
  background: var(--paper);
  color: var(--ink);
  transform: scale(1.05);
}

.bento-card:hover h3 span svg,
.bento-card:hover h3 span i {
  transform: translateX(6px);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}
/* Ensure original content elements float over the background overlay safely */
.bento-icon,
.bento-tag,
.bento-card h3 {
  position: relative;
  z-index: 2;
}

/* -----------------------------------------------------------
   HOVER ZOOM INTERACTION MATRIX
----------------------------------------------------------- */
.bento-card:hover {
  transform: translateY(-6px); /* Card thoda sa upar lift hoga */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Premium subtle shadow glow */
}

/* Zooming the Image inside wrapper smoothly */
.bento-card:hover .bento-bg-img {
  transform: scale(1.08); /* 1.08x Zoom trigger scale */
  filter: brightness(0.55) contrast(110%); /* Focus badhane ke liye hover par scale dynamically set hoga */
}
.bento-card:hover .bento-tag {
  color: var(--paper);
  border-color: rgba(241, 240, 234, 0.3);
}
.bento-card:hover .bento-desc {
  color: #a9abb6;
}
.bento-card:hover .bento-list li {
  color: #c9cbd4;
}
.bento-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 12px;
  width: fit-content;
  transition: 0.25s ease;
}
.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: 0.25s ease;
}
.bento-bg-1 {
  background-color: var(--primary-pink);
}
.bento-bg-2 {
  background-image: var(--primary-purple);
}
.bento-bg-3 {
  background-color: var(--primary-cyan);
}
.bento-bg-4 {
  background-color: #8b5cf6;
}
.bento-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--paper);
}
.bento-card:hover .bento-icon {
  background: var(--primary-cyan);
}
.bento-card h3,
.head-h3,
.pop-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--paper-dim);
  margin: 26px 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.head-h3 {
  color: var(--void);
}
.bento-desc {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  transition: 0.25s ease;
}
.bento-list {
  list-style: none;
  /* margin-top: auto; */
  font-size: 13px;
}
.bento-list li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: 12.5px;
  transition: 0.25s ease;
}
.bento-card:hover .bento-list li {
  border-top-color: rgba(241, 240, 234, 0.15);
}
/* ==========================================================================
   BENTO CAROUSEL CORE COMPONENT
   ========================================================================== */
.bento-carousel-container {
  position: relative;
  width: 100%;
  margin-top: -40px; /* Aapke element-level offset styling ko maintain karne ke liye */
  padding: 20px 0;
}

/* Horizontal Scroll Track Setup */
.bento-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 5px;

  /* Hide standard scrollbars cleanly across browsers */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.bento-carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* Bento Card Grid Dimensions Overrides for Carousel */
.bento-carousel-track .bento-card {
  flex: 0 0 calc(33.333% - 16px); /* Desktop view: 3 cards display dynamically */
  scroll-snap-align: start;
  /* Aapki existing `.bento-card` properties browser ispe automate kar dega */
}

/* ==========================================================================
   NAVIGATION ARROWS STYLING
   ========================================================================== */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:hover {
  background: #3b82f6; /* Modern Electric Blue Accent on Focus */
  border-color: #3b82f6;
  color: #ffffff;
}

.left-arrow {
  left: -20px;
}

.right-arrow {
  right: -20px;
}

/* ===== WORK ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.work-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--void);
}
.work-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card:hover .work-visual {
  transform: scale(1.05);
}
.work-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16vw;
  line-height: 1;
  opacity: 0.9;
}
.work-svg {
  width: 80%;
  height: 80%;
}
.work-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(11, 12, 16, 0.75), transparent 90%);
}
.work-info h3 {
  font-family: var(--font-display);
  color: #f1f0ea;
  font-size: 22px;
  font-weight: 700;
}
.work-info .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #c9cbd4;
  border: 1px solid rgba(241, 240, 234, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
}
.work-arrow {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(241, 240, 234, 0.12);
  border: 1px solid rgba(241, 240, 234, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1f0ea;
  font-size: 18px;
  transform: rotate(-45deg);
  transition: 0.3s ease;
}
.work-card:hover .work-arrow {
  background: var(--signal);
  border-color: var(--signal);
  transform: rotate(0deg);
}

/* ==========================================================================
   STICKY TIMELINE PROCESS SECTION (COMPACT & RESPONSIVE)
   ========================================================================== */

.sticky-process-section {
  background-color: #fafafa;
  color: var(--void);
  padding: 100px 20px;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT COLUMN - STICKY PINNING */
.process-left-col {
  height: 100%;
}

.sticky-wrapper {
  position: sticky;
  top: 140px;
}

.process-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  background-image: linear-gradient(90deg, #b84dff, #6c63ff) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.process-title {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 20px;
}

.process-title i {
  font-family: serif;
  font-style: italic;
  font-weight: 400;
}

.process-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4c56;
  max-width: 440px;
}

/* RIGHT COLUMN - STEPS & PERFECT LINE LAYERING */
.process-right-col {
  position: relative;
  padding-left: 20px;
}

/* TRACK LINE: Starts from Circle 1 Bottom to Circle 4 Top */
.timeline-line-bg {
  position: absolute;
  left: 41px; /* Perfectly centered with 44px circle */
  top: 44px; /* Starts below Circle 1 */
  bottom: 44px; /* Ends above Circle 4 */
  width: 2px;
  background: #e1e4dc;
  z-index: 1;
}

/* DYNAMIC GRADIENT FILL */
.timeline-line-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #12221e 0%, #2563eb 50%, #7c3aed 100%);
  transition: height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* STEP CARD */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 110px;
  position: relative;
  z-index: 2;
  opacity: 0.35;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step.active {
  opacity: 1;
}

/* CIRCLE BADGE SETUP */
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #12221e;
  background: #f7f7f2; /* Matches section bg to hide line underneath */
  color: #12221e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 3; /* Always above the line */
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* ACTIVE CIRCLE FILL */
.process-step.active .step-circle {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: var(--gradient-brand);
  box-shadow: 0 4px 12px rgba(18, 34, 30, 0.25);
}

.step-content h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.step-content p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #556860;
  margin: 0;
}

/* ===== METRICS ===== */
.stats-section {
  background: #000;
  /* background: var(--hov-bg-1); */
  position: relative;
  padding: 100px 20px;
  color: #fff;

  /* 2. Pure CSS High-End Dot Pattern Matrix Overlays */
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(rgba(59, 130, 246, 0.05) 1.5px, transparent 1.5px);

  /* 3. Grid sizing mechanics for pattern dots scaling */
  background-size:
    24px 24px,
    48px 48px;
  background-position:
    0 0,
    12px 12px;

  /* Safe fallback buffer for smoother rendering engine */
  overflow: hidden;
}
/* Subtle soft depth glow to bounce the text crisp and readable */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(59, 130, 246, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}
/* Making sure inner container stands perfectly clear on top of patterns */
.stats-section .container {
  position: relative;
  z-index: 2;
}
.stats-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.stats-heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 14px;
}
.head-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--void);
  font-weight: normal;
  line-height: 1;
  margin: 30px 0px 60px;
}
.stats-heading h2 span,
.head-h2 > span {
  background-image: linear-gradient(90deg, #b84dff, #6c63ff) !important;
  font-style: italic;
  font-family: serif;
  font-weight: 400;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.stats-heading p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: clamp(15px, 2vw, 18px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: clamp(40px, 5vw, 74px);
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--primary-cyan);
}

.stat-box p {
  color: var(--text-soft);
  font-size: 16px;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .stat-box {
    text-align: center;
  }
}
/* ===== GLOBAL / TIMEZONE ===== */
/* ==========================================================================
   1. GLOBAL GRAPHIC PANEL WRAPPER
   ========================================================================== */
.global-panel {
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 40px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

/* ==========================================================================
   2. HOLOGRAM SVG NETWORK MAP (.coverage-map)
   ========================================================================== */
.coverage-map {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  overflow: visible;
  /* Premium digital mesh blueprint styling */
  filter: drop-shadow(0px 15px 35px rgba(0, 0, 0, 0.4))
    drop-shadow(0px 0px 50px rgba(59, 130, 246, 0.05));
}

/* Map Continental Blobs Layout */
.coverage-map path[fill*="rgba"],
.coverage-map circle[fill*="rgba"] {
  fill: rgba(59, 130, 246, 0.12) !important;
  stroke: rgba(96, 165, 250, 0.25);
  stroke-width: 0.75px;
  animation: hologramFloat 6s ease-in-out infinite alternate;
  transform-origin: center;
}

/* ==========================================================================
   3. CYBERSTREAM NETWORK ROUTES (Dashed Flow Lines)
   ========================================================================== */
.coverage-map path[stroke-dasharray] {
  stroke: url(#route-gradient) !important; /* Premium color vector */
  stroke-width: 1.5px;
  stroke-dasharray: 8, 6;
  filter: drop-shadow(0px 0px 6px rgba(96, 165, 250, 0.6));
  animation: cyberStreamFlow 20s linear infinite;
}

/* ==========================================================================
   4. TELEMETRY DOTS & GLOW RADAR (US, EU, APAC Points)
   ========================================================================== */
.coverage-map circle:not([fill*="rgba"]) {
  fill: var(--primary-pink) !important;
  stroke: #ffffff;
  stroke-width: 1.5px;
  filter: drop-shadow(0px 0px 8px rgba(56, 189, 248, 0.8));
  animation: radarPing 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transform-origin: center;
}

/* Typography Matrix Overlays */
.coverage-map text {
  font-family: var(--font-mono), "Space Grotesk", monospace;
  font-size: 11px !important;
  font-weight: 700;
  fill: var(--primary-cyan) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   5. TIMEZONE TELEMETRY BARS (.tz-bar & .tz-legend)
   ========================================================================== */
.tz-bar {
  display: flex;
  width: 100%;
  height: 8px;
  border-radius: 99px;
  overflow: hidden;
  margin: 25px 0 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

.tz-bar > div {
  height: 100%;
  transform-origin: left;
  animation: dynamicBarStretch 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Premium Matrix Gradient Trackers */
.tz-bar > div:nth-child(1) {
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  animation-delay: 0.1s;
}
.tz-bar > div:nth-child(2) {
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  animation-delay: 0.3s;
}
.tz-bar > div:nth-child(3) {
  background: linear-gradient(90deg, #818cf8, #c084fc);
  animation-delay: 0.5s;
}

/* Legend Metadata styling */
.tz-legend {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

/* Subtitle Header Tracker */
.global-panel div[style*="font-family"] {
  font-family: var(--font-mono), monospace !important;
  font-size: 11px !important;
  color: #38bdf8 !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.global-panel div[style*="font-family"]::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #38bdf8;
  animation: telemetryPulse 1.5s infinite alternate;
}

/* ==========================================================================
   6. MICRO-MOTION PHYSICS KEYFRAMES
   ========================================================================== */
@keyframes cyberStreamFlow {
  to {
    stroke-dashoffset: -500;
  }
}

@keyframes radarPing {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.6));
  }
  50% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 14px rgba(56, 189, 248, 1));
    fill: #ffffff !important;
  }
}

@keyframes hologramFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
    fill: rgba(59, 130, 246, 0.1);
  }
  100% {
    transform: translateY(-6px) rotate(0.5deg);
    fill: rgba(59, 130, 246, 0.16);
  }
}

@keyframes dynamicBarStretch {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes telemetryPulse {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   7. MOBILE RESPONSIIVENESS CALIBRATION
   ========================================================================== */
@media (max-width: 768px) {
  .global-panel.reveal.in {
    padding: 20px;
    border-radius: 16px;
  }
  .tz-legend {
    font-size: 9px;
  }
}
.city-list {
  list-style: none;
  color: #38bdf8;
  font-family: var(--font-mono);
  font-size: 13.5px;
}
.city-list li {
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.city-list li span:last-child {
  color: var(--text-soft);
}
.coverage-map .land {
  fill: var(--hov-bg);
}
.coverage-map .arc {
  fill: none;
  stroke: var(--primary-cyan);
  stroke-width: 1.4;
  opacity: 0.55;
  stroke-dasharray: 3 4;
}
.coverage-map .node {
  fill: var(--void);
}
.coverage-map .node.us {
  fill: var(--signal);
}
.coverage-map .node.eu {
  fill: var(--ember);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 100px 0;
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 3.4vw, 42px);
  letter-spacing: -0.015em;
  line-height: 1.28;
  max-width: 920px;
  margin: 0 auto 30px;
}
.testimonial cite {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-soft);
  font-style: normal;
}
.cta-section-bg {
  background-color: #222b32;
}
/* ===== CTA BANNER ===== */

.cta-banner {
  /* 1. Background Image Setup */
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
  /* background-image: url("../images/footer-bg.webp"); Apni image ka path yahan dalein */

  /* 2. Responsive Magic Properties (No effect on resizing) */
  /* background-size: cover; Image hamesha full area cover karegi bina stretch hue */
  /* background-position: top; Screen size chahe jo ho, image hamesha center se scale hogi */
  /* background-repeat: no-repeat; Image repeat nahi hogi */

  /* 3. Layout & Spacing */
  /* 3. Height Properties (Aap height ko apne hisab se kam/bada kar sakte hain) */
  height: 100vh; /* Desktop par exact height fix rakhne ke liye */
  width: 100%;
  min-height: 768px; /* Screen ke hisab se ek minimum height */
  /* padding: 100px 0px 80px;  */
  /* 4. Content Centering (Optional - text ko vertical & horizontal align rakhne ke liye) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3.125rem);
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 800px;
  margin: 0 auto 30px;
  /* margin-bottom: 30px; */
}

.cta-deg {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38vw;
  color: rgb(114 98 243 / 19%);
  right: -8vw;
  bottom: -14vw;
  z-index: -9;
  line-height: 1;
  pointer-events: none;
}
/* ===========all services============== */
/* Core Section Layout */
.services-showcase-sec {
  background: #070a12; /* Deep high-contrast premium dark space */
  padding: 100px 40px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.services-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1300px;
  margin: 10px auto;
  align-items: normal;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(50px) scale(0.96);
  animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.services-left-col {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 120px;
}

.services-nav-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 16px 0px 0px 0px;
}

/* Premium Typography List Items */
.service-nav-item {
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  /* font-weight: 700; */
  line-height: 1.2;
  color: var(--text-light); /* Sleek muted inactive headers */
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
  user-select: none;
}

/* Bullet Slide Indicator Element */
.nav-indicator {
  width: 0;
  height: 4px;
  background: var(--primary-purple); /* Electric blue accent */
  border-radius: 2px;
  transition:
    width 0.4s cubic-bezier(0.25, 1, 0.3, 1),
    margin-right 0.4s ease;
}

.nav-text {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Inactive Hover Effect (Slightly brightens text without jumping anything) */
.service-nav-item:hover {
  color: rgba(255, 255, 255, 0.4);
}

/* Strict Clicked Active State Layout */
.service-nav-item.active {
  color: #ffffff;
  font-weight: 700;
}

.service-nav-item.active .nav-indicator {
  width: 30px;
  margin-right: 15px;
}

.service-nav-item.active .nav-text {
  transform: translateX(5px);
}

/* ==========================================================================
   DYNAMIC PARAGRAPH FADE CORE
   ========================================================================== */
.service-dynamic-desc-box {
  position: relative;
  min-height: 60px;
  margin-bottom: 30px;
}

.showcase-desc {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
  pointer-events: none;
}

.showcase-desc.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ==========================================================================
   PREMIUM HIGH-QUALITY IMAGE CONTAINER
   ========================================================================== */
.services-right-col {
  display: flex;
  flex-direction: column;
}

.image-display-frame {
  position: relative;
  width: 100%;
  padding-bottom: 64%;
  background: #0f172a;
  border-radius: 10px; /* Smooth elegant curves */
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Soft cinematic backlight running behind images */
.frame-ambient-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(59, 130, 246, 0.1),
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

.showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  scale: 1.08; /* Starts slightly larger for cinematic zoom out when clicked */
  transition:
    opacity 0.7s cubic-bezier(0.25, 1, 0.3, 1),
    scale 0.9s cubic-bezier(0.25, 1, 0.3, 1);
}

.showcase-img.active {
  opacity: 1;
  scale: 1;
  z-index: 2;
}
/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--line);
  background-color: var(--hov-bg-1);
  color: var(--paper);
}
.footer-content {
  padding: clamp(60px, 8vw, 120px) 0 0;
}
.footer-top {
  text-align: left;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  /* padding-bottom: 70px; */
}

.footer-top p {
  color: var(--text-soft);
  font-size: 14.5px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
  font-size: 14.5px;
}
.footer-col a:hover {
  color: var(--primary-cyan);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
  flex-wrap: wrap;
  gap: 12px;
}

/* reveal */

/* ==========================================================================
   RESPONSIVE BREAKPOINTS ENGINE
   ========================================================================== */
@media (max-width: 1024px) {
  .bento-carousel-track .bento-card {
    flex: 0 0 calc(50% - 12px); /* Tablets view: Shows 2 cards perfectly */
  }
}

@media (max-width: 640px) {
  .bento-carousel-track .bento-card {
    flex: 0 0 100%; /* Mobile View: Single card display stack */
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .left-arrow {
    left: -5px;
  }
  .right-arrow {
    right: -5px;
  }
}
/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.section-p {
  padding: 100px 0;
}
.section-pb {
  padding: 100px 0px 0px;
}

/*==========================================
      STRATEGY SECTION
==========================================*/

.strategy-container {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;

  /* border-radius:30px; */
  overflow: hidden;

  background: #eef2dc;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/*======================
 Left
======================*/

.strategy-content {
  padding: clamp(40px, 6vw, 80px);

  display: flex;
  align-items: center;
  height: 100%;
}
.st-box-1 {
  background: #ffeff4;
}
.st-box-2 {
  background: #f4efff;
}
.st-box-3 {
  background: #e9fbfe;
}
/*======================
 Right
======================*/

.strategy-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.strategy-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.5s;
}

.strategy-container:hover .strategy-image img {
  transform: scale(1.05);
}

/* -----------------popup form style------------------------- */

/* OVERLAY MODAL BACKGROUND */
.dm-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffffc9;
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.dm-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* POPUP BOX CONTAINER */
.dm-popup-content {
  background-color: #031b33; /* Dark Navy Blue Theme matching image */
  color: #ffffff;
  width: 100%;
  max-width: 600px;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.dm-popup-overlay.active .dm-popup-content {
  transform: translateY(0);
}

/* CLOSE BUTTON */
.dm-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #a0aec0;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.dm-popup-close:hover {
  color: #ffffff;
}

/* FORM GRID LAYOUT */
.dm-popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dm-form-row {
  display: grid;
  gap: 14px;
}

.dm-form-row.dm-col-3 {
  grid-template-columns: repeat(2, 1fr);
}

.dm-form-row.dm-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* FIELD STYLING */
.dm-field-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.dm-label {
  font-size: 13px;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.dm-label .req {
  color: #f87171;
  font-size: 11px;
}

.dm-popup-form input,
.dm-popup-form select,
.dm-popup-form textarea {
  width: 100%;
  background-color: #011226;
  border: 1px solid #1e3a5f;
  border-radius: 5px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.dm-popup-form input::placeholder,
.dm-popup-form textarea::placeholder {
  color: #94a3b8;
}

.dm-popup-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.dm-popup-form input:focus,
.dm-popup-form select:focus,
.dm-popup-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.dm-popup-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* -----------------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINT (Pure CSS Mobile Mechanics)
----------------------------------------------------------- */
@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
  }
  .nav-cta {
    display: none;
  }
  /* Hamburger Icon Styling */
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
  }
  .nav-link:hover {
    color: #b84dffbf;
  }
  .hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
  }

  /* Converting Horizontal Row into Vertical Block */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0f172a;
    flex-direction: column;
    height: auto;
    max-height: 0; /* Menu Hidden State */
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #1e293b;
  }
  .nav-links {
    display: none;
  }
  /* Checkbox logic to open mobile menu on click */
  .nav-toggle-input:checked ~ .nav-menu {
    max-height: 600px; /* Expands menu cleanly */
    overflow-y: auto;
  }
  .nav-menu {
    transition: all 0.3s ease-in-out;
  }
  /* Hamburger to X Transform on Click */
  .nav-toggle-input:checked ~ .hamburger-menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle-input:checked ~ .hamburger-menu span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle-input:checked ~ .hamburger-menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Responsive Dropdowns behavior adjustment */
  .dropdown-menu,
  .sub-dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none; /* Collapsed under hierarchy */
    transform: none;
    box-shadow: none;
    background-color: #1a2333;
    padding-left: 15px;
  }

  /* Mobile Click/Hover Toggle Reveal Rules */
  .has-dropdown:hover > .dropdown-menu,
  .has-sub-dropdown:hover > .sub-dropdown-menu {
    display: block;
    padding: 0;
  }

  .r-arrow {
    transform: rotate(90deg);
  }
  .global-panel {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .hero-bg {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .stats-section {
    padding: 50px 20px;
  }
  .stats-grid {
    margin-top: 30px;
  }
  .services-showcase-sec {
    padding: 80px 30px;
  }
  .services-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-left-col {
    position: relative;
    top: 0;
  }
  .service-dynamic-desc-box {
    order: 2;
    margin-top: 25px;
    margin-bottom: 0;
    min-height: auto;
  }
  .image-display-frame {
    order: 1;
    padding-bottom: 75%;
    border-radius: 24px;
  }
  .service-nav-item.active .nav-indicator {
    width: 20px;
    margin-right: 10px;
  }
  .gallery-flex-container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .desktop-panel-view {
    display: none; /* Disables desktop styles to prevent code conflicts */
  }

  .interactive-card-item {
    width: 100%;
    background-color: #161920;
    border-bottom: 1px solid #242936;
    outline: none;
    overflow: hidden;
  }

  /* Clean minimal vertical headers */
  .mobile-header-trigger {
    padding: 20px 40px;
    cursor: pointer;
  }

  .mobile-header-trigger h4 {
    color: #f3f4f6;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }

  .mobile-header-trigger h4::after {
    content: "↓";
    color: #ff6b6b;
    transition: transform 0.3s ease;
  }

  /* Expanding Body Layout Split Wrapper */
  .mobile-expandable-body {
    display: flex;
    width: 100%;
    max-height: 0; /* Hidden closed state setup */
    opacity: 0;
    overflow: hidden;
    background-color: #0e1118;
    transition:
      max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
      opacity 0.4s ease;
  }

  /* Left Side Paragraph Configuration */
  .mobile-left-text {
    width: 60%;
    padding: 0 15px 25px 20px;
    display: flex;
    align-items: center;
  }

  .mobile-left-text p {
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    padding: 0px 0px 0px 20px;
  }

  /* Right Side Accordion Image Panel */
  .mobile-right-img {
    width: 40%;
    height: 140px;
    padding-right: 20px;
    padding-bottom: 25px;
    overflow: hidden;
  }

  .mobile-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }

  /* --- MOBILES TAB TRIGGER FOCUS LOGIC --- */
  .interactive-card-item:focus .mobile-header-trigger h4::after {
    transform: rotate(180deg);
  }

  .interactive-card-item:focus .mobile-expandable-body {
    max-height: 220px; /* Smooth open expansion */
    opacity: 1;
    padding-top: 5px;
  }
  .process-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sticky-wrapper {
    position: relative;
    top: 0;
  }
  .process-step {
    margin-bottom: 60px;
  }
  .strategy-container {
    grid-template-columns: 1fr;
  }

  .strategy-content {
    order: 2;
    padding: 50px 35px;
  }

  .strategy-image {
    order: 1;
    height: 450px;
  }
}

@media (max-width: 768px) {
  .sec-pt {
    padding: 30px 40px;
  }
  .bento-carousel-container {
    padding: 20px 0 0;
    margin-top: -20px;
  }
  .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    gap: 20px;
  }
  .process-bg {
    padding: 30px 0px;
  }
  .section-pb {
    padding: 30px 0px 0px;
  }
  .stats-section {
    padding: 40px 20px;
  }
  .stats-grid {
    gap: 10px;
    margin-top: 30px;
  }
  .testimonial {
    padding: 30px 0;
  }
  .testimonial blockquote {
    margin: 0 auto 14px;
  }
  .center-heading {
    margin-bottom: 20px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .process-item {
    grid-template-columns: 100%;
    gap: 14px;
    padding: 10px 0;
  }
  .process-item > div:last-child {
    grid-column: 1/-1;
  }
  .wrap {
    padding: 0 20px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
    padding: 44px 26px;
  }
  .cta-banner {
    background-size: contain;
    height: 100%;
    padding: 30px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 20px;
  }
  .btn-primary {
    padding: 10px 16px;
    font-size: 12px;
  }
  .hero {
    height: 1fit-content;
    position: relative;
  }
  .services-showcase-sec {
    padding: 50px 20px;
  }
  .services-nav-list {
    gap: 10px;
  }
  .sec-subtitle {
    margin-bottom: 25px;
  }

  .strategy-container {
    border-radius: 20px;
    margin: 10px 0px 0px;
  }

  .strategy-content {
    padding: 35px 25px;
  }

  .strategy-image {
    height: 320px;
  }
  .dm-form-row.col-3,
  .dm-form-row.col-2 {
    grid-template-columns: 1fr;
  }
  .dm-popup-content {
    padding: 24px 18px;
  }
}
/* ============================================= */
.premium-interactive-gallery {
  /* background-color: #0b0f17; */
  width: 100% !important;
  overflow: hidden;
}

/* ==========================================================================
   1. DESKTOP ACCORDION GRID (Hover rules for mutual sizing adjustments)
   ========================================================================== */
@media (min-width: 992px) {
  .hamburger-menu {
    display: none;
  }
  .gallery-flex-container {
    display: flex;
    width: 100%;
    height: 650px; /* As per image proportions */
  }

  /* Sabhi cards by default pure barabar width share karenge (25% each) */
  .interactive-card-item {
    position: relative;
    width: 25%;
    height: 100%;
    overflow: hidden;
    /* Is multi-property transition logic se shrinking aur expanding sath me smoothly work karegi */
    transition: width 0.7s cubic-bezier(0.25, 1, 0.3, 1);
  }

  .desktop-panel-view {
    position: relative;
    width: 100%;
    height: 100%;
  }
  /* Target h2 inside desktop view safely */
  .desktop-panel-view h2 {
    /* 1. Reset default user-agent dynamic margins */
    margin: 0 !important;

    /* 2. Absolute Positioning Engine (Right-Side Alignment) */
    position: absolute;
    top: 50%; /* Vertically bilkul center me le jayega */
    right: 25px; /* Right edge se safe spacing distance */
    transform: translateY(-50%) rotate(180deg); /* Y-axis tracking offset correction + Text angle flow control */
    z-index: 4; /* Taaki content background image ke bilkul upar clear chamke */

    /* 3. Text Orientation & Layout Metrics */
    writing-mode: vertical-rl; /* Text flow vertical horizontal column structure me badal dega */
    text-orientation: mixed;
    white-space: nowrap; /* Text ko line break hone se rokega */

    /* 4. Typography Look Optimization */
    color: var(--paper);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    /* -webkit-text-stroke: 1px #ffffff; */
    /* Subtle dark shadow layer background overlay injection (Taaki white images pr bhi text chamke) */
    /* filter: drop-shadow(0px 4px 8px rgba(255, 252, 252, 0.8)); */
    /* --- TEXT KE PEECHE DARK OVERLAY GRADIENT ENGINE --- */
    /* background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgb(255 255 255) 50%,
      rgb(0 0 0 / 0%) 100%
    ); */
    pointer-events: none; /* Mouse hover smooth pass hone dene ke liye */
  }
  /* Sharp edges as requested */
  .card-bg-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px !important;

    /* Purani blocky pixelated line hata kar ye copy karein */
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.05) saturate(1.02);

    /* GPU Anti-blur engines */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
  }

  /* --- MAGIC FLEX INTERACTIVE MATRIX ---
     Jab container pr hover ho, toh sabhi cards pehle shrink (18%) honge,
     aur jis card par specific mouse pointer hoga woh scale up hokar 46% width occupy kar lega!
  --------------------------------------------------------------------------- */
  .gallery-flex-container:hover .interactive-card-item {
    width: 18%;
  }

  .gallery-flex-container .interactive-card-item:hover {
    width: 46%; /* Target card badi ho jayegi aur baki 3 automatic chhoti rahengi */
  }
  .gallery-flex-container .interactive-card-item:hover .desktop-panel-view h2 {
    display: none;
  }

  /* --- SOLID BACKGROUND CAPTION TEXT ENGINE (Image content alignment match) --- */
  .solid-caption-holder {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background-color: #000;
    transform: translateY(100%); /* Baseline hidden physics */
    z-index: 5;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
  }

  .eyebrow-text {
    color: var(--primary-cyan); /* Accent styling color */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
  }

  .card-title-text {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
  }

  .card-desc-text {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }

  /* Trigger mechanisms on hover */
  .interactive-card-item:hover .solid-caption-holder {
    transform: translateY(
      0
    ); /* Content smoothly scrolls up inside the expanded width */
  }

  .interactive-card-item:hover .card-bg-asset {
    transform: scale(1.05);
  }

  /* Hide responsive layouts from desktop nodes */
  .mobile-header-trigger,
  .mobile-expandable-body {
    display: none;
  }
}
.nav-item:hover > .dropdown-menu {
  display: block !important;
}

@media (min-width: 320px) and (max-width: 375px) {
  .eyebrow,
  .highlight-txt,
  .d-m-s {
    font-size: 10px;
  }
  .hero p,
  .img-hero p {
    font-weight: 200 !important;
  }
  .step-content p {
    font-size: 0.8rem;
  }
  .mobile-header-trigger h4 {
    font-size: 0.8em;
  }
  .cta-banner h2 {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.3;
  }
  .footer-top {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .footer-top p {
    color: #bdbdbd;
    font-size: 12px;
    text-align: center;
  }
  .footer-col li {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .footer-col h4 {
    margin-bottom: 10px;
  }
  .logo {
    margin: 0 auto;
  }
  .footer-bottom {
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }
  .footer-content-container {
    padding: 10px;
  }
  .footer-col {
    padding: 0% !important;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .dropdown-menu,
  .dropdown-menu a {
    background: linear-gradient(
      90deg,
      rgb(184 77 255 / 0%),
      rgb(108 99 255 / 0%)
    ) !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border: none !important;
    border-bottom: none !important;
    border: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .dropdown-menu,
  .dropdown-menu a {
    background: linear-gradient(
      90deg,
      rgb(184 77 255 / 0%),
      rgb(108 99 255 / 0%)
    ) !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border: none !important;
    border-bottom: none !important;
    border: none !important;
  }
}
@media (min-width: 1024px) {
}
