.hero-section.unified-hero {
  background: linear-gradient(to right, #0a0a2f, #1F2937);
  padding: 10px 30px;
  color: #ffffff;
  text-align: center;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #000219;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}


.mobile-nav {
  display: none;
}



.badge {
  background-color: #0D6BF7;
  padding: 8px 16px;
  display: inline-block;
  border-radius: 25px;
  margin-bottom: 20px;
  font-weight: 800;
  color: #fff;
  height: auto; /* changed */
  font-size: large;
  white-space: normal; /* important: allows wrapping */
  text-align: center;  /* optional: center wrapped text */
  word-wrap: break-word; /* ensures long text wraps */
  max-width: 100%; /* prevents overflow */
}

.hero-section h1 {
  font-size: 36px;
  font-weight: bold;
  padding-top: 40px;
  color: #ffffff;
}

.hero-section h2 {
  font-size: 30px;
  margin-top: 10px;
  color: #d1e4ff;
}

.hero-section h2 span {
  color: #0D6BF7;
}

.subheading {
  margin-top: 15px;
  font-size: 16px;
  color: #dcdcdc;
}

.details-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #10193a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(13, 107, 247, 0.3);
}

.details-card h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.details-card .left,
.details-card .right {
  flex: 1 1 300px;
  padding: 15px;
  text-align: center;
  color: #ffffff;
}

.details-card .left {
  padding: 30px;
}

.details-card img {
  max-width: 220px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.date-card,
.fee-card {
  background: #0D6BF7;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
}

.discount {
  color: #ffc107;
}

.benefits {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.benefits li {
  margin-bottom: 8px;
  color: #e9e9e9;
}

.contact {
  margin-top: 15px;
  font-size: 16px;
  color: #cccccc;
}

.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #0D6BF7, #2979ff);
  transition: background 0.3s;
  box-shadow: 0 0 15px rgba(13, 107, 247, 0.5);
}

.cta-button:hover {
  background: linear-gradient(135deg, #fff, #fff);
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.info-box {
  background-color: #0b1230;
  border-radius: 16px;
  padding: 30px;
  flex: 1 1 300px;
  box-shadow: 0 4px 20px rgba(13, 107, 247, 0.25);
  border: 1px solid rgba(13, 107, 247, 0.2);
}

.info-box h3 {
  margin-bottom: 20px;
  color: #57a0ff;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #dcdcdc;
}

.audience-title {
  font-size: 28px;
  font-weight: bold;
  margin: 70px 0 30px;
  text-align: center;
  color: #ffffff;
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.audience-card {
  background-color: #121b3d;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  flex: 1 1 220px;
  color: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 0 12px rgba(13, 107, 247, 0.15);
  border: 1px solid rgba(13, 107, 247, 0.2);
}

.audience-card:hover {
  transform: translateY(-6px);
}

.audience-card span {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.audience-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0D6BF7;
}

.audience-card p {
  font-size: 14px;
  color: #cfcfcf;
}

/* Tablet: max-width 1024px */
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 30px;
  }

  .hero-section h2 {
    font-size: 24px;
  }

  .info-cards,
  .audience-grid,
  .details-card {
    flex-direction: column;
    align-items: center;
  }

  .details-card .left,
  .details-card .right,
  .info-box,
  .audience-card {
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile: max-width 768px */
@media (max-width: 768px) {
  .hero-section.unified-hero {
    padding: 60px 20px;
  }

  .badge {
    font-size: 14px;
    height: auto;
    padding: 6px 12px;
  }

  .hero-section h1 {
    font-size: 26px;
    padding-top: 20px;
  }

  .hero-section h2 {
    font-size: 20px;
  }

  .subheading {
    font-size: 14px;
  }

  .details-card {
    padding: 20px;
  }

  .details-card img {
    max-width: 100%;
    height: auto;
  }

  .date-card,
  .fee-card {
    font-size: 14px;
    padding: 10px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .info-box {
    padding: 20px;
  }

  .info-box li {
    font-size: 14px;
  }

  .audience-title {
    font-size: 22px;
    margin: 40px 0 20px;
  }

  .audience-card {
    padding: 16px;
  }

  .audience-card span {
    font-size: 24px;
  }

  .audience-card h4 {
    font-size: 16px;
  }

  .audience-card p {
    font-size: 13px;
  }
}

/* Very Small Devices: max-width 480px */
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 22px;
  }

  .hero-section h2 {
    font-size: 18px;
  }

  .subheading {
    font-size: 13px;
  }

  .cta-button {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }

  .info-box {
    padding: 15px;
  }

  .audience-card {
    padding: 14px;
  }

  .audience-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {

  .hero-section.unified-hero {
    padding: 50px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
  }

  .container {
    padding: 0 10px;
  }

  .badge {
    font-size: 14px;
    padding: 6px 12px;
    height: auto;
    width: fit-content;
    margin: 0 auto 20px;
  }

  .hero-section h1 {
    font-size: 24px;
    padding-top: 20px;
  }

  .hero-section h2 {
    font-size: 18px;
  }

  .subheading {
    font-size: 14px;
  }

  .details-card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .details-card .left,
  .details-card .right {
    width: 100%;
    padding: 10px 0;
  }

  .details-card img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
  }

  .cta-button {
    width: 90%;
    font-size: 14px;
    padding: 10px 20px;
    margin: 20px auto 0;
  }

  .info-cards,
  .audience-grid {
    flex-direction: column;
    gap: 20px;
  }

  .info-box,
  .audience-card {
    width: 100%;
    padding: 20px;
  }

  .audience-title {
    font-size: 22px;
    margin: 40px 0 20px;
  }

  .audience-card span {
    font-size: 24px;
  }

  .audience-card h4 {
    font-size: 16px;
  }

  .audience-card p {
    font-size: 13px;
  }

  html, body {
    overflow-x: hidden;
  }
}



@media only screen and (max-width: 991px) {
  .mobile-nav {
    display: block;
    position: relative;
  }
  .mobile-nav .logo {
    text-decoration: none;
    position: absolute;
    top: 10px;
    z-index: 999;
    left: 15px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
    max-width: 145px;
  }
  .mobile-nav nav .navbar-nav {
    height: 300px;
    overflow-y: scroll !important;
  }
  .mobile-nav nav .navbar-nav .nav-item a i {
    display: none;
  }
}

.qr-code {
  width: 140px;
  margin: 10px auto 30px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(13, 107, 247, 0.3);
}


.hero-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding-top: 0px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}

.corner-logo.top-left img,
.corner-logo.bottom-right img {
  max-width: 100px;
  height: auto;
}

.corner-logo.bottom-right img {
  max-width: 150px !important;
  margin-top: 35px;
}


.heading-content {
  flex: 1 1 300px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero-heading-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .corner-logo.top-left img,
  .corner-logo.bottom-right img {
    max-width: 100px;
  }

  .heading-content {
    max-width: 100%;
  }
}
