/* ========================================================
   DIGITAL NETAGIRI (by CampaignX) • MASTER DESIGN SYSTEM
   Ultra-modern, lightweight, responsive political tech agency CSS
   ======================================================== */

:root {
  /* Brand Colors */
  --bg-primary: #0b0617;
  --bg-secondary: #130b26;
  --bg-tertiary: #1b1035;
  --bg-card: rgba(26, 16, 50, 0.75);
  --bg-card-hover: rgba(38, 24, 73, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(255, 122, 0, 0.35);

  /* Primary Accent Gradients */
  --orange-primary: #ff6a00;
  --orange-light: #ff8533;
  --orange-dark: #e55300;
  --grad-orange: linear-gradient(135deg, #ff7a00 0%, #ff4500 100%);
  --grad-gold: linear-gradient(135deg, #fbb034 0%, #ffdd00 100%);
  --grad-hero-text: linear-gradient(135deg, #ffffff 30%, #ffaa5e 100%);
  --grad-purple-navy: linear-gradient(180deg, #180d30 0%, #0c0818 100%);

  /* Secondary Accents */
  --purple-accent: #8b5cf6;
  --purple-deep: #250942;
  --navy-deep: #0e162b;
  --wa-green: #25d366;
  --wa-green-hover: #20ba59;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --text-dark: #0f172a;

  /* Typography Fonts */
  --font-heading: 'Outfit', 'Noto Sans Devanagari', -apple-system, sans-serif;
  --font-body: 'Inter', 'Noto Sans Devanagari', -apple-system, sans-serif;

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow-orange: 0 8px 28px rgba(255, 106, 0, 0.35);
  --shadow-glow-purple: 0 12px 35px rgba(139, 92, 246, 0.25);

  /* Layout */
  --header-height: 74px;
  --mobile-bar-height: 64px;
  --container-max: 1200px;
}

/* ========================================================
   GLOBAL RESETS & BASE STYLES
   ======================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-muted);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin-bottom: 0.8rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-success { color: #10b981 !important; }
.text-warning { color: #f59e0b !important; }
.text-info { color: #38bdf8 !important; }

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #ff8a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #ff9e2c 0%, #ff4b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-hero {
  background: linear-gradient(135deg, #ff9433 0%, #ff4d00 50%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Common Header */
.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: #fed7aa;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dim);
}

/* ========================================================
   GLOBAL BUTTONS
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-whatsapp {
  background-color: var(--wa-green);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-primary-hero {
  padding: 14px 30px;
  font-size: 1.05rem;
}

.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-primary-setu {
  background: var(--grad-orange);
  color: #ffffff;
  padding: 14px 32px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-glow-orange);
}

.btn-primary-setu:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 106, 0, 0.5);
}

/* ========================================================
   1. STICKY HEADER
   ======================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(11, 6, 23, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 6, 23, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-badge-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(255, 122, 0, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.1;
}

.brand-sub {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
}

.sub-badge {
  color: var(--orange-light);
}

.sub-dot {
  color: rgba(255, 255, 255, 0.3);
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.nav-highlight {
  color: #ff9f43;
}

.nav-pill {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 122, 0, 0.2);
  color: var(--orange-light);
  border: 1px solid rgba(255, 122, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Header Action & WhatsApp */
.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-whatsapp-header {
  display: none;
  background-color: var(--wa-green);
  color: #ffffff;
  padding: 8px 18px;
  font-size: 0.88rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.hamburger-line {
  width: 100%;
  height: 2.2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Slide-in Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(11, 6, 23, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 20px 100px;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mobile-brand-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.mobile-brand-sub {
  font-size: 0.85rem;
  color: var(--orange-light);
  font-weight: 600;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}

.mobile-nav-link:hover {
  background: rgba(255, 122, 0, 0.12);
  border-color: rgba(255, 122, 0, 0.3);
  color: var(--orange-light);
}

.badge-mini {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--grad-orange);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-call-mobile {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================================
   2. HERO SECTION
   ======================================================== */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #290d4a 0%, #0b0617 70%);
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, rgba(139, 92, 246, 0.1) 45%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--orange-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 106, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

.eyebrow-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--orange-light);
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-subtext strong {
  color: #ffffff;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Quick Service Highlights 4-box */
.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.highlight-item:hover {
  background: rgba(255, 122, 0, 0.08);
  border-color: rgba(255, 122, 0, 0.25);
  transform: translateY(-2px);
}

.hl-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}

.hl-info {
  display: flex;
  flex-direction: column;
}

.hl-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.hl-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Hero Right: Interactive Dashboard Mockup */
.hero-visual {
  position: relative;
}

.dashboard-mockup-wrapper {
  background: linear-gradient(180deg, #1b0f33 0%, #110924 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.15);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.mockup-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-title-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
}

.status-live-indicator {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.demo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
}

.mockup-battery-status {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.mockup-inner-dashboard {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* KPI Cards inside Mockup */
.mockup-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px;
}

.kpi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.kpi-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
}

.kpi-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  padding: 1px 5px;
  border-radius: 4px;
}

.kpi-badge.live {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
}

.kpi-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 2px;
}

.kpi-sub {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.kpi-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}

.progress-bar-fill {
  height: 100%;
  background: var(--grad-orange);
  border-radius: 2px;
}

/* Mockup Center Row */
.mockup-activity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.activity-chart-box, .mockup-feed-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 12px;
}

.box-head, .feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.box-legend {
  font-size: 0.65rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}

.legend-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.legend-dot.orange { background: var(--orange-primary); }
.legend-dot.purple { background: var(--purple-accent); }

.mini-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  gap: 6px;
  padding-top: 10px;
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  background: linear-gradient(180deg, #ff7a00 0%, #8b5cf6 100%);
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
}

.bar-col span {
  font-size: 0.65rem;
  color: var(--text-dim);
}

/* Mockup Live Feed */
.feed-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.72rem;
  line-height: 1.3;
}

.feed-dot {
  width: 5px;
  height: 5px;
  background: var(--orange-primary);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.feed-text {
  color: var(--text-muted);
  flex: 1;
}

.feed-text strong {
  color: #ffffff;
}

.feed-time {
  font-size: 0.65rem;
  color: var(--text-dim);
  white-space: nowrap;
}

/* Mockup Bottom Strip */
.mockup-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.72rem;
}

.shield-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
}

.shield-icon {
  width: 14px;
  height: 14px;
  color: #10b981;
}

.sync-tag {
  color: #f59e0b;
  font-weight: 600;
}

/* ========================================================
   3. SERVICES SECTION
   ======================================================== */
.services-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0b0617 0%, #150b28 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(255, 106, 0, 0.15);
}

.card-glow-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.service-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
}

.service-card:hover .service-number {
  color: rgba(255, 122, 0, 0.4);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange-light);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--grad-orange);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
}

