.web-hero {
        position: relative;
        width: 100%;
        height: 60vh;
        top: -80px;
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
        overflow: hidden;
        /* background: url('/images/newsletter.png') center/contain no-repeat; */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

     /* Video box */
      .custom-video {
  width: 100%;
  max-width: 560px;
}

.video-box {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

/* video */
.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* hide native controls initially */
.video-player::-webkit-media-controls {
  opacity: 0;
  pointer-events: none;
}

/* show controls on hover */
.video-box:hover .video-player::-webkit-media-controls {
  opacity: 1;
  pointer-events: auto;
}

/* play button */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* Gradient Background */
.graduates-section {
  background: linear-gradient(to top, #fff6cf 0%, #ffffff 100%);
}

/* Benefit List Styling */
.benefits-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
}

/* .benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #f5b800;
  font-size: 14px;
} */


.benefits-list li img {
    position: absolute;
    left: 0;
    padding-right: 20px;
}

/* Logo Boxes */
.logo-strip {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  width: 70%;
}

.logo-box {
  width: 90px;
  height: 70px;
  background-color: #e9ecef;
  border-radius: 8px;
}


/* FAQ */
.faq-section {
  background-color: #f8f9fa;
}

.custom-accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  background-color: #ffffff;
  font-weight: 500;
  border-radius: 12px !important;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #000;
  box-shadow: none;
}

.accordion-body {
  background-color: #ffffff;
}