/* =========================================================
   robotics-zone.css
   Page-specific styles for /robotics-zone
   Split out of the old monolithic style.css. Rule order is
   unchanged from the original file.
   ========================================================= */

.robotic-bg {
  background: #240e4a !important;
}
.neon-text {
  color: #fff;
  text-shadow: 0 0 5px var(--neon-blue), 0 0 20px var(--neon-blue);
}
.visitor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.visitor-card {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(0, 243, 255, 0.15);
  border-radius: 8px;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: default;
}
.visitor-card i {
  font-size: 1.5rem;
  width: 40px;
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
  transition: 0.3s;
}
.visitor-card span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #e0e0e0;
}
.visitor-card:hover {
  background: rgba(0, 243, 255, 0.1);
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
  transform: translateY(-3px);
}
.visitor-card:hover i {
  color: #fff;
  transform: scale(1.1);
}
.why-visit-card {
  background: rgb(2 2 38 / 60%);
  border: 1px solid rgba(188, 19, 254, 0.2);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.why-visit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--neon-purple);
  opacity: 0.5;
  transition: 0.3s;
}
.why-visit-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-purple);
  box-shadow: 0 0 25px rgba(188, 19, 254, 0.2);
  transform: translateY(-3px);
}
.why-visit-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--neon-purple);
}
@media (max-width: 576px) {
  .visitor-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   Moved out of robotics-zone.php (was an inline <style> block)
   --------------------------------------------------------- */

    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        background: linear-gradient(to right, #411d7e, #330c76);
    }
