 body {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-style: normal;
      overflow-x: hidden;
    }
 mark {
      background-color: yellow;
      font-weight: bold;
    }
    .navbar-brand img {
      height: 50px;
    }

    .partner-logos img {
      height: 50px;
      margin-left: 20px;
    }

    .form-control {
      border-radius: 50px;
    }

    .offcanvas-header {
      border-bottom: 1px solid #ddd;
    }

    .offcanvas-body a {
      display: block;
      margin: 10px 0;
      font-size: 18px;
    }

    .dashboard {
      padding: 25px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

  .card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 11%);
    transition: 0.3s ease;
}

    .card:hover {
      background-color: #ffffff;
    }

    .card h3 {
      font-size: 22px;
      color: #ff5e00;
    }

 .card p {
    font-size: 14px;
    color: #000000;
}
    footer {
      text-align: center;
      padding: 20px;
      background-color: #111;
      color: #666;
      margin-top: 40px;
    }

    .podcast-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 12px;
    }

    .podcast-title {
      font-size: 18px;
      margin-top: 10px;
      text-align: center;
    }



    .slide-wrapper {
      position: relative;
    }

    .carousel-title {
      font-size: 1rem;
      font-weight: bold;
      padding: 0.1rem;
    }

    .swiper-slide img {
      border-radius: 12px;
      width: 100%;
      /* height: 250px; */
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
    }

    .swiper-slide img:hover {
      transform: scale(1.03);
    }

    .swiper {
      padding: 10px 0;
    }

    @media (max-width: 576px) {
      .swiper-slide img {
        /* height: 200px; */
      }
    }

    .para {
      font-size: 1.05rem;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto;
      padding: 1rem;
      text-align: justify;
      color: #333;
      background-color: #f9f9f9;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .slide-wrapper {
      position: relative;
      display: inline-block;
      width: 100%;
      max-width: 100%;
    }

    .podcast-img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      display: block;
    }

    /* Pulsing animation */
    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 0.8;
      }

      50% {
        transform: scale(1.15);
        opacity: 1;
      }

      100% {
        transform: scale(1);
        opacity: 0.8;
      }
    }

    /* 
 .container-mt {
      max-width: 1200px;
      margin: auto;
    } */

    .slide-wrapper {
      position: relative;
      display: inline-block;
      width: 100%;
      max-width: 100%;
    }

    .podcast-img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      display: block;
    }

    /* Pulse Animation */
    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 0.8;
      }

      50% {
        transform: scale(1.15);
        opacity: 1;
      }

      100% {
        transform: scale(1);
        opacity: 0.8;
      }
    }

    .play-btn {
      position: absolute;
      bottom: 20px;
      right: 10px;
      z-index: 10;
      background-color: rgba(0, 0, 0, 0.6);
      border: none;
      font-size: 20px;
      color: white;
      border-radius: 50%;
      padding: 10px;
      cursor: pointer;
      animation: pulse 1.8s infinite;
      transition: background-color 0.3s ease, transform 0.3s ease;
      width: 50px;
      height: 50px;
    }

    /* Show button on hover (desktop) */
    @media (min-width: 577px) {
      .play-btn {
        opacity: 0;
        pointer-events: none;
      }

      .slide-wrapper:hover .play-btn {
        opacity: 1;
        pointer-events: auto;
      }
    }

    /* On mobile: always visible */
    @media (max-width: 576px) {
      .play-btn {
        font-size: 24px;
        padding: 6px;
        bottom: 6px;
        right: 6px;
        opacity: 1;
        pointer-events: auto;
      }
    }

    .podcast-title {
      text-align: center;
      margin-top: 10px;
    }

    .carousel-title {
      font-size: 1rem;
      margin: 30px 0 10px;
    }

    .swiper-slide img {
      width: 100%;
      border-radius: 10px;
    }

    .nav-link {
      display: block;
      padding: .5rem 1rem;
      color: #000000;
      text-decoration: none;
      transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    }

    .popular-img {
      width: 300px;
      /* height: 200px; */
      object-fit: cover;
      border-radius: 8px;
    }

    .carousel-title {
      font-size: 1rem;
      margin: 0px;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 13px;
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    color: #d2cdcd;
}
.btn-orange {
    background-color: #f38d1b;
    border: none;
    transition: background-color 0.3s ease;
}
.btn-orange:hover {
  background-color: #f38d1b;
  color: #fff;
}
  .offcanvas .nav-link:hover {
    background-color: #f1f1f1;
    border-radius: 6px;
    transition: background 0.2s;
  }

  .offcanvas .btn {
    border-radius: 8px;
  }

  .btn-primary {
    background-color: #f38d1b;
    border-color: #f38d1b;
  }

  .btn-primary:hover {
    background-color: #f38d1b;
    border-color: #f38d1b;
  }

 .btn-outline-secondary:hover {
    background-color: #000000;
}
   #sidebarMenu {
    width: 100%;
  }

  .custom-link {
    width: 100%;
    padding: 12px 0;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s, color 0.3s;
  }

  .custom-link:last-child {
    border-bottom: none; /* No border after last item */
  }

  .custom-link:hover {
    background-color: #f8f9fa;
    color: #ff6600;
  }

  .custom-link i {
    font-size: 1.1rem;
  }
  .swiper-slide img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ff6600;
}
h1.MAIN-HEADING {
    color: #ff6600;
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 23%);
}
/* Footer Container */
.footer {
    background-color: #000000;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 60px;
    gap: 40px;

}
/* Left Section with logo & social */
.footer-left {
  flex: 1 1 250px;
  max-width: 250px;
}

