.hero-section {
  position: relative;
  height: 460px;
  margin-top: 120px;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 30%;
  transform: translateY(-50%);
}

/* Cards */
.info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 180px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.info-card:hover {
  transform: translateY(-6px);
  background: rgba(0, 0, 0, 0.8);
}

.info-card.active {
  outline: 3px solid #f5c400;
}

        .scroll-bs {
    border: 1px solid #ccc;
    padding: 10px;
    height: 460px;
    overflow: auto;
}


section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #106eea;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

.small-border {
    height: 2px;
    width: 120px;
    background:#00ad00 !important;
    display: block;
    margin: 0 auto;
    margin-top: 0px !important; 
    margin-bottom: 20px;
} 
.c-banner {
    animation: 3s shimmer 1s ease;
    background: #f3f2f5 linear-gradient(to right, #a4a9ad, #00ad00);
    background-size: 200% 100%;
    color: #fff;
    padding: 24px 64px;
    position: relative;
    text-align: center;
}