/* ==========================================================================
   SkyDreamix Tech Solutions Private Limited - Premium Modern CSS Design System
   Targeting: North Bengal, West Bengal
   Colors: Deep Navy (#0a192f), Dark Blue (#0f172a), Electric Blue (#2563eb), Cyan (#06b6d4)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --font-primary:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Color Palette */
  --navy-deep: #070d19;
  --navy-dark: #0a192f;
  --navy-card: #0f2342;
  --navy-surface: #142a4d;

  --blue-primary: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-dark: #1e3a8a;
  --blue-light: #60a5fa;
  --blue-subtle: #eff6ff;

  --cyan-accent: #06b6d4;
  --cyan-hover: #0891b2;
  --cyan-light: #ecfeff;
  --cyan-glow: rgba(6, 182, 212, 0.35);

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --whatsapp-color: #25d366;
  --whatsapp-hover: #1da851;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);

  /* Shadows & Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 25px -5px rgba(15, 23, 42, 0.08),
    0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-xl:
    0 20px 35px -10px rgba(15, 23, 42, 0.12),
    0 10px 15px -5px rgba(15, 23, 42, 0.06);
  --shadow-blue-glow: 0 10px 30px -5px rgba(37, 99, 235, 0.3);
  --shadow-cyan-glow: 0 10px 30px -5px rgba(6, 182, 212, 0.3);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100%;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* --- Typography Helpers --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.25;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--blue-primary) 0%,
    var(--cyan-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-light {
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  color: var(--blue-primary);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--cyan-accent);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--slate-600);
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

section[id] {
  scroll-margin-top: 80px;
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary) 0%, #1d4ed8 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-whatsapp {
  background: var(--whatsapp-color);
  color: var(--white);
  box-shadow: 0 10px 25px -5px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--slate-800);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  transform: translateY(-2px);
  color: var(--blue-primary);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* --- Sticky Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header.scrolled {
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-700);
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--blue-primary);
  background: rgba(37, 99, 235, 0.08);
}

.nav-link.active {
  color: var(--blue-primary);
  background: rgba(37, 99, 235, 0.12);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.nav-link::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--slate-800);
  padding: 8px;
  border-radius: var(--radius-sm);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 30px 24px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-200);
}

.drawer-close {
  font-size: 1.5rem;
  color: var(--slate-600);
  padding: 6px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.drawer-link {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.drawer-link:hover {
  color: var(--blue-primary);
  background: rgba(37, 99, 235, 0.06);
  padding-left: 18px;
}

.drawer-link.active {
  color: var(--blue-primary);
  background: rgba(37, 99, 235, 0.1);
  font-weight: 700;
  border-left: 3px solid var(--blue-primary);
}

.drawer-link i {
  font-size: 0.85rem;
  color: var(--slate-400);
  transition: transform 0.2s ease, color 0.2s ease;
}

.drawer-link:hover i,
.drawer-link.active i {
  color: var(--blue-primary);
  transform: translateX(4px);
}

.drawer-contact {
  padding-top: 20px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--slate-600);
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 140px;
  padding-bottom: 90px;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(37, 99, 235, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(6, 182, 212, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(37, 99, 235, 0.08) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.shape-blob-1 {
  top: -100px;
  right: -50px;
  width: 550px;
  height: 550px;
  background: rgba(37, 99, 235, 0.28);
  animation: pulseGlow 10s ease-in-out infinite;
}

.shape-blob-2 {
  bottom: -50px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: rgba(6, 182, 212, 0.22);
  animation: pulseGlow 12s ease-in-out infinite reverse;
}

.shape-blob-3 {
  top: 40%;
  left: 45%;
  width: 320px;
  height: 320px;
  background: rgba(37, 211, 102, 0.12);
  filter: blur(100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Glowing Live Section Badge */
.hero-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-full);
  color: var(--blue-primary);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px -2px rgba(37, 99, 235, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-normal);
}

.hero-badge-glow:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 6px 25px -2px rgba(37, 99, 235, 0.22);
  transform: translateY(-1px);
}

.live-pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.text-yellow {
  color: #f59e0b;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--slate-900);
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(37, 99, 235, 0.25));
}