.srv-svg {
  width: 26px;
  height: 26px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.service-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text-muted);
}

.service-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange-light);
}

.service-btn-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.service-btn-link:hover {
  color: #ffffff;
}

.service-btn-link:hover svg {
  transform: translateX(4px);
}

/* ========================================================
   4. CHUNAV SETU SECTION
   ======================================================== */
.chunav-setu-section {
  padding: 100px 0;
  background: radial-gradient(circle at 70% 30%, #2b0b4b 0%, #0d061c 80%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.chunav-setu-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.setu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.setu-main-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.setu-lead-text {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.setu-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.setu-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 14px;
}

.feat-check-icon {
  width: 24px;
  height: 24px;
  background: var(--grad-orange);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.feat-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.feat-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 0;
}

.setu-action-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.demo-support-text {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* Chunav Setu SaaS UI Mockup Right */
.saas-window {
  background: #120924;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(255, 106, 0, 0.15);
  overflow: hidden;
}

.saas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.saas-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.saas-logo-mini {
  width: 24px;
  height: 24px;
  background: var(--grad-orange);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saas-env {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.saas-demo-tag {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
}

.saas-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.saas-ping {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulseGreen 1.8s infinite;
}

.saas-status-text {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
}

/* Ward Filter Tabs Bar */
.saas-tabs-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.tabs-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
}

.filter-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.filter-btn.active {
  background: var(--grad-orange);
  color: #ffffff;
  border-color: transparent;
}

/* Dynamic SaaS Body */
.saas-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.saas-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 12px 10px;
}

.st-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.st-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.st-meta {
  font-size: 0.65rem;
  font-weight: 600;
}

/* Booth Table */
.booth-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 14px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.panel-badge {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.booth-table-responsive {
  overflow-x: auto;
}

.saas-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  text-align: left;
}

.saas-table th {
  padding: 8px 10px;
  color: var(--text-dim);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.saas-table td {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.saas-table tr:last-child td {
  border-bottom: none;
}

.status-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.status-ready {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-progress {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* SaaS Footer Status */
.saas-footer-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
}

.sync-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
}

.sync-icon {
  width: 14px;
  height: 14px;
  color: var(--orange-light);
}

.demo-note {
  color: var(--text-dim);
  font-style: italic;
  font-size: 0.7rem;
}

/* ========================================================
   5. CAMPAIGN WORK / PORTFOLIO
   ======================================================== */
.portfolio-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #150b28 0%, #0d061a 100%);
  position: relative;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 106, 0, 0.2);
}

.portfolio-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #090314;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 6, 26, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.4);
}

.overlay-icon svg {
  width: 20px;
  height: 20px;
}

.overlay-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.portfolio-meta {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.port-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange-light);
  line-height: 1;
}

