/* =======================================================
   EleX Pro — Election Voter Management
   Indian Culture Themed Static Website
   ======================================================= */

:root {
  /* Indian culture palette */
  --saffron: #FF9933;
  --saffron-deep: #FF6B35;
  --white: #FFFFFF;
  --india-green: #138808;
  --india-green-light: #2ECC71;
  --navy: #0D47A1;
  --ashoka-blue: #000080;
  --gold: #FFD700;
  --gold-deep: #D4A017;
  --teal: #00897B;
  --maroon: #8B1A1A;
  --cream: #FFF8DC;

  /* neutrals */
  --dark: #1A1A2E;
  --text: #2C2C54;
  --text-muted: #5A5A7A;
  --bg: #FFFBF5;
  --bg-soft: #FFF3E0;
  --card-bg: rgba(255, 255, 255, 0.85);
  --border: rgba(255, 153, 51, 0.25);

  /* gradients */
  --grad-tricolor: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
  --grad-saffron: linear-gradient(135deg, #FF9933 0%, #FF6B35 100%);
  --grad-gold: linear-gradient(135deg, #FFD700 0%, #FF9933 100%);
  --grad-hero: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 50%, #FFDAB9 100%);
  --grad-card: linear-gradient(135deg, rgba(255,153,51,0.08) 0%, rgba(19,136,8,0.08) 100%);

  /* shadows */
  --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.12);
  --shadow-md: 0 6px 20px rgba(255, 107, 53, 0.18);
  --shadow-lg: 0 12px 40px rgba(255, 107, 53, 0.22);
  --shadow-gold: 0 8px 30px rgba(255, 215, 0, 0.35);

  /* spacing */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* =================== BACKGROUND DECORATIONS =================== */
.bg-decorations {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: floatBlob 18s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: var(--saffron); top: -120px; left: -100px; animation-delay: 0s; }
.blob-2 { width: 360px; height: 360px; background: var(--india-green); top: 40%; right: -120px; animation-delay: -4s; }
.blob-3 { width: 300px; height: 300px; background: var(--gold); bottom: 10%; left: 30%; animation-delay: -8s; }
.blob-4 { width: 280px; height: 280px; background: var(--navy); top: 60%; left: -80px; animation-delay: -12s; opacity: 0.3; }
.blob-5 { width: 200px; height: 200px; background: var(--teal); top: 15%; right: 25%; animation-delay: -6s; }

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 40px) scale(0.95); }
}

/* Bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,153,51,0.35));
  border: 1px solid rgba(255, 153, 51, 0.3);
  animation: riseBubble linear infinite;
  opacity: 0.55;
}
@keyframes riseBubble {
  0%   { transform: translateY(0) scale(0.9); opacity: 0; }
  10%  { opacity: 0.55; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-110vh) scale(1.15); opacity: 0; }
}

/* Decorative lines (SVG grid overlay) */
.lines-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,153,51,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,136,8,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

/* Mandala rotating decoration */
.mandala {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 153, 51, 0.18);
  top: 10%; right: -200px;
  animation: rotateSlow 60s linear infinite;
}
.mandala::before, .mandala::after {
  content: '';
  position: absolute; inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(19, 136, 8, 0.18);
}
.mandala::after { inset: 80px; border-color: rgba(255, 215, 0, 0.25); }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.mandala-2 {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 2px dashed rgba(13, 71, 161, 0.15);
  bottom: 5%; left: -150px;
  animation: rotateSlow 80s linear infinite reverse;
}

