/* --- Nexus Interactive 3D Model Contact Hero (Default Light Background) --- */
.contact-nexus-hero {
  position: relative;
  width: 100%;
  min-height: 94vh;
  padding: 120px 6% 80px;
  background-color: #f8fafc;
  color: #0f172a;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Layer with Soft Grid and Image blend */
.nexus-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.nexus-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.16;
  filter: contrast(1.1) grayscale(0.2);
  transform: scale(1.03);
  animation: bgSubtleFloat 22s ease-in-out infinite alternate;
}

.nexus-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.nexus-gradient-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 65% 45%, rgba(248, 250, 252, 0.1) 0%, rgba(248, 250, 252, 0.1) 75%);
}

@keyframes bgSubtleFloat {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.07) translate(-20px, -10px); }
}

/* Ambient Blurs */
.nexus-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-cyan {
  width: 520px;
  height: 520px;
  background: rgba(6, 182, 212, 0.14);
  top: 5%;
  left: -80px;
}

.glow-violet {
  width: 500px;
  height: 500px;
  background: rgba(124, 58, 237, 0.1);
  bottom: 5%;
  right: -80px;
}

/* Main Container Grid */
.nexus-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 60px;
  align-items: center;
}

/* Left Column Content */
.nexus-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nexus-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  margin-bottom: 22px;
}

.pulse-beacon {
  width: 7px;
  height: 7px;
  background-color: #06b6d4;
  border-radius: 50%;
  box-shadow: 0 0 10px #06b6d4;
  animation: beaconPing 2s infinite;
}

@keyframes beaconPing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
}

.status-code {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
}

.nexus-headline {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 18px;
}

.nexus-gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #3b82f6 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nexus-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 34px;
  max-width: 620px;
}

/* Channels Box */
.nexus-channels-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 30px;
}

.nexus-channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nexus-channel-item:hover {
  transform: translateY(-4px);
  border-color: #0284c7;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.12);
}

.nexus-channel-icon {
  width: 44px;
  height: 44px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-alt {
  background: #ede9fe;
  color: #7c3aed;
}

.nexus-channel-item:hover .nexus-channel-icon {
  transform: scale(1.1);
}

.nexus-channel-meta {
  display: flex;
  flex-direction: column;
}

.ch-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748b;
}

.ch-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2px;
}

/* Badges Row */
.nexus-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.n-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.check-mark {
  color: #059669;
  font-weight: 800;
}

/* Right Column: 3D Hologram Console Stage */
.nexus-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.model-stage-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 520px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Top Console Bar */
.stage-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.d-red { background: #f87171; }
.d-yellow { background: #fbbf24; }
.d-green { background: #34d399; }

.stage-title {
  font-size: 0.75rem;
  color: #64748b;
}

.stage-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  padding: 4px 8px;
  border-radius: 6px;
}

/* 3D Wireframe Scene Core */
.geometry-3d-scene {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.cube-assembly {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: modelSpin 18s linear infinite;
}

.cube-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed #0284c7;
}

.ring-x {
  transform: rotateX(60deg) rotateY(15deg);
  border-color: rgba(2, 132, 199, 0.45);
}

.ring-y {
  transform: rotateX(-60deg) rotateY(30deg);
  border-color: rgba(124, 58, 237, 0.45);
}

.ring-z {
  transform: rotateZ(45deg);
  border-color: rgba(6, 182, 212, 0.45);
}

.cube-center-core {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #0284c7 0%, #7c3aed 100%);
  border-radius: 16px;
  box-shadow: 0 0 35px rgba(2, 132, 199, 0.7);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseCoreSquare 3s ease-in-out infinite alternate;
}

.core-spark {
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 15px #ffffff;
}

@keyframes modelSpin {
  0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes pulseCoreSquare {
  0% { transform: rotate(45deg) scale(0.9); }
  100% { transform: rotate(45deg) scale(1.15); box-shadow: 0 0 50px rgba(124, 58, 237, 0.8); }
}

/* Floating Data Badges */
.data-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  z-index: 5;
  transition: transform 0.25s ease-out;
}

.node-top {
  top: 70px;
  left: -20px;
  animation: floatNodeA 5s ease-in-out infinite alternate;
}

.node-bottom {
  bottom: 90px;
  right: -20px;
  animation: floatNodeB 6s ease-in-out infinite alternate;
}

.badge-icon {
  font-size: 1.1rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-size: 0.85rem;
  color: #0f172a;
}

.badge-text span {
  font-size: 0.72rem;
  color: #64748b;
}

@keyframes floatNodeA {
  0% { transform: translateY(0px) translateZ(35px); }
  100% { transform: translateY(-12px) translateZ(35px); }
}

@keyframes floatNodeB {
  0% { transform: translateY(0px) translateZ(35px); }
  100% { transform: translateY(12px) translateZ(35px); }
}

/* Stage Bottom Action Area */
.stage-action-area {
  position: relative;
  z-index: 5;
}

.terminal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.terminal-btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.3);
}