.port-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.port-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* ========================================================
   6. HOW WE WORK
   ======================================================== */
.how-we-work-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 10%, #1e0f38 0%, #0b0617 70%);
  position: relative;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.process-step-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 122, 0, 0.35);
  transform: translateY(-6px);
}

.step-num-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 1.8rem;
}

.step-title {
  font-size: 1.3rem;
  color: #ffffff;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ========================================================
   7. WHY DIGITAL NETAGIRI
   ======================================================== */
.why-us-section {
  padding: 100px 0;
  background: #0d061b;
  position: relative;
}

.why-us-box {
  background: linear-gradient(135deg, rgba(37, 18, 68, 0.8) 0%, rgba(18, 9, 36, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.why-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-lead {
  font-size: 1.15rem;
  max-width: 820px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.adv-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.25s ease;
}

.adv-item:hover {
  background: rgba(255, 122, 0, 0.06);
  border-color: rgba(255, 122, 0, 0.25);
  transform: translateY(-2px);
}

.adv-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}

.adv-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.adv-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Why Us Bottom Pillars Strip */
.why-pillars-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
}

.pillar-col.highlight {
  background: rgba(255, 122, 0, 0.15);
  border-color: rgba(255, 122, 0, 0.4);
}

.pillar-icon {
  font-size: 1.6rem;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

/* ========================================================
   8. CONTACT / CTA SECTION
   ======================================================== */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d061b 0%, #17092b 100%);
  position: relative;
}

.contact-cta-wrapper {
  position: relative;
  background: radial-gradient(circle at 50% 0%, #4a1575 0%, #20083a 60%, #110420 100%);
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 106, 0, 0.2);
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.25) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-header {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.cta-main-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-subtext {
  font-size: 1.15rem;
  color: #fed7aa;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Election Type Chips Selector */
.election-selector-box {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.selector-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.selector-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.chip {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  color: #ffffff;
  transition: all 0.2s ease;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.16);
}

.chip.active {
  background: var(--grad-orange);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.4);
}

/* CTA Buttons Row */
.cta-buttons-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-cta-phone {
  background: #ffffff;
  color: #1a0833;
  padding: 16px 36px;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-cta-phone:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.35);
}

.btn-cta-whatsapp {
  background: var(--wa-green);
  color: #ffffff;
  padding: 16px 36px;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-cta-whatsapp:hover {
  background: var(--wa-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.cta-office-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #cbd5e1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.office-sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ========================================================
   9. FOOTER
   ======================================================== */
.site-footer {
  background: #080311;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 100px;
  color: var(--text-dim);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-powered {
  font-size: 0.85rem;
  color: var(--orange-light);
  font-weight: 700;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-about {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 440px;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-nav a:hover {
  color: var(--orange-light);
  padding-left: 4px;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-item:hover {
  color: var(--orange-light);
}

/* Footer Disclaimer */
.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.copyright-text strong {
  color: #ffffff;
}

/* ========================================================
   10. MOBILE BOTTOM BAR
   ======================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--mobile-bar-height);
  background: rgba(14, 7, 28, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 122, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-bar-btn.btn-call {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-bar-btn.btn-wa {
  background: var(--wa-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none !important;
  }
  .site-footer {
    padding-bottom: 60px;
  }
}

/* ========================================================
   PORTFOLIO LIGHTBOX MODAL
   ======================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 3, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: var(--orange-primary);
  border-color: transparent;
  transform: rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.lightbox-nav-btn:hover {
  background: var(--orange-primary);
  border-color: transparent;
}

.lightbox-nav-btn.prev { left: -24px; }
.lightbox-nav-btn.next { right: -24px; }

.lightbox-nav-btn svg {
  width: 24px;
  height: 24px;
}

/* ========================================================
   SCROLL REVEAL ANIMATIONS
   ======================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================
   RESPONSIVE BREAKPOINTS
   ======================================================== */

/* Large Desktop */
@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
  .btn-whatsapp-header {
    display: inline-flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .hero-container {
    grid-template-columns: 1.15fr 1fr;
  }
}

/* Tablet Layout (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chunav-setu-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Screens (< 768px) */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }
  
  body {
    padding-bottom: var(--mobile-bar-height);
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 50px;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-highlights-grid {
    grid-template-columns: 1fr;
  }

  .mockup-kpi-grid {
    grid-template-columns: 1fr;
  }

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

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

  .chunav-setu-layout {
    grid-template-columns: 1fr;
  }

  .setu-features-list {
    grid-template-columns: 1fr;
  }

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

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

  .process-steps-grid {
    grid-template-columns: 1fr;
  }

  .why-us-box {
    padding: 36px 20px;
  }

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

  .why-pillars-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-cta-wrapper {
    padding: 40px 20px;
  }

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

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

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lightbox-nav-btn.prev { left: 4px; }
  .lightbox-nav-btn.next { right: 4px; }
}

/* Extra Small (320px - 380px) */
@media (max-width: 380px) {
  .brand-main {
    font-size: 1.05rem;
  }
  .hero-headline {
    font-size: 1.85rem;
  }
  .why-pillars-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .saas-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   LEADERSHIP & DIRECTOR PROFILE SECTION
   ======================================================== */
.director-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 106, 0, 0.08) 0%, transparent 50%);
}

.director-card-wrapper {
  position: relative;
  background: radial-gradient(circle at 15% 25%, rgba(255, 122, 0, 0.12) 0%, rgba(26, 16, 50, 0.85) 100%);
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 45px rgba(255, 106, 0, 0.12);
  backdrop-filter: blur(16px);
}

.director-bg-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.25) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.director-card-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Left Column / Image Card */
.director-photo-col {
  display: flex;
  flex-direction: column;
}

.director-image-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.director-img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 122, 0, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 106, 0, 0.25);
  background: #110924;
}

.director-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.director-img-container:hover .director-img {
  transform: scale(1.04);
}

.director-badge-floating {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 6, 23, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 122, 0, 0.5);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff9e2c;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.director-brand-stamp {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(11, 6, 23, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
}

.director-brand-stamp .stamp-sub {
  font-size: 0.7rem;
  color: #ffaa5e;
  font-weight: 500;
}

/* Quick Contacts */
.director-quick-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-director-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btn-director-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  filter: brightness(1.08);
}

.btn-director-call {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.btn-director-call:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-2px);
}

/* Right Column / Details */
.director-details-col {
  display: flex;
  flex-direction: column;
}

.director-name-block {
  margin-bottom: 20px;
}

.director-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.35);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ff9e2c;
  margin-bottom: 12px;
}

