
    /* Global */

    a {
    text-decoration: none;
    color: inherit;
    }

    a:hover {
    text-decoration: none !important;
    }

    /* ============================
    HERO SECTION
    ============================ */
    .hero-section {
    position: relative;
    z-index: 9;
    overflow: hidden;
    color: #fff;
    min-height: 95dvh;
    display: flex;
    align-items: flex-end;
    padding: 8% 0 0 0;
    }

    .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: center top;
    }

    .hero-section h1,
    .hero-section .highlight {
    font-weight: 700;
    font-size: 4rem;
    line-height: 4.5rem;
    color: #ffffff;
    text-transform: uppercase;
    }

    .logos-container{
        display: flex;
        justify-content: center;
    }

    .hero-section .highlight {
    color: #BCD900;
    }
    .pre-text{
    letter-spacing: 7px;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    padding-right:4rem;
    }
    .hero-section p {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    padding-right:4rem;
    }

    .btn-listen {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    }

    .btn-listen:hover {
    background-color: #BCD900;
    color: #000;
    }

    .video-preview-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      border-radius: 1rem;
      overflow: hidden;
      background-color: #333;
    }

    .video-placeholder,
    .video-preview-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    }

    .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 2;
    }

    .listen-icons {
    display: inline-flex;
    gap: 1.5em;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: .5rem;
    }

    .listen-icons img {
    height: 30px;
    }

    .listen-icons a:hover img {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.2s ease;
    }



    /* ============================
    EPISODES SECTION (latest)
    ============================ */
    .episodes-section {
    position: relative;
    padding: 4rem 2rem 2rem 2rem;
    color: #fff;
    background-color: #fff;
    overflow: hidden;
    margin-top: -10px;
    }
    .our-latest-setion h2{
        position: relative;
        z-index: 1;
    }
    .episode-container{
        padding: 0 5%;
    }
    .episodes-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 0;
    overflow: hidden;
    }

    .episodes-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    }

    .episodes-section h2 {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    color: #ffffff;
    }

    .episodes-section .highlight {
    color: #BCD900;
    }

    .episode-card {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      color: #fff;
      transition: transform 0.3s ease;
      height: 90%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .episode-card:hover {
    transform: scale(1.02);
    color: #BCD900;
    }

    .episode-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    z-index: 0;
    transition: filter 0.3s ease;
  }

    .card-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.76);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
    .episode-card:hover .card-overlay {
      opacity: 1;
      visibility: visible;
    }
    .episode-label {
    font-weight: bold;
    color: #BCD900;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
    }

    .play-icon {
    width: 50px;
    margin-bottom: 1rem;
    transition: filter 0.3s ease;
    }

    .episode-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    }
    .episode-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e0e0e0;
    margin: 0;
    }

    .episode-card:hover .episode-bg {
    filter: brightness(0.6);
    }

    .episode-card:hover .play-icon {
    filter: brightness(0.8);
    }
    @media (max-width: 767.98px) {
  .episode-card {
    height: auto;
  }

  .episode-bg {
    position: relative;
    height: auto;
    object-fit: contain;
    z-index: 0;
  }

  .card-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    background: #000;
    position: relative;
    padding: 1.5rem;
  }

  .play-icon {
    width: 40px;
    margin-bottom: 1rem;
  }

  .episode-title {
    font-size: 1.1rem;
  }

  .episode-description {
    font-size: 0.9rem;
  }
}


    /* ============================
    EXPECT SECTION
    ============================ */
    .expect-section {
    background-color: #fff;
    color: #000;
    padding: 1rem 1rem 0rem 1rem !important;
    }

.expect-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 3rem !important;
}

.expect-image-wrapper {
  position: relative;
  min-width: 300px;
  max-width: 400px;
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
  overflow: hidden;
}

.expect-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expect-content {
  display: flex;
  flex: 1;
  padding: 2rem 2rem;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.expect-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.icon-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.icon-box {
  width: 60px;
  background-color: #BCD900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 160px 160px;
  padding: 1rem;
  height: 70%;
}

.icon-box img {
  padding-top: 18px;
  width: 36px;
  height: auto;
}



.text-content {
  display: flex;
  flex-direction: column;
  max-width: 30%;
  padding-left: 10%;
}

.item-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
  color: #000;
  line-height: normal;
}

