/* Store Hero (Bootstrap 5) - Full Width Like Example */

.hero{
  padding: 0; /* ✅ no outer spacing */
}

.hero-full{
  width: 100%;
}

/* ✅ Full width background without rounded edges */
.hero-shell{
  width: 100%;
  background: #fff;
  border-radius: 0; /* ✅ remove rounding */
  overflow: hidden;
  position: relative;
}

/* soft glow like example */
.hero-shell:before{
  content:'';
  position:absolute;
  width: 760px;
  height: 760px;
  top: -420px;
  right: -420px;
  background: radial-gradient(circle, rgba(25,135,84,.14), rgba(13,110,253,.10), rgba(255,255,255,0));
  filter: blur(18px);
  pointer-events:none;
}

html[dir="ltr"] .hero-shell:before{
  left: -420px;
  right: auto;
}

.hero-inner{
  padding: 30px 0;
}

@media (min-width: 992px){
  .hero-inner{
    padding: 56px 0;
    min-height: 540px; /* ✅ reduced height */
    display: flex;
    align-items: center;
  }
}

/* ✅ Force text direction alignment */
.hero-text{
  text-align: right;
}
html[dir="ltr"] .hero-text{
  text-align: left;
}

.hero-title{
  font-weight: 900;
  font-size: 44px;
  line-height: 1.22;
  letter-spacing: -0.3px;
  margin: 0;
}

@media (max-width: 991px){
  .hero-title{
    font-size: 30px;
  }
}

.hero-title .gradient{
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 900;
}

.hero-desc{
  font-size: 15px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}

.hero-cta{
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 800;
  border: 0;
  background: var(--primary);
  box-shadow: 0 14px 26px rgba(25,135,84,.22);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  margin-top: 2px;
}

.hero-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(25,135,84,.26);
  opacity: .97;
  color: #fff;
}

.hero-illustration{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image{
  width: 100%;
  max-width: 620px;
  height: 340px; /* ✅ reduced image height */
  object-fit: contain;
  display: block;
  margin: auto;
  filter: drop-shadow(0 22px 32px rgba(17,24,39,.10));
}

@media (max-width: 991px){
  .hero-image{
    height: 310px;
    max-width: 520px;
  }

  .hero-inner{
    padding: 24px 0;
  }
}
