.banner-bg {
  background: linear-gradient(90deg, #5ba3c9 0%, #0062a1 100%);
  background-image: url("../images/gitex/shadow-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

/* Banner layout */
.banner {
  min-height: 350px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 5rem;
  gap: 50px;
}

/* Header inside banner */
.event-header {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

/* Divider line */
.divider {
  height: 70px;
  width: 1px;
  background-color: #fff;
  margin: 0 20px;
}

/* Text styles */
.insta-text {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
  padding-bottom: 13px;
}

.highlight {
  color: #fcaf1b;
}

/* Tally section divider */
.tally-section div {
  height: 100%;
  width: 1px;
  background-color: #fff;
  margin: 0 20px;
}

/* Tick list */
.custom-tick-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-tick-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-family: "Roboto Regular";
}

.custom-tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: url("../images/gitex/tick.png") no-repeat center center / contain;
}

.custom-tick-list li img {
  vertical-align: middle;
  height: 1.7em; /* scales with font size */
  width: auto;
}
.caption_reverse{
  width: 300px;
}

/* ===========================================================
   ✅ Responsive Design for screens below 1280px
   =========================================================== */
@media (max-width: 1000px) {
  .banner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 2rem;
    gap: 2rem;
  }
  .caption_reverse{
    width: 250px;
  }

  .event-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .divider {
    display: none; /* Hide the divider line on smaller screens */
  }

  .custom-tick-list li {
    padding-left: 30px;
    font-size: 0.95rem;
  }

  .custom-tick-list li::before {
    width: 18px;
    height: 18px;
    top: 2px;
  }

  .custom-tick-list li img {
    height: 1.4em;
  }

  .banner-bg {
    background-size: cover; /* Prevent background from cropping */
  }

  .tally-section div {
    display: none; /* Optional: Hide vertical divider */
  }
}