.director-name {
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.director-name .en-name {
  font-size: 1.55rem;
  font-weight: 600;
  color: #ff9e2c;
  margin-left: 6px;
}

.director-designation {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-top: 6px;
}

.director-designation strong {
  color: #ffffff;
}

/* Quote Box */
.director-quote-box {
  position: relative;
  background: rgba(139, 92, 246, 0.09);
  border-left: 4px solid var(--orange-primary);
  border-radius: 0 16px 16px 0;
  padding: 22px 26px 20px 32px;
  margin: 18px 0 24px 0;
  backdrop-filter: blur(8px);
}

.director-quote-box .quote-mark {
  position: absolute;
  top: -8px;
  left: 10px;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255, 122, 0, 0.25);
  font-family: Georgia, serif;
}

.director-quote-box .quote-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #f1f5f9;
}

.director-quote-box .quote-author {
  text-align: right;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffaa5e;
  margin-top: 8px;
}

/* Expertise Grid */
.director-expertise-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.director-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.exp-card {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  transition: all 0.3s ease;
}

.exp-card:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.exp-icon {
  font-size: 1.55rem;
  flex-shrink: 0;
  line-height: 1;
}

.exp-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.exp-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.45;
}

/* Stats Row */
.director-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(11, 6, 23, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 24px;
}

.d-stat-item {
  text-align: center;
}

.d-stat-val {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.15;
}

.d-stat-item.highlight .d-stat-val {
  color: #ff7a00;
}

.d-stat-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* Director CTA Bar */
.director-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.14) 0%, rgba(139, 92, 246, 0.14) 100%);
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: 16px;
  padding: 18px 22px;
}

.d-cta-text {
  display: flex;
  flex-direction: column;
}

.d-cta-text strong {
  color: #ffffff;
  font-size: 1rem;
}

.d-cta-text span {
  color: #cbd5e1;
  font-size: 0.82rem;
}

/* Footer Director Mention */
.footer-director-mention {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 122, 0, 0.28);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: #ffaa5e;
}

/* Responsive Media Queries for Director Section */
@media (max-width: 992px) {
  .director-card-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .director-photo-col {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .director-img {
    height: 400px;
  }

  .director-cta-bar {
    flex-direction: column;
    text-align: center;
  }

  .director-cta-bar .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .director-card-wrapper {
    padding: 32px 20px;
  }

  .director-name {
    font-size: 1.85rem;
  }

  .director-name .en-name {
    font-size: 1.25rem;
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }

  .director-expertise-grid {
    grid-template-columns: 1fr;
  }

  .director-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .director-img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .director-name {
    font-size: 1.6rem;
  }

  .director-stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 14px 10px;
  }

  .d-stat-val {
    font-size: 1.45rem;
  }

  .director-card-wrapper {
    padding: 24px 14px;
  }
}

