@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:100,300,400,500,700,900&display=swap");
@font-face {
  font-family: "SolaimanLipi";
  src: url("../fonts/solaimanLipi.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "SolaimanLipi", "Open Sans", "Roboto", sans-serif;
  background-color: #fff;
  line-height: 1.5;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
}
a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
}
a:hover {
  color: #137df6;
}

@media only screen and (max-width: 600px) {
  .col-6 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

ul {
  list-style-type: none;
  list-style: none;
}

.title1 {
  font-size: 20px !important;
  color: #121212 !important;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  line-height: 1.3em;
  padding: 10px 0px;
  transition-duration: 0.2s;
}

@media only screen and (max-width: 676px) {
  .title1 {
    font-size: 18px;
  }
}

.title2 {
  color: #2d3134 !important;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 676px) {
  .title2 {
    font-size: 16px !important;
  }
}

.title3 {
  font-size: 16px;
  font-weight: 600 !important;
  text-decoration: none;
  padding: 10px 0px 15px;
  transition-duration: 0.2s;
}
@media only screen and (max-width: 676px) {
  .title3 {
    font-size: 14px;
    line-height: 1.3;
    padding: 5px 0px 5px;
  }
}

.hover-color:hover {
  color: #137df6 !important;
}

.card-hover img {
  transition: opacity 0.3s ease;
}
.card-hover:hover a,
.card-hover:hover h1,
.card-hover:hover h2,
.card-hover:hover h3,
.card-hover:hover h4,
.card-hover:hover h5,
.card-hover:hover h6 {
  transition: color 0.3s ease;
  color: #137df6 !important;
}

.card-hover:hover {
  transition-duration: 0.2s;
  cursor: pointer;
}

.card-hover:hover img {
  opacity: 0.8;
}

.description {
  color: #555555;
  font-size: 14px !important;
  line-height: 18px;
  font-weight: 400;
}

.common-border-box {
  background-color: #fff;
  padding: 8px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
}

.summery {
  -webkit-line-clamp: 3;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.two-line-truncate {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.height-fit {
  height: fit-content !important;
}

@media only screen and (max-width: 676px) {
  .description {
    font-size: 12px;
    line-height: 1.3;
    padding: 5px 0px 5px;
  }
}

/* Width size */
.container {
  max-width: 1360px;
}

@media only screen and (width: 1920px) {
  .container {
    width: 90%;
  }
}

@media only screen and (width: 1366px) {
  .container {
    max-width: 90%;
  }
}

@media only screen and (width: 1024px) {
  .container {
    width: 90%;
  }
}

@media only screen and (width: 2560px) {
  .container {
    max-width: 70%;
  }
}

.container-fluid {
  max-width: 80% !important; /*Set your own width %; */
}
@media only screen and (max-width: 600px) {
  .container-fluid {
    width: 100% !important; /*Set your own width %; */
  }
}

/* Header Styles */
.header {
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}

.top-header {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.online-tag {
  font-size: 12px;
  color: #666;
  margin-right: 5px;
}

.logo img {
  height: 50px;
  max-width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-menu-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 5px 10px;
  white-space: nowrap;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

/* Magazine Dropdown */
.magazine-menu {
  left: 0;
  min-width: 200px;
  border-radius: 0;
  padding: 0;
}

.magazine-menu .dropdown-item {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.magazine-menu .dropdown-item:last-child {
  border-bottom: none;
}

.magazine-menu .dropdown-item:hover {
  background-color: #f5f5f5;
}

/* Social Media Dropdown - Updated for smooth transition */
.social-menu {
  position: absolute;
  left: -20vw;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 1200px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 5px;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;

  /* Smooth transition */
  transition: opacity 0.3s ease, visibility 0.3s ease;

  /* Layout */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Show dropdown on hover with smooth transition */
.social-dropdown:hover .social-menu {
  opacity: 1;
  visibility: visible;
}

.social-container {
  flex: 1 0 22%;
  min-width: 250px;
  margin-bottom: 20px;
}

.social-header {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.social-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
}

.social-link i {
  width: 20px;
  text-align: center;
}

.social-link i.fa-facebook-f {
  color: #1877f2;
}

.social-link i.fa-youtube {
  color: #ff0000;
}

.social-link i.fa-tiktok {
  color: #000000;
}

.social-link i.fa-twitter {
  color: #1da1f2;
}

.social-link i.fa-instagram {
  color: #c32aa3;
}

.social-link i.fa-linkedin-in {
  color: #0077b5;
}

.social-link i.fa-telegram-plane {
  color: #0088cc;
}

.social-link i.fa-soundcloud {
  color: #ff7700;
}

.social-link i.fa-google-plus-g {
  color: #db4437;
}

.search-container {
  display: flex;
  align-items: center;
}

.search-toggle,
.search-close,
.mobile-menu-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
}

.search-close {
  display: none;
}

.notification-icon {
  position: relative;
}

.notification {
  font-size: 18px;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #d00;
  color: white;
  font-size: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Navigation */
.main-nav {
  border-bottom: 1px solid #f0f0f0;
}

.primary-nav {
  padding: 5px 0;
}

.nav-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 5px 0;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-list li a {
  font-size: 16px;
  padding: 5px 0;
  display: block;
}

.more-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Search Overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
}

.search-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-right: none;
  font-size: 16px;
  outline: none;
}

.search-submit {
  background-color: #d00;
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
}

/* Updated Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 1000;
  overflow-y: auto;
  display: none;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

.mobile-logo img {
  height: 40px;
}

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-epaper {
  font-size: 18px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.mobile-quick-nav {
  display: flex;
  overflow-x: auto;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  gap: 15px;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mobile-quick-nav::-webkit-scrollbar {
  display: none;
}

.quick-nav-item {
  font-size: 14px;
  color: #333;
}

.mobile-date {
  padding: 10px 15px;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #eee;
}

.mobile-search {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-search-form {
  display: flex;
  border: 1px solid #ddd;
  overflow: hidden;
}

.mobile-search-input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  font-size: 14px;
  outline: none;
}

.mobile-search-submit {
  background-color: #d00;
  color: white;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 10px;
}

.mobile-menu-item {
  padding: 12px 15px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  color: #333;
}

/* Responsive Styles */
@media only screen and (max-width: 1200px) {
  .social-menu {
    width: 95vw;
    left: -60vw;
    right: 0;
    transform: none;
  }

  .social-container {
    flex: 1 0 30%;
  }
}

@media only screen and (max-width: 992px) {
  .desktop-menu {
    display: none;
  }

  .logo img {
    height: 40px;
  }

  .social-container {
    flex: 1 0 45%;
  }
}

@media only screen and (min-width: 993px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Active States */
.search-active .search-toggle {
  display: none;
}

.search-active .search-close {
  display: block;
}

.search-active .search-overlay {
  display: block;
}

.menu-active {
  overflow: hidden;
}

.menu-active .mobile-menu {
  display: block;
}

/* Magazine dropdown is shown on click, not hover */
.magazine-menu.show {
  display: block;
}

/* video story and photo story section  */
.story-container {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
}
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-link {
  border: none;
  color: #000;
  font-weight: bold;
  padding: 0px;
}
.nav-tabs .nav-link.active {
  border-bottom: 3px solid #dc3545;
  color: #000;
}
.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.story-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}
.story-card .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.story-card .play-button i {
  color: #dc3545;
  font-size: 24px;
}
.views-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.8rem;
}

.video-icon,
.photo-icon {
  font-size: 1.4rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.video-icon {
  color: #dc3545;
}
.photo-icon {
  color: #0d6efd;
}
.modal-dialog.modal-xl {
  max-width: 90%;
}
.modal-content {
  background-color: rgba(0, 0, 0, 0.9);
  border: none;
}
.modal-header {
  border-bottom: none;
  padding: 1rem;
}
.modal-header .btn-close {
  background-color: white;
  opacity: 1;
}
.modal-body {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-body video {
  max-width: 100%;
  max-height: 80vh;
}
.modal-body img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.modal-footer {
  border-top: none;
  color: white;
  justify-content: flex-start;
  padding: 1rem;
}

/* video section  */
.see-all {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 180px;
}

.podcast-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 80px;
  width: 50%;
}

.video-thumbnail img,
.podcast-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 6px;
}

.video-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.4;
  max-width: 100%;
}
.video-date {
  color: #666;
  font-size: 14px !important;
  font-weight: normal;
  margin-top: 5px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.carousel-control-prev {
  left: -20px;
}
.carousel-control-next {
  right: -20px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-size: 50%;
}
.highlight {
  color: #ff9900;
}

/* photo gallery css  */
.gallery-title {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.gallery-title:hover,
.gallery-title.text-warning {
  color: #ffc107 !important;
}

.gallery-card {
  height: 150px;
  cursor: pointer;
}

.popover {
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
}

.popover a {
  color: #ffc107;
  margin-right: 10px;
}

.popover-header {
  background-color: #333;
  color: #fff;
  border-bottom: 1px solid #444;
}

/* custom scrollbar  */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #1a1a1a; /* Darker track for black background */
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #f1c40f; /* Deep yellow thumb */
  border-radius: 10px;
  border: 2px solid #1a1a1a; /* Padding effect */
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #f39c12; /* Brighter on hover */
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/* opinion , servey, latest news section container  */
.section-container {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #fff;
  overflow: hidden;
  min-height: 45rem;
}

/* Opinion Section */
.section-header {
  display: flex;
  align-items: center;
  padding: 0px 15px;
}
.section-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.opinion-item {
  padding: 15px;
  background-color: #fff8e1;
  border-bottom: 3px solid #dc3545;
  border-radius: 10px;
  margin-bottom: 8px;
}
.opinion-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dc3545;
}
.opinion-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.3;
}
.opinion-content {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Survey section styles */
.survey-container {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.survey-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.survey-date i {
  margin-right: 5px;
}

.survey-image {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

.survey-image img {
  width: 100%;
  height: auto;
}

.survey-question {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}

.survey-total-top {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.survey-options {
  margin-bottom: 20px;
}

.survey-option {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.custom-radio {
  margin-right: 10px;
  position: relative;
  z-index: 5;
}

.custom-radio input {
  display: none;
}

.checkmark {
  height: 20px;
  width: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.custom-radio input:checked + .checkmark {
  background-color: #66ccff;
  border-color: #66ccff;
}

.progress {
  height: 30px;
  margin-bottom: 5px;
  flex-grow: 1;
  border-radius: 4px;
  background-color: #f5f5f5;
  position: relative;
}

.progress-bar {
  text-align: right;
  padding-right: 10px;
  background-color: #66ccff !important;
  height: 100%;
}

.survey-percentage {
  font-weight: bold;
  color: #333;
  position: absolute;
  right: 10px;
  z-index: 5;
}

.survey-option-text {
  position: absolute;
  left: 35px;
  color: #000;
  z-index: 5;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  color: white !important;
  font-size: 16px;
}

.download-btn {
  cursor: pointer;
  color: #333;
  font-size: 20px;
}

/* For the downloaded image */
.survey-heading {
  display: none;
  margin-bottom: 12px;
}

.survey-logo img {
  height: 32px;
}

/* Latest news section styles */
.latest-tabs {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
}

.latest-tab {
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.latest-tab.active {
  border-bottom: 3px solid #000;
  color: #000;
}

.news-list {
  padding: 0;
  flex-grow: 1;
}

.news-content {
  display: none;
}

.news-content.active {
  display: block;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
}

.news-number {
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
}

.news-title {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.news-title.red {
  color: #ff0000;
}

.view-all-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background-color: #f8f9fa;
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
}

/* Responsive equal height row */
.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}

.row-eq-height > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.red-border-bottom {
  border-bottom: 2px solid #ff0000;
}

/* News List Section */
.custom-tabs {
  border-bottom: 2px solid #000;
}
.custom-tab {
  padding: 10px 20px;
  background: none;
  border: none;
  font-weight: bold;
  color: #000;
}
.custom-tab.active {
  border-bottom: 3px solid #000;
  margin-bottom: -2px;
}
.news-list-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.news-number {
  width: 36px;
  height: 36px;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
}
.news-list-title {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}
.hide-in-image {
  display: block;
}

/* Bootstrap Overrides */
.carousel-indicators {
  position: relative;
  margin-bottom: 0;
  margin-top: 10px;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
}
.carousel-indicators .active {
  background-color: #333;
}

@media (max-width: 768px) {
  .section-card {
    margin-bottom: 20px;
  }
}


/* Dropdown menu for navigation */
.has-dropdown {
    position: relative;
    z-index: 1050;
}
.has-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1100;
    padding: 0;
    margin: 0;
    list-style: none;
}
.has-dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    white-space: nowrap;
}
.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
}
.dropdown-menu a:hover {
    background: #f0f0f0;
}
.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 4px;
    vertical-align: middle;
}
nav, .nav-list, header {
    overflow: visible !important;
}



.has-dropdown {
  position: relative;
  z-index: 1050;
}
.has-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 110%; /* slight gap below main menu */
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.08);
  z-index: 1100;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s cubic-bezier(.4,0,.2,1), top 0.18s cubic-bezier(.4,0,.2,1);
  padding: 10px;
}
.has-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  top: 100%;
}
.dropdown-menu li {
  white-space: nowrap;
}
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  transition: background 0.15s, color 0.15s;
  border-radius: 4px;
}
.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #2563eb;
}
.dropdown-arrow {
  font-size: 0.8em;
  margin-left: 4px;
  vertical-align: middle;
}
nav, .nav-list, header {
  overflow: visible !important;
}

