.hero {
  position: relative;
  padding: 8.125rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;right: 0;
  z-index: -1;
}

.hero-blur {
  position: absolute;
  width: 37.5rem;
  height: 37.5rem;
  top: 6.25rem;
  right: 12.5rem;
  background: url('https://static.codia.ai/custom_image/2025-07-05/093147/hero-blur-effect.svg') no-repeat center;
  background-size: cover;
  filter: blur(250px);
  border-radius: 50%;
}

.hero-content {
  padding-right: 2rem;
}

.notification-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.031rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.notification-badge i {
  font-size: 0.75rem;
  color: var(--primary-color);
}

.hero-title {
  font-family: var(--font-montserrat);
  font-size: 3.563rem;
  font-weight: 600;
  line-height: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.016rem;
}

.hero-description {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: 0.006rem;
  max-width: 28.5rem;
}

.hero-cta-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: 0.006rem;
}

.hero-image {
  position: relative;
  /* text-align: center; */
  margin-right: -2.5rem;
}

.hero-image img {
  max-width: 100%;width: 100%;
  height: auto;
  filter: drop-shadow(0 1.25rem 40px rgba(0, 0, 0, 0.3));
}


@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 8rem 0 2.5rem;
  }
   .notification-badge {
    font-size: 0.625rem;margin-bottom: 1rem;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .hero-description{margin-inline: auto}
  
  .hero-blur {
    right: 50%;
    transform: translateX(50%);
  }
  .hero-cta-text{margin-bottom: 1.25rem;}
}
@media (min-width:992px) and (max-width:1199px){
  .hero-title{font-size: 2.625rem;line-height: 3rem}
}
@media (max-width: 1299px) {
  
  .hero-image{margin: 0}
 
}
