/* Kuangke Banner Section */
.kuangke-banner-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Banner Content */
.kuangke-banner-section .kuangke-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

.kuangke-banner-section .kuangke-banner-text {
  max-width: 100%;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

/* Typography */
.kuangke-banner-section .kuangke-banner-title {
  font-size: clamp(20px, 2.75vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 40px;
  padding: 0 15px;
  color: #ffffff;
  /* font-family: var(--title-font-family, 'Roboto', sans-serif); */
  animation: fadeInUp 1s ease-out 0.2s both;
  font-family: inter;
}

/* Buttons */
.kuangke-banner-section .kuangke-banner-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.kuangke-banner-section .kuangke-banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 23px; 
  border-radius: 6px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 120px;
  justify-content: center;
  margin: 0px 17px 0 17px;
  font-family: inter;
}

.kuangke-banner-section .kuangke-banner-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.kuangke-banner-section .kuangke-banner-btn:hover::before {
  left: 100%;
}

.kuangke-banner-section .kuangke-banner-btn-primary {
  background: var(--color-primary, #1554a3);
  color: #ffffff;
  text-transform: uppercase;
}

.kuangke-banner-section .kuangke-banner-btn-primary:hover {
  background: #fff;
  color: #000000;
  text-decoration: none;
}

.kuangke-banner-section .kuangke-banner-btn-secondary {
  background: #ff6723;
  color: #ffffff;
  text-transform: uppercase;
}

.kuangke-banner-section .kuangke-banner-btn-secondary:hover {
  background: #f7f7f7;
  color: #000000;
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {


  .kuangke-banner-section .kuangke-banner-btn {
    padding: 18px 35px;
    font-size: 1.05rem;
  }
}

@media (max-width: 992px) {
  .kuangke-banner-section {
    background-attachment: scroll;
    min-height: 44vh;
  }

  .kuangke-banner-section .kuangke-banner-content {
    padding: 60px 0;
  }

  .kuangke-banner-section .kuangke-banner-title {
    margin-bottom: 35px;
  }

  .kuangke-banner-section .kuangke-banner-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin: 0px 5px;
  }
}

@media (max-width: 768px) {
  .kuangke-banner-section .kuangke-banner-content {
    padding: 40px 0;
  }

  .kuangke-banner-section .kuangke-banner-title {
    margin-bottom: 30px;
  }



  .kuangke-banner-section .kuangke-banner-actions {
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .kuangke-banner-section {
    min-height: 35vh;
  }



  .kuangke-banner-section .kuangke-banner-actions {
    gap: 10px;
  }
}
