.hero{
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    #fff 0%,
    #fff0f5 50%,
    #ffffff 100%
  );
  font-family: "Poppins", sans-serif;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* soft pink glow effect */
.hero::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #ffbed0;
  opacity: 0.15;
  border-radius: 50%;
  top: -100px;
  right: -150px;
  filter: blur(80px);
}

.hero-content{
  max-width: 100%;
  z-index: 2;
}

.badge{
  background: #ffbed0;
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero h1{
  font-size: 48px;
  margin: 20px 0;
  color: #222;
  font-weight: 700;
}

.hero p{
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-buttons{
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary{
  background: #ffbed0;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover{
  background: #ff7fb0;
  transform: translateY(-2px);
}

.btn-secondary{
  border: 2px solid #ffbed0;
  color: #ffbed0;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover{
  background: #ffbed0;
  color: white;
}
#custom-text {
    padding: 40px 15px 40px 15px;
    margin-bottom: 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 2px;
}
#custom-text .hero-content h1{
        margin-top: 25px;
}
#search_widget form input{
  background-color: #ff7fb0;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #fff;
}
.header-top .search-widgets form input[type=text]{
  color: #fff;
}