/* =================== NAVIGATION =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 251, 245, 0.8);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}
.nav-brand img {
  width: 44px; height: 44px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-brand-text strong {
  font-size: 18px;
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.nav-brand-text span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  font-size: 15px;
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--grad-saffron);
  color: white;
  box-shadow: var(--shadow-sm);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--saffron-deep);
}

/* =================== CONTAINER & SECTION =================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; position: relative; }
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .kicker {
  display: inline-block;
  background: rgba(255, 153, 51, 0.12);
  color: var(--saffron-deep);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-head h2 .accent {
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* =================== HERO =================== */
.hero {
  padding: 100px 0 80px;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19, 136, 8, 0.1);
  color: var(--india-green);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(19, 136, 8, 0.2);
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--india-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(19, 136, 8, 0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(19, 136, 8, 0); }
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .grad-1 {
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .grad-2 {
  background: linear-gradient(135deg, var(--india-green) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
}
.btn-primary {
  background: var(--grad-saffron);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: white;
  color: var(--saffron-deep);
  border: 2px solid var(--saffron);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--saffron-deep);
  line-height: 1;
}
.stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.stat:nth-child(2) .num { color: var(--india-green); }
.stat:nth-child(3) .num { color: var(--navy); }

/* Hero phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 320px;
  height: 640px;
  background: var(--dark);
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 30px 80px rgba(0,0,0,0.25);
  position: relative;
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-16px) rotate(1deg); }
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: var(--grad-hero);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 22px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
}
.phone-content {
  padding: 40px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-appbar {
  background: var(--grad-saffron);
  padding: 12px 14px;
  border-radius: 14px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.phone-appbar .icons { display: flex; gap: 8px; font-size: 14px; }
.phone-progress {
  background: rgba(255,255,255,0.7);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 11px;
}
.phone-progress .bar {
  height: 8px;
  background: #f0e0d0;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}
.phone-progress .fill {
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--india-green) 100%);
  border-radius: 999px;
}
.phone-card {
  background: white;
  border-radius: 12px;
  padding: 10px 12px 10px 18px;
  display: flex;
  gap: 8px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.phone-card::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 5px;
  border-radius: 0 4px 4px 0;
}
.phone-card.green::before { background: var(--india-green); }
.phone-card.gold::before { background: var(--gold); }
.phone-card.blue::before { background: var(--navy); }
.phone-card .info { flex: 1; }
.phone-card .name { font-size: 12px; font-weight: 700; color: var(--dark); }
.phone-card .meta { font-size: 10px; color: var(--text-muted); }
.phone-card .chips { display: flex; gap: 3px; margin-top: 5px; flex-wrap: wrap; }
.phone-card .chip {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255,153,51,0.15);
  color: var(--saffron-deep);
  font-weight: 600;
}
.phone-card .chip.on { background: var(--india-green); color: white; }

.phone-floating {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatPhone2 5s ease-in-out infinite;
}
.phone-floating.f1 { top: 30px; right: -20px; color: var(--india-green); }
.phone-floating.f2 { bottom: 60px; left: -30px; color: var(--saffron-deep); animation-delay: -2s; }
@keyframes floatPhone2 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.phone-floating .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.phone-floating.f1 .icon { background: rgba(19,136,8,0.15); }
.phone-floating.f2 .icon { background: rgba(255,153,51,0.15); }

/* =================== FEATURE HIGHLIGHTS (on home) =================== */
.highlights {
  background: linear-gradient(180deg, transparent 0%, rgba(255,153,51,0.04) 100%);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feat-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: var(--grad-saffron);
  color: white;
  box-shadow: var(--shadow-sm);
}
.feat-card:nth-child(2n) .feat-icon { background: linear-gradient(135deg, var(--india-green), var(--teal)); }
.feat-card:nth-child(3n) .feat-icon { background: linear-gradient(135deg, var(--navy), var(--teal)); }
.feat-card:nth-child(4n) .feat-icon { background: var(--grad-gold); color: var(--dark); }
.feat-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}
.feat-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =================== BENEFITS =================== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.benefit-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  border-left: 5px solid var(--saffron);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.benefit-card:nth-child(3n+1) { border-left-color: var(--saffron); }
.benefit-card:nth-child(3n+2) { border-left-color: var(--india-green); }
.benefit-card:nth-child(3n+3) { border-left-color: var(--navy); }
.benefit-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.benefit-number {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(255, 153, 51, 0.1);
  line-height: 1;
}
.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.benefit-card h3 .emoji { font-size: 24px; }
.benefit-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