/* Service Pills */
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.service-pill i {
  color: var(--blue-primary);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.service-pill:hover {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
}

.service-pill:hover i {
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 14px;
  line-height: 1.45;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 28px;
  max-width: 600px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-hero-primary {
  position: relative;
  overflow: hidden;
  padding: 15px 32px;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.btn-hero-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(25deg);
  transition: all 0.65s ease;
}

.btn-hero-primary:hover::after {
  left: 130%;
}

.btn-hero-whatsapp {
  padding: 15px 28px;
  font-size: 1.02rem;
  font-weight: 700;
}

.hero-trust-bar-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-phone-direct {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-800);
  padding: 8px 18px 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.08);
  width: fit-content;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.hero-phone-direct:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.18);
  transform: translateY(-2px);
}

.phone-icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.phone-num-link,
.hero-phone-direct a {
  color: var(--blue-primary);
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: color 0.2s ease;
}

.phone-num-link:hover,
.hero-phone-direct a:hover {
  color: var(--blue-hover);
  text-decoration: none !important;
}

/* Rating Badge */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rating-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.82rem;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--slate-700);
}

.rating-text strong {
  color: var(--slate-900);
  font-weight: 800;
}

/* Digital Dashboard Graphic Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.visual-ambient-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.28) 0%,
    rgba(6, 182, 212, 0.2) 50%,
    transparent 70%
  );
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
  border-radius: 30px;
}

.dashboard-mockup {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #070d19 0%, #0c1c36 50%, #0f2342 100%);
  border-radius: 24px;
  padding: 26px;
  box-shadow:
    0 30px 70px -15px rgba(7, 13, 25, 0.45),
    0 0 60px rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
}

.dashboard-mockup:hover {
  transform: translateY(-4px);
  box-shadow:
    0 35px 80px -15px rgba(7, 13, 25, 0.55),
    0 0 75px rgba(6, 182, 212, 0.28);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red {
  background: #ff5f56;
}
.dot-yellow {
  background: #ffbd2e;
}
.dot-green {
  background: #27c93f;
}

.mockup-title {
  font-size: 0.82rem;
  color: var(--slate-400);
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-status-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--whatsapp-color);
  background: rgba(37, 211, 102, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.pulse-green-sm {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--whatsapp-color);
  box-shadow: 0 0 8px var(--whatsapp-color);
}

.dash-grid,
.dashboard-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.dash-card {
  background: rgba(15, 35, 66, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.dash-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 182, 212, 0.3);
}

.dash-card-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  margin-bottom: 8px;
}

.dash-card-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan-accent);
}

.dash-card-sub {
  font-size: 0.75rem;
  color: var(--whatsapp-color);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.rank-badge-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(20, 42, 77, 0.85);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease;
}

.rank-badge-item:hover {
  background: rgba(24, 52, 94, 0.95);
}

.rank-badge-item:last-child {
  margin-bottom: 0;
}

.rank-tag {
  background: rgba(37, 211, 102, 0.2);
  color: var(--whatsapp-color);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.top-3-tag {
  background: rgba(6, 182, 212, 0.2);
  color: var(--cyan-accent);
}

.dash-wide-banner {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.28) 0%,
    rgba(6, 182, 212, 0.28) 100%
  );
  border: 1px solid rgba(6, 182, 212, 0.45);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.dash-wide-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.tag-conversion {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Floating Glassmorphism Badges on Hero Graphic */
.floating-hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--slate-900);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow:
    0 20px 40px -10px rgba(15, 23, 42, 0.18),
    0 0 25px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.badge-top-left {
  top: -24px;
  left: -24px;
}

.badge-bottom-right {
  bottom: -24px;
  right: -24px;
  animation-delay: 2s;
}

.badge-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.badge-icon-box.green-glow {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-color);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.badge-icon-box.blue-glow {
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.floating-hero-badge-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 600;
}

.floating-hero-badge-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--slate-900);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --- Trust Bar Section --- */
.trust-bar-section {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--slate-200);
}

.trust-title {
  text-align: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  font-weight: 700;
  margin-bottom: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  transition: var(--transition-fast);
}

.trust-item:hover {
  transform: translateY(-2px);
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--slate-800);
  line-height: 1.3;
}

/* --- Services Section --- */
.services-section {
  background: var(--slate-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(6, 182, 212, 0.1) 100%
  );
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(
    135deg,
    var(--blue-primary) 0%,
    var(--cyan-accent) 100%
  );
  color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* --- North Bengal SEO Content Section --- */
.nb-seo-section {
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}

.nb-seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.nb-seo-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
}

.nb-seo-content p {
  color: var(--slate-300);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.seo-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.seo-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-card);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 600;
}

