/* ==========================================================================
   ROHIT INDIA PVT LTD - LIGHT THEME (STATIC CARD & INTERACTIVE PARTICLES)
   ========================================================================== */

:root {
  /* Light Theme Palette */
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  
  --primary-blue: #2563EB;
  --primary-indigo: #4F46E5;
  --accent-sky: #0284C7;
  
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --border-light: #E2E8F0;
  --shadow-card: 0 25px 50px -12px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.04);
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-family);
  background: var(--bg-main);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

/* Interactive Canvas Background for Floating Particles */
#interactiveCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Background Soft Ambient Orbs */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.shape-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #DBEAFE, #EFF6FF);
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #E0E7FF, #EEF2FF);
  bottom: -120px;
  right: -120px;
}

/* Main Container & Completely Still Content Card */
.page-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 3.5rem 2.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Card remains completely still and stationary */
  transform: none !important;
}

/* Status Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Company Title */
.company-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0F172A 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Construction Box */
.construction-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #EFF6FF, #EEF2FF);
  border: 1px solid #DBEAFE;
  padding: 0.85rem 1.75rem;
  border-radius: 18px;
  margin-bottom: 1.5rem;
}

.icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.construction-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Description */
.description {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

/* Footer */
.card-footer {
  width: 100%;
  border-top: 1px solid #F1F5F9;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .card {
    padding: 2.5rem 1.5rem 1.75rem;
    border-radius: 20px;
  }
  
  .company-title {
    font-size: 1.6rem;
  }

  .construction-box {
    padding: 0.75rem 1.25rem;
  }

  .construction-text {
    font-size: 1.1rem;
  }
}
