 .offcanvas .nav-link:hover {
    background-color: #f1f1f1;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .offcanvas-header {
      border-bottom: 1px solid #ddd;
    }

  .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;
}