/* ==========================================================================
   KEC HERO BANNER PLUGIN - FRONTEND STYLES
   ========================================================================== */

.hero-banner-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
  overflow: hidden;
  background-color: #070d18;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.6s ease;
}

.hero-bg-image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-overlay-saffron {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(271deg, rgba(246, 148, 52, 0) 57.56%, #3774f9 86.35%);
  pointer-events: none;
}

.hero-left-warm-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(245, 150, 20, 0.55) 0%, rgba(226, 125, 22, 0.25) 65%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-inner-flex {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  width: 100%;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  padding: 3.5rem 0 2rem 0;
  max-width: 680px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-subtitle-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-heading-main {
  line-height: 1.15;
  margin-bottom: 2.25rem;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  max-width: 740px;
  font-family: "Lexend Deca", "Playfair Display", sans-serif;
  font-size: clamp(2.2rem, 4vw, 46px);
  font-weight: 700;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.52);
}

.hero-actions-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.btn-blue-sq {
  background-color: #1E50BC;
  color: #FFFFFF !important;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 6px 20px rgba(30, 80, 188, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-blue-sq:hover {
  background-color: #1643A3;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 80, 188, 0.5);
  color: #FFFFFF !important;
}

.btn-green-sq,
.btn-gold-sq {
  background: linear-gradient(135deg, #E87428 0%, #D97706 100%);
  color: #FFFFFF !important;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-green-sq:hover,
.btn-gold-sq:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.5);
  color: #FFFFFF !important;
}

/* Interactive Year Switcher Bar at Bottom */
.hero-color-stripe-tabs {
  display: flex;
  width: 100%;
  height: 52px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.stripe-tab {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.8px;
  font-family: "Lexend Deca", sans-serif;
  line-height: 1;
}

.stripe-tab.stripe-blue {
  background-color: #1B3C72;
}

.stripe-tab.stripe-yellow {
  background-color: #D97706;
}

.stripe-tab.stripe-orange {
  background-color: #E87428;
}

.stripe-tab.stripe-green {
  background-color: #00A859;
}

.stripe-tab.stripe-red {
  background-color: #E53935;
}

.stripe-tab.stripe-purple {
  background-color: #8B5CF6;
}

.stripe-tab.stripe-dark {
  background-color: #1E293B;
}

.stripe-tab:hover {
  filter: brightness(1.25);
  color: #FFFFFF;
}

.stripe-tab.active {
  filter: brightness(1.4);
  color: #FFFFFF;
  font-weight: 900;
  border-top: 3px solid #ffffff;
}

@media (max-width: 768px) {
  .hero-heading-main {
    font-size: 1.8rem;
  }

  .hero-color-stripe-tabs {
    height: 44px;
  }

  .stripe-tab {
    font-size: 12px;
  }
}