.item-desc {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

.desc-col {
  text-align: right;
  width: 70%;
  border-left: 2px solid #BBD800;
  padding: 0 5%;
}


@media (max-width: 768px) {
  .expect-card {
    flex-direction: column;
    border-radius: 1.5rem;
  }

  .expect-image-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    border-radius: 1.5rem 1.5rem 0 0;
  }
  .expect-image {
      width: 115%;
      height: 100%;
      object-fit: cover;
  }
  .expect-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .expect-info {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
  }

  .icon-column {
    width: 30%;
    align-items: flex-start;
    padding-left: 1.5rem;
  }

  .icon-box {
    width: 100%;
    height: auto;
    margin-top: -1rem;
    padding-top: 30px;
  }

  .icon-box img {
    width: 28px;
    padding-top: 0;
  }

  .text-content {
    max-width: 75%;
  }

  .item-title {
    font-size: 1.3rem;
  }

  .item-desc {
    font-size: 1rem;
  }

  .desc-col {
    width: 100%;
    text-align: left;
    padding-top: 1rem;
    border-top: 2px solid #BBD800;
    border-left: 0px solid #BBD800;
  }

}


    /* ============================
    MORE EPISODES SECTION
    ============================ */
    .more-episodes-section {
    background-color: #fff;
    color: #000;
    padding: 1rem 1rem;
    }

    .more-episodes-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    }

    .more-episodes-section .highlight {
    color: #BCD900;
    }

    .episode-thumb {
    display: block;
    text-decoration: none;
    color: inherit;
    }

    .thumb-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    }

    .thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }

    .thumb-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 29%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    }

    .episode-thumb:hover .thumb-overlay {
    background-color: rgb(0 0 0 / 49%);
    }

    .episode-thumb:hover .play-icon {
    transform: scale(1.1);
    }

    .play-icon {
    width: 60px;
    transition: transform 0.3s ease;
    }

    .more-episodes-section h3 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-top: 1rem;
    }

    .more-episodes-section h3:hover {
    color: #000;
    text-decoration: none;
    }

    .watch-link {
    color: #BCD900;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    }

    .watch-link:hover {
    text-decoration: none;
    color: #7e9102;
    }

    .load-more-btn{
      display:flex;
      justify-content: center;
    }
    /* ============================
    QUIZ SECTION
    ============================ */
    .quiz-section {
    width: 100%;
    overflow: hidden;
    }
    .container-fluid{
        padding: 0;
    }
    .quiz-left {
    color: #000;
    min-height: 350px;
    padding: 0 2rem;
    }

    .quiz-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    z-index: 0;
    }
    .quiz-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 3rem 5rem !important; 
    display: flex !important;
    align-items: flex-start !important;
    }

    .quiz-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    color: #000;
    max-width: 100%;
    margin: 0px;
    }

    .quiz-button {
    background-color: #000;
    color: #BCD900;
    padding: 1rem 3rem;
    border-radius: 999px;
    font-weight: bold;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    }

    .quiz-button:hover {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    }

    .quiz-right {
    min-height: 350px;
    }

    .quiz-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }
    /* ============================
    Franchise Inquiry
    ============================ */
    .franchise-inquiry-section {
    background-color: #fff;
    color: #000;
    }

    .franchise-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 2.5rem;
    }

    .franchise-heading .highlight {
    color: #BCD900;
    }

    .franchise-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    }
    .button-container{
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    }
    .inquire-btn {
    background-color: #000;
    color: #fff;
    padding: 1rem 5rem;
    border-radius: 999px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
    }

    .inquire-btn:hover {
    background-color: #333;
    color: #fff;
    }

    /* Carousel wrapper */
    .brand-carousel-wrapper {
    background-color: #BCD900;
    overflow: hidden;
    }

    /* Swiper styles */
    .brand-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    }

    .logo-wrapper {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .logo-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    }

    /* Optional: make Swiper non-interactive */
    .brand-swiper {
    pointer-events: none;
    }

    /* ============================
    BLOG SECTION
    ============================ */
    .blog-section {
    background-color: #000;
    position: relative;
    overflow: hidden;
    }

    .blog-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    }

    .blog-section .container {
    position: relative;
    z-index: 2;
    }

    .blog-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    }

    .blog-title .highlight {
    color: #BCD900;
    }

    .blog-description {
    font-size: 1rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
    }

    .blog-card {
    background-color: #000000;
    border: 1px solid #FFF;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    }

    .blog-card:hover {
    transform: translateY(-4px);
    }

    .blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    }

    .blog-category {
    background-color: #444;
    color: #fff;
    padding: 0.2rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    border-radius: 999px;
    text-transform: uppercase;
    }

    .blog-post-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5rem;
    }

    .blog-excerpt {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0.5rem 0 1rem;
    line-height: 1.4;
    }

    .blog-meta {
    font-size: 0.85rem;
    color: #aaa;
    }

    .blog-icon {
    margin-right: 0.3rem;
    }

    .blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    }

    .blog-card-link:hover .blog-post-title {
    color: #BCD900;
    }

    .blog-card-link:hover {
    text-decoration: none;
    }

    .blog-card-link:hover .blog-img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    }
    /* View More button */
    .btn-view-more {
    display: inline-block;
    background-color: #BCD900;
    color: #000;
    padding: 0.8rem 5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: 0;
    cursor: pointer;
    }

    .btn-view-more:hover {
    background-color: #a5bf00;
    color: #000;
    text-decoration: none;
    }
/* responsive */
    @media (max-width: 767.98px) {
    .hero-section p {
     padding-right: 0rem;
    }
    .pre-text {
     padding-right: 0rem;
    }
    .hero-section h1, .hero-section .highlight {
    font-size: 2rem;
    line-height: 2.5rem;
    }
    .hero-section {
    padding: 15% 5% 0 5%;
    }
    .listen-icons {
        margin-top: 0rem;
    }
    .episodes-section {
        padding: 2rem 5% 2rem 5%;
    }
    .episode-container {
    padding: 0; 
    }
    .mb-4, .my-4 {
        margin-bottom: 0rem !important;
    }
    .quiz-overlay {
    align-items: center !important;
    }
    .quiz-title {
    font-size: 2rem;
    text-align:center;
    }
    .quiz-right{
        padding:0 !important;
    }
    .text-md-left {
        text-align: center !important;
    }

    .listen-icons {
        justify-content: center;
    }
    .blog-section {
    padding: 0 5%;
    }
    .btn-listen {
        margin-top:20px;
    }
    }