/* =========================================
   CINEMATIC ABOUT HERO BANNER
   ========================================= */

.about-hero-new {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: url("../../../img/about-hero-office.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 4rem;
  overflow: hidden;
}

/* Cinematic Blended Overlay */
.about-hero-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Base dark overlay */
  background: rgba(0, 18, 46, 0.6);
  z-index: 1;
}

.about-hero-new::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Brand Tint Blending: Blue on Left, Pink on Right */
  background: linear-gradient(
    to right,
    rgba(0, 145, 255, 0.15),
    transparent,
    rgba(255, 0, 110, 0.1)
  );
  backdrop-filter: blur(1px);
  z-index: 2;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left-aligned cinematic content */
  text-align: left;
}

/* Animation for content */
.hero-content-inner {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpCinematic 1s ease-out forwards;
}

@keyframes fadeInUpCinematic {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Small Tag Overlay */
.hero-tag-new {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

/* Big Bold Heading */
.hero-title-new {
  font-size: 4.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -2px;
  max-width: 900px;
}

.hero-title-new .highlight {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description Paragraph */
.hero-desc-new {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 650px;
}

/* Value Pills (Glassmorphism) */
.hero-pills-new {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.pill-new {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.pill-new:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.pill-new i {
  color: #0091ff;
  font-size: 1rem;
}

/* Premium Gradient CTA */
.hero-cta-new {
  padding: 1.3rem 3rem;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: #ffffff !important;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 12px 35px rgba(0, 145, 255, 0.3);
}

.hero-cta-new:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 145, 255, 0.45);
}

.hero-cta-new i {
  transition: transform 0.3s ease;
}

.hero-cta-new:hover i {
  transform: translateX(5px);
}

/* --- Responsive Adaptations --- */
@media (max-width: 1200px) {
  .about-hero-new {
    min-height: 75vh;
    padding: 80px 3rem;
  }
  .hero-title-new {
    font-size: 3.8rem;
  }
}

@media (max-width: 992px) {
  .about-hero-new {
    padding: 60px 2rem;
    background-attachment: scroll; /* Smoother on mobile */
  }
  .hero-title-new {
    font-size: 3.2rem;
  }
  .about-hero-container {
    align-items: center;
    text-align: center;
  }
  .hero-pills-new {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-hero-new {
    min-height: 80vh;
    padding: 60px 1.5rem;
  }
  .hero-title-new {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }
  .hero-desc-new {
    font-size: 1.1rem;
  }
  .hero-pills-new {
    gap: 0.8rem;
  }
  .pill-new {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  .hero-cta-new {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
  }
}