.terminal-btn svg {
  transition: transform 0.25s ease;
}

.terminal-btn:hover svg {
  transform: translateX(4px);
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .nexus-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .nexus-content {
    align-items: center;
  }
  .nexus-channels-strip {
    grid-template-columns: 1fr;
  }
  .nexus-badges-row {
    justify-content: center;
  }
  .contact-nexus-hero {
    padding: 100px 5% 60px;
  }
  .model-stage-card {
    max-width: 420px;
    height: 480px;
  }
  .node-top {
    left: 0;
  }
  .node-bottom {
    right: 0;
  }
}

/* Section 2 Starts  */
/* --- Bento Scope Showcase (Default Fonts & Light Theme) --- */
.contact-bento-scope {
  position: relative;
  width: 100%;
  padding: 110px 5%;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

/* Ambient Subtle Lighting */
.bento-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-top-left {
  width: 500px;
  height: 500px;
  background: rgba(2, 132, 199, 0.08);
  top: 5%;
  left: -80px;
}

.glow-bottom-right {
  width: 480px;
  height: 480px;
  background: rgba(99, 102, 241, 0.06);
  bottom: 5%;
  right: -80px;
}

.bento-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.bento-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.bento-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  margin-bottom: 18px;
}

.pulse-beacon-dot {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: beaconPulse 2s infinite;
}

@keyframes beaconPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.bento-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 16px;
}

.bento-title-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-lead-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.5;
}

.bento-sublead-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}

/* Kicker Tagline */
.bento-kicker-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin-top: 10px;
}

.kicker-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
}

