.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plainclr);
  overflow: hidden;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 1;
}
.hero-section .hero-overlay {
  position: relative;
  z-index: 2;
  padding: 40px 25px;
  max-width: 900px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  animation: fadeIn 1.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section .main-heading {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  color: var(--plainclr);
}
.hero-section .hero-subtitle {
  font-size: 1rem;
  opacity: 0.95;
  color: var(--plainclr);
}
.hero-section .hero-badges .badge {
  padding: 10px 16px;
  font-size: 0.95rem;
  border-radius: 20px;
}
.hero-section .btn-gradient {
  background: var(--gradient1);
  border: none;
  color: var(--plainclr);
  padding: 12px 34px;
  border-radius: 40px;
  font-size: 1.15rem;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 18px rgba(255, 50, 100, 0.4);
}
.hero-section .btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 50, 100, 0.55);
  color: var(--plainclr);
}
.hero-section .btn-outline-light {
  padding: 12px 34px;
  font-size: 1.1rem;
  border-radius: 40px;
  border-width: 2px;
  transition: 0.3s;
}
.hero-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
.hero-section .breadcrumb-item a {
  color: #ffdede;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 500;
}
.hero-section .breadcrumb-item + .breadcrumb-item::before {
  color: #ffdede;
}
.hero-section .breadcrumb-item a:hover {
  color: var(--plainclr);
  text-decoration: underline;
}
.hero-section .breadcrumb-item.active {
  color: #ff7b00 !important;
}/*# sourceMappingURL=modern-hero-section.css.map */