/* =================== USES SECTION =================== */
.use-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.use-item {
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.use-item:hover {
  background: var(--grad-card);
  border-color: var(--saffron);
  transform: translateY(-3px);
}
.use-check {
  min-width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.use-item h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}
.use-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =================== TECH STACK (features page) =================== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.tech-card {
  background: linear-gradient(135deg, white 0%, rgba(255,248,220,0.6) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}
.tech-card:hover {
  transform: scale(1.03);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.tech-card .tech-emoji { font-size: 40px; margin-bottom: 12px; }
.tech-card h4 { font-size: 16px; color: var(--saffron-deep); margin-bottom: 6px; }
.tech-card p { font-size: 13px; color: var(--text-muted); }

/* =================== STATUS PILLS =================== */
.status-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.status-pill {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.status-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.status-pill.green { background: #E8F5E9; color: var(--india-green); border: 1px solid var(--india-green); }
.status-pill.gold  { background: #FFF9E6; color: var(--gold-deep); border: 1px solid var(--gold); }
.status-pill.blue  { background: #E3F2FD; color: var(--navy); border: 1px solid var(--navy); }
.status-pill.orange{ background: #FFF3E0; color: var(--saffron-deep); border: 1px solid var(--saffron); }
.status-pill.grey  { background: #F5F5F5; color: #616161; border: 1px solid #BDBDBD; }
.status-pill.red   { background: #FFEBEE; color: var(--maroon); border: 1px solid var(--maroon); }
.status-pill.teal  { background: #E0F2F1; color: var(--teal); border: 1px solid var(--teal); }

/* =================== ABOUT =================== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-image {
  width: 320px; height: 320px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  object-fit: cover;
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
  animation: morphShape 10s ease-in-out infinite;
}
@keyframes morphShape {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25%      { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50%      { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75%      { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}
.about-decor-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 3px dashed var(--saffron);
  opacity: 0.35;
  animation: rotateSlow 20s linear infinite;
}
.about-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--dark);
  margin-bottom: 20px;
}
.about-content h2 .accent {
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-content .role {
  display: inline-block;
  background: rgba(255,153,51,0.15);
  color: var(--saffron-deep);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.contact-list {
  list-style: none;
  margin-top: 24px;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
  color: var(--text);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .c-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-saffron);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.company-section {
  background: var(--grad-card);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  margin-top: 60px;
  border: 1px solid var(--border);
}
.company-logo-big {
  width: 160px; height: 160px;
  border-radius: 30px;
  background: white;
  padding: 20px;
  object-fit: contain;
  box-shadow: var(--shadow-md);
  margin: 0 auto 24px;
  display: block;
}
.company-section h3 {
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--dark);
  margin-bottom: 12px;
}
.company-section h3 .accent {
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.company-section p {
  max-width: 680px;
  margin: 0 auto 14px;
  color: var(--text-muted);
  font-size: 16px;
}
.company-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: white;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.value-card .v-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.value-card h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 6px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* =================== CTA STRIP =================== */
.cta-strip {
  background: var(--grad-saffron);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin: 20px auto 40px;
  max-width: 1100px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.cta-strip h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.cta-strip p {
  opacity: 0.95;
  position: relative;
  z-index: 1;
  max-width: 540px;
}
.cta-strip .btn {
  background: white;
  color: var(--saffron-deep);
  position: relative;
  z-index: 1;
}
.cta-strip .btn:hover { background: var(--cream); transform: translateY(-2px); }

/* =================== DOWNLOAD PAGE =================== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.download-card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.download-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.download-card.recommended {
  border: 2px solid var(--saffron);
  background: linear-gradient(180deg, rgba(255, 248, 220, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.download-card.recommended:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.download-ribbon {
  position: absolute;
  top: 18px; right: -38px;
  background: var(--grad-saffron);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 44px;
  transform: rotate(40deg);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.35);
}
.download-icon-wrap {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  background: var(--grad-saffron);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  padding: 12px;
}
.download-icon-wrap img {
  width: 100%; height: 100%;
  border-radius: 16px;
  object-fit: contain;
}
.download-icon-wrap.alt1 { background: linear-gradient(135deg, var(--india-green), var(--teal)); }
.download-icon-wrap.alt2 { background: linear-gradient(135deg, var(--navy), var(--teal)); }

.download-card h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
}
.download-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
  min-height: 42px;
}
.download-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  background: rgba(255, 153, 51, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.download-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 13.5px;
  border-bottom: 1px dashed var(--border);
}
.download-specs li:last-child { border-bottom: none; }
.download-specs strong {
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 11px;
}
.download-specs span {
  color: var(--dark);
  font-weight: 600;
}
.download-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 15px;
  padding: 14px 22px;
}
.download-ico {
  font-size: 18px;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}
.download-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Install steps */
.install-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.install-step {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.install-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.step-num {
  min-width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.install-step:nth-child(2n) .step-num { background: linear-gradient(135deg, var(--india-green), var(--teal)); }
.install-step:nth-child(3n) .step-num { background: linear-gradient(135deg, var(--navy), var(--teal)); }
.install-step:nth-child(4n) .step-num { background: var(--grad-gold); color: var(--dark); }
.install-step h4 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 6px;
}
.install-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Nav download button variant */
.nav-menu a.nav-download {
  background: var(--grad-saffron);
  color: white;
  font-weight: 600;
  padding: 10px 22px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a.nav-download::before {
  content: '⬇';
  font-size: 14px;
}
.nav-menu a.nav-download:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Responsive */
@media (max-width: 900px) {
  .download-card.recommended { transform: none; }
  .download-card.recommended:hover { transform: translateY(-6px); }
}
@media (max-width: 640px) {
  .download-card { padding: 30px 22px 24px; }
  .download-ribbon { right: -42px; font-size: 11px; padding: 5px 42px; }
}

/* =================== FOOTER =================== */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #2C2C54 100%);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 24px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-tricolor);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  width: 50px; height: 50px;
  border-radius: 12px;
}
.footer-brand strong {
  font-size: 20px;
  color: white;
}
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.footer-col h5 {
  color: var(--saffron);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--saffron); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom .tri {
  display: inline-flex;
  gap: 4px;
  margin-left: 8px;
}
.footer-bottom .tri span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.footer-bottom .tri .s { background: var(--saffron); }
.footer-bottom .tri .w { background: white; }
.footer-bottom .tri .g { background: var(--india-green); }

/* =================== ANIMATIONS ON LOAD =================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .hero-grid, .about-hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; transform: scale(0.85); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .phone-floating.f1 { right: 10px; }
  .phone-floating.f2 { left: 10px; }
}
@media (max-width: 640px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,251,245,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { display: block; text-align: center; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 60px 0 40px; min-height: auto; }
  .phone-frame { width: 260px; height: 520px; }
  .cta-strip { flex-direction: column; text-align: center; padding: 40px 24px; }
  .about-image { width: 240px; height: 240px; }
  .company-section { padding: 40px 24px; }
}
