.blur-bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #6c8690;
  background-size: cover;
  background-position: center;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.1);
  z-index: 0;
}

.banner-img1 {
  width: 100%;
  object-fit: contain;
  z-index: 10;
  position: absolute;
  object-position: center;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  filter: brightness(0.9);
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.news-card-image-div {
  height: 150px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custome_read {
  min-height: 30px;
  max-height: 30px;
}

.active-category,
.category-item {
  width: 96%;
}

.sidebar-header {
  width: 96%;
  text-align: center;
  margin: 0px 15px 15px 15px;
}

.categoryText::after {
  background-color: unset;
}

.category-item {
  border-bottom: 1px solid var(--light-blue);
}

.category-item {
  margin: 0px 15px 15px 15px;
}

.detail-page-content {
  height: auto;
  overflow-y: unset;
}

.details-page-right-section {
  top: 12rem;
}

.img_section_height {
  height: auto;
}

/* Listing Page Image Standardization */
.listing-image-height {
  height: 150px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.listing-page-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 100%; /* Ensures image covers the area even if auto height is small */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .listing-image-height {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .listing-image-height {
    height: 160px;
  }
}

.sticky-sidebar-listing {
  width: 100%;
}
@media (max-width: 1100px) {
  .sticky-sidebar-listing {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .news-image img {
    object-fit: unset;
    min-height: 100% !important;
  }
}
/* @media (max-width: 991.98px) {
  .catergery_sidebar {
    display: none !important;
  }
} */

.search-input {
  /* width:100%; */
}
@media (max-width: 992px) {
  .sticky-sidebar-listing {
    width: auto;
  }
}

/* Footer Styling */
.footer {
  background-color: var(--dark-blue);
  color: white;
  border-top: 4px solid var(--orange-color);
  position: relative;
  z-index: 10;
}

.news-image img {
  width: 100%;
  min-height: 125px;
  height: auto;
  object-fit: cover;
  object-position: top;
  max-height: 120px;
}

@media (max-width: 576px) {
  .news-image img {
    max-height: unset;
  }
}

@media (max-width: 576px) {
  .pagination-container {
    justify-content: left !important;
    width: 100%;
  }
  /* .custom_dropdown {
    display: inline-flex;
    align-items: center;
    width: 100%;
} */
}

.coming-soon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  min-height: 300px;
  padding: 20px;
  background: transparent;
}

.coming-soon-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  width: 100%;
  max-width: 250px;
  transition: transform 0.3s ease;
}

.coming-soon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

.coming-soon-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff8a00, #ff206e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s infinite ease-in-out;
}

.coming-soon-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.coming-soon-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.coming-soon-loader {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #ff8a00;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
  animation-delay: -0.32s;
}

.dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* Dark mode support if applicable */
[data-theme="dark"] .coming-soon-title {
  color: #fff;
}

[data-theme="dark"] .coming-soon-text {
  color: #ccc;
}

[data-theme="dark"] .coming-soon-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