.seo-feature-item i {
  color: var(--cyan-accent);
  font-size: 1.1rem;
}

.nb-seo-card-wrapper {
  background: var(--navy-card);
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.nb-seo-badge {
  color: var(--cyan-accent);
  font-family: monospace;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

/* --- Locations Section --- */
.locations-section {
  background: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.location-card {
  background: var(--slate-50);
  padding: 22px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-lg);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.location-header i {
  color: var(--blue-primary);
  font-size: 1.2rem;
}

.location-card h3 {
  font-size: 1.15rem;
}

.location-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 16px;
}

.location-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--whatsapp-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.location-cta:hover {
  color: var(--whatsapp-hover);
}

/* --- Why Choose Us Section --- */
.why-us-section {
  background: var(--slate-50);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.why-number {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.15);
  line-height: 1;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

/* --- Process Section --- */
.process-section {
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 40px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--slate-200);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 0 6px var(--white);
  transition: var(--transition-fast);
}

.process-step:hover .step-num {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow:
    0 0 0 6px var(--white),
    var(--shadow-blue-glow);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--slate-600);
}

/* --- Packages Section --- */
.packages-section {
  background: var(--slate-50);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 40px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.package-card.featured {
  border: 2px solid var(--blue-primary);
  box-shadow: var(--shadow-blue-glow);
  transform: scale(1.03);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.package-badge {
  position: absolute;
  top: -14px;
  right: 30px;
  background: linear-gradient(
    135deg,
    var(--blue-primary) 0%,
    var(--cyan-accent) 100%
  );
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.package-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
}

.package-header h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.package-price {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--slate-900);
}

.package-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-500);
}

.package-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--slate-700);
  margin-bottom: 12px;
}

.package-features li i {
  color: var(--whatsapp-color);
  font-size: 1rem;
}

.custom-package-cta {
  background: var(--navy-dark);
  color: var(--white);
  padding: 36px 40px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}

.custom-package-text h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.custom-package-text p {
  color: var(--slate-300);
  font-size: 1rem;
}

/* --- Industries Section --- */
.industries-section {
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--slate-50);
  padding: 24px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  text-align: center;
  transition: var(--transition-fast);
}

.industry-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  font-size: 2rem;
  color: var(--blue-primary);
  margin-bottom: 12px;
}

.industry-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
}

/* --- FAQ Accordion Section --- */
.faq-section {
  background: var(--slate-50);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-900);
}

.faq-question i {
  color: var(--blue-primary);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.35s ease-in-out;
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Enquiry Form & Contact Section --- */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-wrapper h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.contact-info-wrapper > p {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 32px;
}

.contact-card-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.c-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.c-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.c-info-details span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 700;
}

.c-info-details strong,
.c-info-details a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
}

.enquiry-form-card {
  background: var(--slate-50);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
}

.enquiry-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.enquiry-form-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-300);
  background: var(--white);
  color: var(--slate-800);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Modal Confirmation Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px auto;
}

.modal-box h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

.modal-subtext {
  font-size: 0.85rem;
  color: var(--slate-500);
  background: var(--slate-50);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

/* --- Final CTA Section --- */
.final-cta-section {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-deep) 100%
  );
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-box h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
}

.final-cta-box p {
  font-size: 1.15rem;
  color: var(--slate-300);
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.9rem;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--blue-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate-400);
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--blue-primary);
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* --- Floating WhatsApp Circular Button --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition-fast);
  cursor: pointer;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  background: var(--whatsapp-hover);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp-color);
  opacity: 0.6;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--slate-900);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

/* --- Mobile Bottom Sticky Action Bar --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy-dark);
  padding: 10px 16px;
  z-index: 998;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-bottom-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 10px;
}

.m-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.m-bar-btn.call {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.m-bar-btn.whatsapp {
  background: var(--whatsapp-color);
  color: var(--white);
}

.m-bar-btn.enquire {
  background: var(--blue-primary);
  color: var(--white);
}


/* ==========================================================================
   Component Enhancements, Effects & Utilities
   ========================================================================== */

/* Card Transitions & Dynamic Top Gradient Bar */
.service-card,
.package-card,
.why-card,
.location-card,
.industry-card,
.enquiry-form-card,
.contact-card-box {
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
}

.service-card:hover,
.package-card:hover,
.why-card:hover,
.location-card:hover,
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 35px -8px rgba(15, 23, 42, 0.12),
    0 0 20px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-card,