/* Podcast Styles */
.podcast-details {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.podcast-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.podcast-meta {
  color: #666;
  font-size: 0.9rem;
}

.podcast-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.podcast-thumbnail-container {
  text-align: center;
  margin-bottom: 20px;
}

.podcast-thumbnail-container img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.audio-player-container {
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.audio-player-container .card-title {
  color: #333;
  font-weight: 600;
}

.audio-player-container audio {
  border-radius: 6px;
}

.podcast-description {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

.podcast-description h4 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.description-content {
  line-height: 1.6;
  color: #555;
}

.reporter-info {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
}

.reporter-info h4 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.reporter-card {
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.reporter-card:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.reporter-image {
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.share-buttons {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.share-buttons h4 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.share-buttons .btn {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.share-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Podcast Listing Page */
.page-header {
  text-align: center;
  padding: 30px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.page-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.podcast-card {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: #007bff;
}

.podcast-thumbnail-container {
  position: relative;
  overflow: hidden;
}

.podcast-thumbnail-container img {
  transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-thumbnail-container img {
  transform: scale(1.05);
}

.play-overlay {
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.podcast-card:hover .play-overlay {
  opacity: 1;
}

.play-button {
  color: #fff;
  font-size: 1.5rem;
}

.podcast-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.podcast-card .card-title a {
  color: #333;
  transition: color 0.3s ease;
}

.podcast-card .card-title a:hover {
  color: #007bff;
}

.podcast-meta {
  font-size: 0.85rem;
}

.podcast-meta span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.podcast-card .card-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.podcast-card .btn {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.podcast-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Related Podcasts Sidebar */
.sidebar-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #007bff;
}

.related-item {
  transition: all 0.3s ease;
  border-radius: 6px;
  overflow: hidden;
}

.related-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.related-thumbnail {
  flex-shrink: 0;
}

.related-thumbnail img {
  transition: transform 0.3s ease;
}

.related-item:hover .related-thumbnail img {
  transform: scale(1.05);
}

.related-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.related-item:hover .related-title {
  color: #007bff;
}

.related-meta {
  font-size: 0.8rem;
}

/* No Content State */
.no-content {
  padding: 60px 20px;
}

.no-content i {
  opacity: 0.5;
}

/* Breadcrumb Styles */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #6c757d;
}

.breadcrumb-item a {
  color: #007bff;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .podcast-title {
    font-size: 1.5rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .podcast-card .card-title {
    font-size: 1rem;
  }
  
  .share-buttons .btn {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  
  .related-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .podcast-details {
    padding: 15px;
  }
  
  .page-header {
    padding: 20px 15px;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .share-buttons .d-flex {
    flex-direction: column;
    gap: 10px;
  }
  
  .share-buttons .btn {
    width: 100%;
  }
}