/* Redesigned Hero Section Styles */
.hero-section-new {
  background: linear-gradient(120deg, #1e3c72 0%, #2a5298 50%, #f7971e 100%);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  position: relative;
  overflow: hidden;
  animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media(max-width: 756px) {
  .hero-section-new {
    max-height: 800px;
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-section-new .hero-logo {
  width: 180px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 8px 18px;
  box-shadow: 0 4px 24px 0 rgba(99, 102, 241, 0.10);
}

.hero-section-new .hero-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero-section-new .gradient-text {
  background: linear-gradient(90deg, #f7971e, #ffd200, #21d4fd, #b721ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-section-new .hero-lead {
  font-size: 1.25rem;
  color: #f3f4f6;
  font-weight: 500;
}

.hero-section-new .hero-btn {
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 40px;
  padding: 12px 32px;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px 0 rgba(31, 38, 135, 0.10);
  margin-bottom: 0;
}

.hero-section-new .btn-gradient {
  background: linear-gradient(90deg, #f7971e 0%, #ffd200 100%);
  color: #222;
  border: none;
}

.hero-section-new .btn-gradient:hover {
  background: linear-gradient(90deg, #21d4fd 0%, #b721ff 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}

.hero-section-new .hero-badges .badge {
  font-size: 1rem;
  padding: 0.7em 1.2em;
  border-radius: 20px;
  margin-bottom: 8px;
  margin-right: 8px;
  background: rgba(255, 255, 255, 0.85);
  color: #1e3c72;
  font-weight: 600;
}

.hero-section-new .hero-main-img {
  max-width: 80%;
  margin-left: auto;
  float: right;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(99, 102, 241, 0.18);
  z-index: 2;
}

.hero-section-new .hero-img-wrapper {
  position: relative;
  display: inline-block;
}

.hero-section-new .hero-floating {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  animation: floatShape 7s ease-in-out infinite alternate;
}

.hero-section-new .hero-float-1 {
  width: 90px;
  height: 90px;
  background: #ffd200;
  top: -30px;
  left: 80px;
  animation-delay: 0s;
}

.hero-section-new .hero-float-2 {
  width: 60px;
  height: 60px;
  background: #21d4fd;
  bottom: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero-section-new .hero-float-3 {
  width: 40px;
  height: 40px;
  background: #b721ff;
  top: 60%;
  left: 80%;
  animation-delay: 2.2s;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-24px) scale(1.08);
  }
}

.hero-section-new .hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.13;
  filter: blur(8px);
  pointer-events: none;
}

.hero-section-new .hero-bg-1 {
  width: 320px;
  height: 320px;
  background: linear-gradient(120deg, #21d4fd 0%, #b721ff 100%);
  top: -80px;
  left: -100px;
  animation: bgMove1 12s infinite alternate;
}

.hero-section-new .hero-bg-2 {
  width: 180px;
  height: 180px;
  background: linear-gradient(120deg, #ffd200 0%, #f7971e 100%);
  bottom: -60px;
  right: -60px;
  animation: bgMove2 10s infinite alternate;
}

.hero-section-new .hero-bg-3 {
  width: 120px;
  height: 120px;
  background: linear-gradient(120deg, #1e3c72 0%, #2a5298 100%);
  top: 60%;
  left: 80%;
  animation: bgMove3 14s infinite alternate;
}

@keyframes bgMove1 {
  0% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1.08) translateY(30px);
  }
}

@keyframes bgMove2 {
  0% {
    transform: scale(1) translateX(0);
  }

  100% {
    transform: scale(1.12) translateX(-20px);
  }
}

@keyframes bgMove3 {
  0% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1.15) translateY(-20px);
  }
}

@media (max-width: 991px) {
  .hero-section-new .hero-title {
    font-size: 2rem;
  }

  .hero-section-new {
    min-height: 350px;
    padding: 2rem 0;
  }

  .hero-section-new .hero-main-img {
    max-width: 220px;
  }
}

@media (max-width: 575.98px) {
  .hero-section-new .hero-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .hero-section-new .hero-title {
    font-size: 1.3rem;
  }

  .hero-section-new .hero-logo {
    width: 120px;
  }
}