.why-card,
.location-card,
.industry-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.why-card::before,
.location-card::before,
.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--cyan-accent));
  transition: width 0.4s ease;
}

.service-card:hover::before,
.why-card:hover::before,
.location-card:hover::before,
.industry-card:hover::before {
  width: 100%;
}

.service-icon-box {
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.12);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    color 0.3s ease;
}

.service-card:hover .service-icon-box {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.package-card.featured {
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(135deg, var(--blue-primary), var(--cyan-accent));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 16px 40px -10px rgba(37, 99, 235, 0.35);
}

.package-card.featured:hover {
  box-shadow: 0 22px 50px -10px rgba(37, 99, 235, 0.45);
}

/* Section Badges & Keyframe Animations */
.section-badge:not(.hero-badge-glow)::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-primary);
  box-shadow: 0 0 10px var(--blue-primary);
}

.hero-badge-glow::before {
  display: none !important;
}

.section-badge.light::before {
  background: var(--cyan-accent);
  box-shadow: 0 0 10px var(--cyan-accent);
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.12) translate(-10px, 15px);
    opacity: 0.65;
  }
}

@keyframes ringPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp-btn {
  animation: ringPulse 2.5s infinite;
}

.faq-item {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 6px 18px -4px rgba(15, 23, 42, 0.06);
}

/* Form Input Interactive Focus Glow */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-primary);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.15),
    0 4px 12px rgba(37, 99, 235, 0.08);
}

/* --- Universal Word-Wrap & Containment --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
label,
button,
input,
select,
textarea {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.faq-question span,
.c-info-details,
.c-info-details strong,
.c-info-details a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 0;
}

/* --- Utility & Helper Classes --- */
.logo-sm {
  height: 36px;
}

