/* About Us Hero Section Styling */
.cyber-about-hero {
  padding: 40px 0px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.about-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Background Glowing Lights */
.hero-glow-purple {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  /* background: rgba(147, 51, 234, 0.25); */
  filter: blur(140px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-cyan {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  /* background: rgba(56, 189, 248, 0.18); */
  filter: blur(150px);
  border-radius: 50%;
  pointer-events: none;
}

/* Typography & Sub-Badge */
.sub-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(147, 51, 234, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.3);
  color: #c084fc;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

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

.about-hero-description {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

/* Call to Action Buttons */
.about-hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, #9333ea, #38bdf8);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
}

.btn-secondary {
  background: rgba(15, 11, 26, 0.8);
  border: 1px solid rgba(147, 51, 234, 0.4);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #38bdf8;
  color: #38bdf8;
}

/* Stats Counter Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #38bdf8;
}

.stat-label {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* Right Column Visual Image Wrapper */
.about-hero-visual {
  position: relative;
}

.visual-card-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* border: 1px solid rgba(147, 51, 234, 0.3); */
  background: rgba(15, 11, 26, 0.9);
  /* padding: 10px; */
}

.about-hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* Floating Live Badge */
.floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(5, 3, 10, 0.85);
  border: 1px solid #38bdf8;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 8px #38bdf8;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
  100% { opacity: 0.4; transform: scale(0.9); }
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-hero-title {
    font-size: 1.8rem;
  }
  .cyber-about-hero {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    display: flex;

  }

  .about-hero-container {
      gap:20px;
  }
  .stat-number {
    font-size: 1.4rem;
  }

  .stat-card {
      text-align: center;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .btn-primary ,.btn-secondary{
    padding: 7px 12px;
    font-size: 14px;
  }

  .about-hero-cta {
    margin-bottom: 28px;
  }
  .cyber-about-hero {
    padding: 20px 20px;
  }
  .about-hero-title {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
  }

  .about-hero-description {
    padding: 0px;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 12px;
    max-width: 580px;
    margin-top: 0px;
  }
  .sub-badge {
      padding: 4px 14px;
      font-size: 0.55rem;
      margin-bottom: 10px;
  }
}