.bento-kicker-strip h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* Asymmetric Bento Grid */
.bento-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Base Bento Item */
.bento-item {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 34px 32px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

/* Mouse Reactive Spotlight Overlay */
.bento-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(2, 132, 199, 0.06),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-item:hover .bento-spotlight {
  opacity: 1;
}

.bento-inner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hero Bento Item (Spans 2 columns on top row) */
.bento-hero-item {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border-color: #bae6fd;
}

.bento-hero-item .bento-item-title {
  font-size: 1.8rem;
  color: #0284c7;
}

.bento-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bento-serial {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #94a3b8;
}

.bento-badge-accent {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 20px;
}

/* Color Identity Dots */
.bento-icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.color-orange { background: #ea580c; box-shadow: 0 0 6px #ea580c; }
.color-green { background: #16a34a; box-shadow: 0 0 6px #16a34a; }
.color-coral { background: #e11d48; box-shadow: 0 0 6px #e11d48; }
.color-purple { background: #7c3aed; box-shadow: 0 0 6px #7c3aed; }

/* Item Typography */
.bento-item-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bento-item-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
}

/* Tags in Hero Item */
.bento-interactive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag-chip {
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
}

.bento-arrow-hint {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0284c7;
  margin-top: auto;
  transition: transform 0.25s ease;
}

.bento-item:hover .bento-arrow-hint {
  transform: translateX(4px);
}

/* Bottom Consultation Lifecycle Track */
.bento-pipeline-strip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px 36px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.pipeline-track-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #64748b;
}

.track-indicator {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
}

.pipeline-flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flow-count {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0284c7;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-meta {
  display: flex;
  flex-direction: column;
}

.flow-meta strong {
  font-size: 0.95rem;
  color: #0f172a;
}

.flow-meta span {
  font-size: 0.78rem;
  color: #64748b;
}

.flow-connector {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, #cbd5e1 0, #cbd5e1 4px, transparent 4px, transparent 8px);
}

/* Scroll Reveal Base */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .bento-scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-hero-item {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .bento-scope-grid {
    grid-template-columns: 1fr;
  }
  .bento-hero-item {
    grid-column: span 1;
  }
  .contact-bento-scope {
    padding: 70px 5%;
  }
  .pipeline-flow-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .flow-connector {
    display: none;
  }
}
/* Section 2 ENds  */

/* Section 3 Starst  */

/* --- 2-Row Aligned Roadmap Flow (Default Fonts & Light Theme) --- */
.process-two-row-section {
  position: relative;
  width: 100%;
  padding: 80px 4% 90px;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

.process-main-wrapper {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

/* Left Vertical Title */
.process-side-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-side-title h2 {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #1e3a8a;
  margin: 0;
  user-select: none;
  white-space: nowrap;
}

/* Flow Canvas Container */
.process-content-flow {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Precision SVG Dotted Connections Layer */
.flow-svg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.neat-dash {
  animation: neatDashCycle 30s linear infinite;
}

@keyframes neatDashCycle {
  to { stroke-dashoffset: -1000; }
}

/* 3-Column Equal Grid Rows */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Individual Flow Box */
.flow-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid #e2e8f0;
  border-top-width: 4px; /* Colorful accent top stripe */
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  min-height: 140px;
}

.flow-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.box-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.flow-box:hover .box-icon {
  transform: scale(1.1) rotate(4deg);
}

.box-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.box-body p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Colorful Card Theme System */
/* Blue */
.theme-blue { border-top-color: #0284c7; }
.theme-blue .box-icon { background: #e0f2fe; color: #0284c7; }

/* Orange */
.theme-orange { border-top-color: #ea580c; }
.theme-orange .box-icon { background: #ffedd5; color: #ea580c; }

/* Green */
.theme-green { border-top-color: #16a34a; }
.theme-green .box-icon { background: #dcfce7; color: #16a34a; }

/* Teal */
.theme-teal { border-top-color: #0d9488; }
.theme-teal .box-icon { background: #ccfbf1; color: #0d9488; }

/* Coral */
.theme-coral { border-top-color: #e11d48; }
.theme-coral .box-icon { background: #ffe4e6; color: #e11d48; }

/* Purple */
.theme-purple { border-top-color: #7c3aed; }
.theme-purple .box-icon { background: #ede9fe; color: #7c3aed; }

/* Center Intermediary Floating Row */
.flow-center-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  margin: -20px 0;
}

.sub-team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #0284c7;
  border-radius: 16px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.team-icon {
  color: #0284c7;
}

.sub-team-card span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
}

.sub-team-card a {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0284c7;
  text-decoration: underline;
}

.center-brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-isometric-layers {
  position: relative;
  width: 32px;
  height: 26px;
}

.brand-isometric-layers span {
  position: absolute;
  left: 0;
  width: 32px;
  height: 8px;
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  border-radius: 3px;
  transform: skewY(-14deg);
}

.brand-isometric-layers span:nth-child(1) { top: 0px; opacity: 1; }
.brand-isometric-layers span:nth-child(2) { top: 8px; opacity: 0.7; }
.brand-isometric-layers span:nth-child(3) { top: 16px; opacity: 0.4; }

.center-brand-mark strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #6366f1;
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules for Tablet & Mobile */
@media (max-width: 1080px) {
  .process-main-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-side-title {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 20px;
  }
  .cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .flow-svg-grid {
    display: none;
  }
  .flow-center-strip {
    flex-direction: column;
    margin: 10px 0;
  }
}

/* Section 3 ENds  */

/* Secrtion 4 Starst */

/* --- Telemetry Help Hub (Default Light Theme & Native Fonts) --- */
.help-hub-section {
  position: relative;
  width: 100%;
  padding: 100px 5%;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

/* Ambient Subtle Lighting */
.help-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-cyan {
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.1);
  top: 10%;
  left: -100px;
}

.glow-purple {
  width: 480px;
  height: 480px;
  background: rgba(124, 58, 237, 0.08);
  bottom: 5%;
  right: -80px;
}

.help-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Header */
.help-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.help-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  margin-bottom: 16px;
}

.help-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: helpDotPulse 2s infinite;
}

@keyframes helpDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.help-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 12px;
}

.help-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.help-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* Split Console Grid */
.help-console-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}

/* Base Terminal Styling */
.console-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.console-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

/* Terminal Top Header Strip */
.terminal-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.t-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-red { background: #f87171; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #34d399; }

.terminal-meta {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.8px;
}

.terminal-status {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.live-status {
  background: #dcfce7;
  color: #16a34a;
}

/* Left Location Terminal */
.terminal-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Animated Radar Display Screen */
.location-radar-display {
  position: relative;
  width: 100%;
  height: 170px;
  background: radial-gradient(circle, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 18px;
  border: 1px solid #cbd5e1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.radar-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(2, 132, 199, 0.3);
}

.circle-1 { width: 60px; height: 60px; }
.circle-2 { width: 110px; height: 110px; }
.circle-3 { width: 160px; height: 160px; }

.radar-sweep-arm {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  transform-origin: 0 0;
  background: linear-gradient(45deg, rgba(2, 132, 199, 0.25) 0%, transparent 60%);
  animation: radarSweep 5s linear infinite;
  border-radius: 0 100% 0 0;
}

@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-beacon-ping {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ping-core {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

.ping-wave {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0284c7;
  animation: pingWave 2.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes pingWave {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Location Content */
.loc-subtitle {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0284c7;
  display: block;
  margin-bottom: 4px;
}

.loc-company-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}

.loc-pin-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #f1f5f9;
  border-radius: 12px;
  color: #1e293b;
  font-size: 0.92rem;
  margin-bottom: 16px;
  width: fit-content;
}

.loc-pin-box svg {
  color: #0284c7;
}

.loc-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 24px 0;
}

.loc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.loc-chips span {
  padding: 5px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.loc-chips span:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #ffffff;
}

/* Right Communications Stack */
.comms-stack {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comm-channel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.comm-channel:hover {
  background: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

/* Left side of channel item */
.comm-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.comm-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease;
}

.comm-channel:hover .comm-icon-box {
  transform: scale(1.1) rotate(4deg);
}

.comm-emoji {
  font-size: 1.25rem;
}

.comm-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.comm-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comm-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.comm-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: #e0f2fe;
  color: #0284c7;
}

.tag-whatsapp {
  background: #dcfce7;
  color: #16a34a;
}

.tag-email {
  background: #ede9fe;
  color: #7c3aed;
}

.comm-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin: 4px 0 6px 0;
}

.comm-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
  max-width: 400px;
}

/* Action Trigger Button */
.comm-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
  transition: all 0.25s ease;
}

.comm-action-btn svg {
  transition: transform 0.25s ease;
}

.comm-action-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.comm-action-btn:hover svg {
  transform: translateX(3px);
}

/* Channel specific hover borders */
.channel-call:hover { border-color: #38bdf8; }
.channel-whatsapp:hover { border-color: #4ade80; }
.channel-email:hover { border-color: #a78bfa; }

/* Scroll Reveal Classes */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal[data-dir="left"] {
  transform: translateX(-40px);
}

.scroll-reveal[data-dir="right"] {
  transform: translateX(40px);
}

.help-header.scroll-reveal {
  transform: translateY(30px);
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .help-console-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .scroll-reveal[data-dir="left"],
  .scroll-reveal[data-dir="right"] {
    transform: translateY(30px);
  }
}

@media (max-width: 640px) {
  .help-hub-section {
    padding: 70px 5%;
  }
  .terminal-body {
    padding: 24px 18px;
  }
  .comm-channel {
    flex-direction: column;
    align-items: flex-start;
  }
  .comm-action-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section 4 Ends  */

/* Section 5 Starts  */

/* --- Glassmorphism Blueprint Console (Default Light Theme & Native Fonts) --- */
.project-intake-section {
  position: relative;
  width: 100%;
  padding: 120px 5% 100px;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

/* Ambient Backdrops */
.intake-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-cyan {
  width: 520px;
  height: 520px;
  background: rgba(6, 182, 212, 0.08);
  top: 10%;
  left: -100px;
}

.glow-indigo {
  width: 520px;
  height: 520px;
  background: rgba(99, 102, 241, 0.07);
  bottom: 5%;
  right: -100px;
}

.intake-container {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* Header */
.intake-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intake-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  margin-bottom: 18px;
}

.intake-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.intake-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 14px;
}

.intake-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intake-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* Main Console Glass Card */
.intake-console-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.intake-console-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.07);
}

/* Top Console Header & Live Meter */
.intake-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 16px;
}

.header-tab {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.tab-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #475569;
}

.form-completion-track {
  display: flex;
  align-items: center;
  gap: 12px;
}

.completion-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

.completion-label strong {
  color: #0284c7;
}

.completion-bar {
  width: 90px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.completion-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #10b981);
  transition: width 0.35s ease;
}

/* Form Layout */
.intake-form {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
}

.req {
  color: #e11d48;
}

/* Inputs & Wrappers */
.input-wrapper, .select-wrapper, .textarea-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  font-size: 1rem;
  color: #94a3b8;
  pointer-events: none;
  z-index: 2;
}

.form-field {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 13px 18px 13px 46px;
  font-size: 0.92rem;
  color: #0f172a;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-field::placeholder {
  color: #94a3b8;
}

.form-field:focus {
  background: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

/* Select Field Customization */
.select-field {
  appearance: none;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 18px;
  font-size: 0.65rem;
  color: #64748b;
  pointer-events: none;
}

/* Textarea Field */
.textarea-wrapper {
  align-items: flex-start;
}

.textarea-field {
  padding: 16px 18px;
  resize: vertical;
  min-height: 110px;
}

/* Custom File Dropzone */
.file-dropzone {
  position: relative;
  border: 1.5px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.file-dropzone:hover {
  border-color: #0284c7;
  background: #f0f9ff;
}

.file-input-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.dropzone-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: none;
}

.dropzone-icon {
  font-size: 1.6rem;
}

.dropzone-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.dropzone-text strong {
  font-size: 0.88rem;
  color: #0f172a;
}

.dropzone-text span {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

/* Submit Row */
.form-action-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.intake-submit-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.intake-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.35);
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.intake-submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Specular Button Shine */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
}

.intake-submit-btn:hover .btn-shine {
  left: 150%;
}

.intake-disclaimer {
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
  margin: 0;
}

/* Scroll Reveal Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .intake-form {
    padding: 30px 24px;
  }
  .intake-console-header {
    padding: 16px 20px;
  }
  .dropzone-content {
    flex-direction: column;
    text-align: center;
  }
  .dropzone-text {
    text-align: center;
  }
}

/* Section 5 Ends  */


.contact-core {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-icon {
  width: 42px;
  height: 42px;
  color: #008fd5;
  filter: drop-shadow(0 0 8px rgba(0, 143, 213, 0.35));
  animation: contactPulse 2.8s ease-in-out infinite;
}

@keyframes contactPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(0, 143, 213, 0.3));
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px rgba(0, 143, 213, 0.55));
  }
}