.logo-md {
  width: 220px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mr-8 {
  margin-right: 8px;
}

.p-16 {
  padding: 16px;
}

.fs-12 {
  font-size: 1.2rem;
}

.text-blue {
  color: var(--blue-primary);
}

.text-white {
  color: var(--white);
}

.text-cyan {
  color: var(--cyan-accent);
}

.text-whatsapp {
  color: var(--whatsapp-color);
}

.text-slate-300 {
  color: var(--slate-300);
}

.fw-600 {
  font-weight: 600;
}

.link-blue-underline {
  color: var(--blue-primary);
  text-decoration: none;
}

.pos-relative {
  position: relative;
}

.dash-rankings-card {
  background: var(--navy-card);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tag-conversion {
  font-size: 0.8rem;
  background: var(--blue-primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.nb-seo-card-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.nb-seo-card-desc {
  color: var(--slate-300);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-whatsapp-form {
  padding: 16px;
}

/* 404 Error Page Styles */
.error-main-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.error-code-text {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--blue-primary) 0%,
    var(--cyan-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.error-heading {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.error-desc {
  color: var(--slate-600);
  margin-bottom: 28px;
}

.error-btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Consolidated Hierarchical Responsive Breakpoints
   ========================================================================== */

/* Large Tablets / Small Laptops (<= 1200px) */
@media (max-width: 1200px) {
  .services-grid,
  .locations-grid,
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .nav-menu,
  .header-actions .btn-whatsapp {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .hero-grid,
  .nb-seo-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover {
    transform: translateY(-6px);
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-timeline::before {
    display: none;
  }

  .custom-package-cta {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nb-seo-card-wrapper {
    padding: 28px 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .badge-top-left {
    top: -16px;
    left: 0;
  }

  .badge-bottom-right {
    bottom: -16px;
    right: 0;
  }
}

/* Small Tablets & Large Phones (<= 768px) */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  h1,
  .hero-content h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    line-height: 1.25;
  }

  h2,
  .contact-info-wrapper h2,
  .section-header h2,
  .final-cta-box h2,
  .nb-seo-content h2 {
    font-size: clamp(1.35rem, 5.2vw, 1.8rem);
    line-height: 1.3;
  }

  h3,
  .enquiry-form-card h3,
  .nb-seo-card-title,
  .modal-box h3 {
    font-size: clamp(1.15rem, 4.5vw, 1.4rem);
    line-height: 1.35;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  .header-container {
    height: 70px;
    padding: 0 16px;
  }

  .logo-img {
    height: 34px;
    max-width: 170px;
  }

  .services-grid,
  .locations-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-bottom-bar {
    display: block;
  }

  .floating-whatsapp-btn {
    bottom: 80px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }

  .enquiry-form-card {
    padding: 24px 16px;
    width: 100%;
    max-width: 100%;
  }

  .contact-card-box {
    gap: 14px;
    width: 100%;
    max-width: 100%;
  }

  .c-info-item {
    padding: 14px;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .c-info-details {
    flex: 1;
    min-width: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .seo-feature-list {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-badge-glow {
    font-size: 0.8rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-service-pills {
    justify-content: flex-start;
  }

  .hero-trust-bar-inline {
    gap: 12px;
  }

  .hero-phone-direct,
  .hero-rating-badge {
    width: 100%;
    justify-content: center;
  }

  .dashboard-mockup {
    padding: 20px 16px;
    border-radius: 18px;
    width: 100%;
  }

  .dash-card {
    padding: 14px 12px;
  }

  .nb-seo-card-wrapper {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .faq-question {
    padding: 16px;
    font-size: 0.95rem;
    width: 100%;
    gap: 10px;
  }

  .faq-question span {
    flex: 1;
    min-width: 0;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 18px 16px;
  }

  footer {
    padding-bottom: 80px;
  }
}

/* Medium Phones (<= 576px) */
@media (max-width: 576px) {
  .hero-content {
    text-align: center;
  }

  .hero-badge-glow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-service-pills {
    justify-content: center;
  }

  .hero-subtitle,
  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-trust-bar-inline {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .floating-hero-badge {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 10px 0;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    animation: none;
  }

  .badge-top-left,
  .badge-bottom-right {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .dash-grid,
  .dashboard-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dash-card-val {
    font-size: 1.35rem;
  }

  .rank-badge-item {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .dash-wide-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 14px;
  }

  .nb-seo-card-wrapper {
    padding: 20px 14px;
    border-radius: var(--radius-md);
  }

  .nb-seo-card-title {
    font-size: 1.3rem;
  }
}

/* Compact Phones (<= 480px) */
@media (max-width: 480px) {
  .services-grid,
  .locations-grid,
  .industries-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .hero-badge-glow {
    font-size: 0.74rem;
    padding: 5px 12px;
  }

  .service-pill {
    font-size: 0.78rem;
    padding: 5px 10px;
  }

  .enquiry-form-card {
    padding: 18px 12px;
  }

  .c-info-item {
    padding: 12px 10px;
    gap: 10px;
  }

  .c-info-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .c-info-details strong,
  .c-info-details a {
    font-size: 0.88rem;
  }

  .btn {
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .floating-whatsapp-btn {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    right: 12px;
    bottom: 74px;
  }
}

/* Small Screen Phones (<= 380px) */
@media (max-width: 380px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-container {
    padding: 10px 12px;
  }

  .logo-img {
    height: 30px;
    max-width: 170px;
  }

  h1,
  .hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .section-badge {
    font-size: 0.72rem;
    padding: 3px 10px;
  }

  .btn {
    padding: 11px 16px;
    font-size: 0.88rem;
  }

  .btn-sm {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }

  .floating-hero-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .dash-card-val {
    font-size: 1.15rem;
  }

  .enquiry-form-card {
    padding: 20px 14px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 11px 12px;
    font-size: 0.92rem;
  }

  .mobile-bottom-bar-grid {
    gap: 4px;
  }

  .m-bar-btn {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .m-bar-btn i {
    font-size: 0.95rem;
  }
}

/* Very Small Phones (<= 360px) */
@media (max-width: 360px) {
  h1,
  .hero-content h1 {
    font-size: 1.45rem;
  }

  h2,
  .contact-info-wrapper h2,
  .section-header h2 {
    font-size: 1.25rem;
  }

  .header-container {
    padding: 0 10px;
  }

  .logo-img {
    height: 28px;
    max-width: 140px;
  }

  .m-bar-btn {
    font-size: 0.7rem;
    padding: 8px 4px;
  }
}

/* Ultra Small / Foldable Devices (<= 320px) */
@media (max-width: 320px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo-img {
    height: 26px;
    max-width: 150px;
  }

  .btn-whatsapp-sm,
  .btn-sm {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  h1,
  .hero-content h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero-tagline {
    font-size: 0.88rem;
  }

  .service-card,
  .package-card,
  .why-card,
  .location-card {
    padding: 18px 14px;
  }

  .package-price {
    font-size: 1.6rem;
  }

  .floating-whatsapp-btn {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    bottom: 74px;
    right: 12px;
  }

  .mobile-bottom-bar {
    padding: 6px 4px;
  }
}