/* About banner background + overlay */
.hero-banner{
    min-height: 500px;
    background: url('../../img/super-100.png') no-repeat center top -373px/cover;
    position: relative;
    z-index: 1;
}
.hero-banner::before{          /* subtle top vignette for depth (optional) */
    position: absolute;
    content: '';
    background: var(--color-dark);
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.8;
    z-index: -1;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  }


.features .feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.features .icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.store-btn{
  height: 45px;
}

.store-btn img{
  height: 100%;
  transition: transform .3s ease;
}
/* Accent underline under section headings */
.underline-accent {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50%;
  height: 3px;
  background: var(--color-gold, #F98233);
  border-radius: 2px;
  right: 0;
  margin: auto;
}

.what-we-do .img-fluid{
    max-height: 380px;
}

.achievements-box{
  border-radius: 12.5px;
} 

/* Mission / Vision card style */
.mv-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0px 0px 32.73px 0px rgba(0, 0, 0, 0.1);
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Round icon above headings */
.mv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  border-radius: 50%;
}

/* Checked list style */
.list-checked {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-checked li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
}
.list-checked li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-orange);
  font-weight: bold;
}

.app-download .img-fluid {
  max-height: 490px;
}

.app-features {
  font-size: 0.95rem;
  color: #444;
}

.text-teal {
  color: #008080;
}

.text-gold {
  color: #d4a017;
}