.logo-k {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.dot {
  color: #ff3300;
}

.follow-text {
  color: #ff3300;
  margin: 15px 0 10px;
  font-weight: 600;
  font-size: 14px;
}

.social-icons a {
  color: #bbb;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff3300;
}

.footer-left p {
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.5;
  color: #ddd;
}

/* Columns */
.footer-column {
  flex: 1 1 150px;
  min-width: 150px;
}

.footer-column h4 {
    color: #f3871b;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff3300;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 30px 20px;
  }

  .footer-left,
  .footer-column {
    max-width: 100%;
  }
}
 .podcast-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .podcast-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.75rem;
    color: #333;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1);
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
  }

  .carousel-indicators [data-bs-target] {
    background-color: #333;
  }
.image-row {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 10px;
  padding: 10px;
  justify-content: flex-start;
}

.image-row img {
  width: calc(60% /7 - 10px); /* 5 images fit the row */
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}


.image-row img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .image-row img {
    flex: 1 1 calc(60% / 3 - 10px);
    max-width: calc(100% / 3 - 10px);
  }
}

@media (max-width: 480px) {
  .image-row img {
    flex: 1 1 calc(100% / 2 - 10px);
    max-width: calc(100% / 2 - 10px);
  }
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    margin-top: 13px;
    video {
    width: 200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
}
}

    @media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 20%;
    }
}

  .hover-effect:hover {
    color: #0d6efd;
    transform: scale(1.05);
    transition: 0.3s ease;
  }
  .swal2-popup {
    font-size: 1rem !important;
  }
 .video-thumbnail {
  height: 335px;
  position: relative;
  cursor: pointer;
}

.video-thumbnail iframe {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
}
.swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-slide {
  user-select: none;
  touch-action: pan-y;
}
.modal-header {
    CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
    display: flex;
    flex-shrink: 0;
    /* align-items: center; */
    justify-content: space-between;
    padding: 0rem 0rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}
/* Remove default padding/margins */
#trialModal .modal-content {
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

#trialModal .modal-header {
  padding: 1rem 1rem 0 1rem;
  justify-content: flex-end;
}

#trialModal .modal-body {
  padding: 1rem;
}

#trialModal .modal-footer {
  padding: 1rem;
  background-color: #fff;
}

.trial-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #222;
}

.trial-section .text-warning {
  font-size: 1rem;
  font-weight: 500;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.feature-item i {
  font-size: 1.4rem;
  color: #f39c12;
}

/* Promo Video */
#promoVideo {
  border-radius: 8px;
  margin-top: 1rem;
}

/* Start Button */
#trialModal .btn-start {
  background-color: #ff5e00;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0.6rem 2rem;
  border-radius: 30px;
  transition: background 0.3s;
}

#trialModal .btn-start:hover {
  background-color: #e84c00;
}

/* Note text */
#trialModal .note {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  max-width: 90%;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0rem;
}
/* Responsive */
@media (min-width: 768px) {
  .features {
    flex-direction: row;
    justify-content: space-between;
  }

  .feature-item {
    flex: 1;
  }
}
/* Base Footer Styles */
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem 1rem;
    background-color: #111;
    color: #fff;
    font-size: 14px;
    gap: 1rem;
    flex-direction: row;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer .footer-left {
  flex: 100%;
  margin-bottom: 1.5rem;
}

.footer .logo img {
  height: 40px;
  margin-bottom: 0.5rem;
}

.footer .follow-text {
  margin: 0.5rem 0;
  font-weight: 500;
}

.footer .social-icons {
  margin-top: 0.5rem;
}

.footer .social-icons a {
  margin-right: 0.6rem;
  font-size: 1.2rem;
  color: #ccc;
}

.footer .social-icons a:hover {
  color: #fff;
}

.footer-column {
  width: 48%; /* Show 2 per row on small devices */
  margin-bottom: 1.2rem;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: #f3871b;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.4rem;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer .copyright {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #888;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .footer {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-left {
    flex: 1 1 20%;
    margin-bottom: 0;
  }

  .footer-column {
    width: auto;
    flex: 1 1 15%;
  }
}
@media(max-width:767px){
  .footer {
    display: flex!important;
    flex-wrap: wrap!important;
    justify-content: space-between!important;
    padding: 2rem 1rem!important;
    background-color: #111!important;
    color: #fff!important;
    font-size: 14px!important;
    gap: 1rem!important;
    flex-direction: row!important;
}
.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 11%);
    transition: 0.3s ease;
}
.video-thumbnail iframe {
    height: 400px;
    width: 100%;
    border-radius: 0.5rem;
}
button.btn.d-md-none {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 19px;
}
.partner-logos img {
    height: 40px;
    margin-left: 41px;
}
.modal-content.border-0 {
    padding: 14px;
}
}
@media (min-width: 768px) and (max-width: 991.98px) {

  /* Reduce card margin for tighter layout on tablets */
  #videoCarousel .carousel-item .col-md-2 {
    flex: 0 0 auto;
    width: 33.3333%; /* Show 3 videos per row */
  }

  #videoCarousel .card {
    margin: 0 8px;
    border-radius: 10px;
  }

  #videoCarousel .video-thumbnail {
    position: relative;
    cursor: pointer;
  }

  #videoCarousel .video-thumbnail img {
    border-radius: 10px 10px 0 0;
    height: auto;
    width: 100%;
  }

  #videoCarousel .video-thumbnail i {
    font-size: 2rem;
    color: white;
    /* background: rgba(0, 0, 0, 0.4); */
    border-radius: 50%;
    padding: 6px;
  }

  #videoCarousel .card-body {
    padding: 0.75rem 0.5rem;
  }

  #videoCarousel .card-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
  }

  /* Carousel Controls (optional: adjust padding/size) */
  #videoCarousel .carousel-control-prev-icon,
  #videoCarousel .carousel-control-next-icon {
    background-size: 80% 80%;
    padding: 12px;
    border-radius: 50%;
  }
}
.card-body {
    flex: 1 1 auto;
    padding: 0rem;
}
h6.card-title.text-center {
    margin-top: 15px;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #111; /* Dark background */
  color: #fff;
  padding: 40px 20px;
  gap: 20px;
}

.footer-left {
  flex: 1 1 250px;
}

.footer-left .logo img {
  margin-bottom: 10px;
}

.follow-text {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffcc00; /* Hover highlight */
}

.footer-column {
  flex: 1 1 180px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #f3871b;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  background-color: #000;
  padding: 10px 0;
  font-size: 13px;
  color: #aaa;
  margin: 0;
}
