body {
  font-family: 'Noto Sans Devanagari', sans-serif;
}
* {
    box-sizing: border-box;
    font-size: 100%;
    scrollbar-width: thin;
}
p {
  line-height: 1.75;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 15px 0;
  color: rgb(103 104 107 / 95%);
}
/*theme colors*/
/* red #fe0100, rgba(254, 1, 0) */
/* blue #0385db, rgba(3, 133, 219)*/
/* Top Header */
.top-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.top-header .todays-weather .temp {
  font-weight: 600;
  font-size: 18px;
}

.top-header .todays-weather .temp img {
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
  height: 30px;
  width: 50px;
}

.top-header .air-q {
  font-size: 16px;
  color: #333;
}

.top-header .current-date {
  font-size: 16px;
  color: #0385db;
  font-weight: 500;
  margin-top: 6px;
}
.top-logo-img {
  max-height: 120px;
}
.tool-link {
  color: #0385db;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.tool-link:hover {
  color: #fe0100;
  text-decoration: underline;
}
.badge {
  position: static !important;
  display: inline-block;
  margin-bottom: 1rem;
}
}
.search-toggle-icon {
  cursor: pointer;
  background: #0385db;
  width: 24px;
  height: 24px;
  border-radius: 5px;
}
.search-toggle-icon i{
  position: relative;
  right: 3px;
  top: 2px;
  color: #fff;
}

@media (max-width: 576px) {
  .tool-link {
    font-size: 12px;
  }
  .current-date {
    font-size: 14px;
  }
}
/*top header style end*/

/* Navbar */
.navbar-brand {
  padding: 0;
}

.navbar {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-top: 3px solid #0385db;
  height: 60px;
}
.navbar .nav-link {
  font-weight: 600;
  color: #333 !important;
  padding: 12px 15px !important;
  font-size: 18px;
}

.navbar .nav-link:hover, .nav-link.active {
  color: #fe0100 !important;
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 10px 0;
  min-width: 200px;
}

.navbar .dropdown-item {
  padding: 8px 20px;
  font-size: 16px;
  color: #333333;
}

.navbar .dropdown-item:hover {
  border-top: 2px solid #fe0100;
  color: #d32f2f;
}
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.95) !important; /* or just #fff */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px); /* optional modern look */
}
.eng_button {
  background: #fe0100;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 16px;
  gap: 3px;
  padding: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.eng_button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 91, 255, 0.4) !important;
}

.eng_button .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.7s;
    transform: skewX(-25deg);
}

.eng_button:hover .shine {
    left: 100%;
}

/* Optional: Pulsing glow for extra premium feel */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(79, 91, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(79, 91, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 91, 255, 0); }
}

.eng_button.pulse {
    animation: pulse-glow 2s infinite;
}

/* Sidebar Styles */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  z-index: 1050;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-sidebar.show {
  left: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1040;
}

.sidebar-overlay.active {
  display: block;
}

/* Sidebar Links */
.mobile-sidebar a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.mobile-sidebar a:hover {
  color: #fe0100;
}

/* Hide Default Collapse on Mobile */
@media (max-width: 991.98px) {
  #navbarNav {
    display: none !important;
  }
}
/*navbar styling end*/

/* Subcategory Pills styling start*/
/* Subcategory Pills */
.subcat-pills {
  background-color: #f1f1f1;
  padding: 5px 0;
}

.subcat-pills .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.subcat-pills .nav-link {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  margin: 0 5px;
  font-size: 14px;
  padding: 6px 15px;
  color: #555;
  white-space: nowrap;
}

.subcat-pills .nav-link:hover,
.subcat-pills .nav-link.active {
  background: #fe0100;
  color: white !important;
  border-color: #fe0100;
}

/* Mobile Swipe Style */
@media (max-width: 991.98px) {
  .subcat-pills {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* enables smooth touch scrolling */
    scroll-behavior: smooth;
  }

  .subcat-pills .nav {
    flex-wrap: nowrap;
    display: inline-flex;
    justify-content: flex-start;
    gap: 5px;
  }

  /*Hide scrollbar completely */
  .subcat-pills::-webkit-scrollbar {
    display: none;
  }
  .subcat-pills {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
  }
}

/* Subcategory Pills styling end*/

.sub_title {
  font-size: 22px;
  color: #6a6969;
}
.ad_item img{
  width: 100%;
}
/* Category Button */
.btn-danger {
  background: #fe0100;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.category-badge {
    display: inline-flex;
    align-items: center;
    background-color: #fe0100; /* light gray background */
    color: #fff; /* text color */
    font-size: 20px; /* small text */
    font-weight: 600;
    padding: 5px 20px 0px 20px;
    border-radius: 5px;
    margin: 0.25rem;
    cursor: default;
    transition: background-color 0.3s, color 0.3s;
}

.category-badge:hover {
    background-color: #e0e0e0; /* slightly darker on hover */
}
/* Title - Max 900px, centered */
.breaking_news_title {
  border-bottom: 1px solid #cdc6c6;
  padding: 30px 0px 0px 0px;
}
.breaking_news_img {
  border-bottom: 1px solid #cdc6c6;
  padding: 30px 0px 30px 0px;
}
.big-news-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.22;
  color: #333;
}

.big-news-title:hover {
  color: #fe0100;
}

/* Meta */
.big-news-meta {
  font-size: 14px;
  color: #666;
}

.big-news-meta .editor {
  color: #d32f2f;
  font-weight: 600;
}
.byline-img {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fe0100;
  padding: 2px;
}
/* Image - Full width */
.big-news-img img {
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0px 0px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}
.medium-two-image {
  object-fit: cover;
  width: 100%;
  height: 300px;
}
.medium-two-image img:hover{
  transform: scale(1.02);
}

/*category heading design start*/
.category-heading {
  border-bottom: 3px solid transparent;
  background-image: linear-gradient(to right, #0385db, #fe0100, #0385db, #fe0100, #0385db);
  background-size: 100% 3px;
  background-repeat: no-repeat;
  background-position: bottom;
  line-height: 0;
  position: relative;
}

.category-label {
  display: inline-block;
  position: relative;
  background-color: #fe0100;
  color: #fff;
  padding: 6px; /* balanced padding */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-right: none; /* right side handled by triangle */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

/* Right-side triangle (perfectly aligned height) */
.category-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 24px solid #fe0100;
}

/* White outline for triangle */
.category-label::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -28px;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 26px solid #fff;
  z-index: -1;
}

/*tabs button content style started*/
/* remove default bootstrap borders */
.custom-news-tabs .nav-link {
    border: none !important;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    padding: 6px 16px;
    position: relative;
    transition: 0.3s ease;
}

/* inactive hover */
.custom-news-tabs .nav-link:hover {
    color: #c3000b;
}

/* active tab */
.custom-news-tabs .nav-link.active {
    color: #c3000b;
}

/* red underline indicator */
.custom-news-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #c3000b;
    border-radius: 2px;
}

/* container bottom border (light grey) */
.custom-news-tabs {
    border-bottom: 2px solid #eee !important;
}


/*category heading style end*/
/*news title style start*/
.news-small-title{
    font-weight: 500;
    font-size: 18px;
}
.news-small-title a{      
  color: rgba(35, 37, 45, .9490196078);
}
.height-news-img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.medium-news-img {
  height: 204px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.sub-medium-news-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.side-medium-img{
  height: 150px;
  width: 220px;
  object-fit: cover;
  border-radius: 5px;
}
.small-news-img{
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3sease;
}
.small-news-img:hover {
  transform: scale(1.05);
}
.profile-img {
  width: 75px;
  height: 75px;
  object-fit: cover;
}
/* Main News Card */
.main-news-card {
  background: #fff;
  transition: transform 0.3s ease;
}

.left-mdium-news-img {
  width: 120px; 
  height: 80px; 
  object-fit: cover;
  border-radius: 5px;
}
.main-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
}

.main-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  line-height: 1.4;
}

.main-title:hover {
  color: #d32f2f !important;
}
.large-news-title{
  font-weight: 500;
  font-size: 28px;
}
.carousel-item .news-small-title{
    font-size:22px;
}
.large-news-title a{
  color: rgba(35, 37, 45, .9490196078);
}
.large-news-img{
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.position-news-img {
  width: 100%;
  height: 363px; 
  object-fit: cover;
}
.position-khel-news-img {
  width: 100%;
  height: 300px; 
  object-fit: cover;
}
.medium-khel-news-img {
  width: 100%;
  height: 120px; 
  object-fit: cover;
}
.position-news-content {
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  position: absolute;
  font-size: 28px;
  font-weight: 500;
}
.position-news-title {
  color: #fff;
}
/* === LATEST SECTION STYLING === */
.main-news-card img {
  height: 380px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-news-card img:hover {
  transform: scale(1.03);
}


.main-title {
  line-height: 1.5;
}

.text-hover-danger:hover {
  color: #dc3545 !important;
}

.latest-news-sidebar h5 {
  border-bottom: 2px solid #dc3545;
  display: inline-block;
  padding-bottom: 4px;
}

.latest-item i {
  font-size: 0.9rem;
}

.latest-item a:hover i {
  color: #b02a37;
}

.top-news img {
  object-fit: cover;
}
.top-news img:hover {
  transform: scale(1.02);
}
.top-news h3 {
  line-height: 1.5;
}

.top-news .card img {
  transition: transform 0.3s ease;
}


.top-news .card {
  transition: all 0.3s ease;
}

.top-news .card:hover {
  transform: translateY(-5px);
}

.sidebar-ads img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.sidebar-ads img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.sidebar-palika-news:hover{
  transform: scale(1.02);
}
/*political news*/
.news-card img {
  transition: transform 0.3s ease;
}
.news-card img:hover {
  transform: scale(1.02);
}
.custom-arrow {
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  top: 40%;
}
.custom-arrow:hover {
  background: rgba(0,0,0,0.6);
}

/*bichar news start*/
.bichar-news-list {
  background-color: #fff;
}

.bichar-news-item {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}

.bichar-news-item:last-child {
  border-bottom: none;
}

.bichar-news-item img {
  object-fit: cover;
}

.bichar-news-item a:hover {
  text-decoration: underline;
  color: #0d6efd;
}

/* Big Banner */
.banner-card {
  transition: transform 0.3s ease;
}
.banner-card:hover {
  transform: translateY(-1px);
}
.banner-card img {
  transition: transform 0.4s ease;
}
.banner-card:hover img {
  transform: scale(1.02);
}

/* Small Cards */
.small-story-card {
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.small-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
}
.small-story-card img {
  transition: transform 0.3s ease;
}
.small-story-card:hover img {
  transform: scale(1.03);
}

/* Text */
.pol-news {
  background: #757575;
}
.pol-news .news-small-title a {
    color: #fff;
}
.banner-card h1 {
  font-family: 'Noto Sans Devanagari', sans-serif;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.small-story-card h5 {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-card {
    height: 300px !important;
  }
  .banner-card img {
    height: 300px !important;
  }
  .banner-card h1 {
    font-size: 1.5rem !important;
  }
  .small-story-card img {
    height: 180px !important;
  }
}

.most-readable-news-list {
  padding: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.most-readable-news-item {
  transition: background 0.2s ease;
  padding: 8px 0;
}

.most-readable-news-item:hover {
  background: #f8f9fa;
}

.most-readable-news-item img {
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.most-readable-news-item:hover img {
  transform: scale(1.05);
}

.most-readable-news-title {
  line-height: 1.4;
  color: #1a1a1a;
  transition: color 0.2s;
}

.most-readable-news-title:hover {
  color: #d32f2f !important;
}

/* Tight spacing on mobile */
@media (max-width: 992px) {
  .most-readable-news-item {
    padding: 6px 0;
  }
  .most-readable-news-item img {
    width: 60px;
    height: 60px;
  }
}

/*video play list*/
.video-section { padding: 60px 0; }

/* Featured Video */
.featured-video {
  height: 575px;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
}
.featured-video img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Play Button */
.btn-play {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  transition: all 0.4s ease;
}
.btn-play:hover {
  background: rgba(230, 57, 70, 0.8);
  transform: scale(1.15);
}
.btn-play i {
  font-size: 80px;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.7));
}

/* Small Video Items */
.video-item {
  height: 180px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.video-item img {
  transition: transform 0.5s ease;
}
.video-item:hover img {
  transform: scale(1.1);
}
.video-item .play-icon {
  font-size: 50px;
  filter: drop-shadow(0 0 15px rgba(0,0,0,0.8));
}

/* Title Overlay */
.position-news-content {
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  border-radius: 0 0 12px 12px;
}
.position-news-title {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

/* Perfect White Close Button - */
.btn-close-white {
  filter: brightness(0) invert(1) !important;  
  opacity: 0.9;
  width: 1.5em;
  height: 1.5em;
  background-size: 1.5em;
  transition: all 0.3s ease;
  z-index: 999;
}

.btn-close-white:hover {
  opacity: 1;
  transform: scale(1.2);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.6)) !important;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-video { height: 400px !important; }
  .video-item { height: 100px !important; }
  .btn-play i { font-size: 60px; }
}
@media (max-width: 768px) {
  .featured-video { height: 300px !important; }
  .video-list .video-item { height: 90px !important; }
}


/*video play end*/

/*trending news*/
.trending {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.trending-item {
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

.trending-item:hover {
  background: #f1f3f5 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trending-item img {
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.trending-item:hover img {
  transform: scale(1.06);
}

.trending-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  line-height: 1.4;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.trending-title:hover {
  color: #d32f2f !important;
}

/* Responsive */
@media (max-width: 992px) {
  .trending-item img {
    width: 70px;
    height: 70px;
  }
  .trending-title {
    font-size: 0.9rem;
  }
}
.news-block {
    border: 1px solid #eee;
}
.news-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.new-news-list {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.new-news-item {
  transition: all 0.3s ease;
  border-bottom: 1px solid #bababa;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.new-news-item:last-child {
  border-bottom: none;
}

.new-news-item:hover {
  background: #f8f9fa !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.new-news-item img {
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.new-news-item:hover img {
  transform: scale(1.06);
}

.new-news-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #1a1a1a;
}

.new-news-title:hover {
  color: #d32f2f !important;
}

/* Responsive */
@media (max-width: 992px) {
  .news-item img {
    width: 110px;
    height: 75px;
  }
  .news-title {
    font-size: 0.95rem;
  }
}

/*arthanews*/
.featured-news img {
  transition: transform 0.3s ease;
}
.featured-news:hover img {
  transform: scale(1.03);
}
.featured-news h5 {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.featured-news h5:hover {
  color: #d32f2f;
}

.bank-news img {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.bank-news a {
  transition: color 0.2s;
}
.bank-news a:hover {
  color: #d32f2f;
}

.bullet-news a {
  line-height: 1.4;
}
.bullet-news a:hover {
  color: #d32f2f;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-news img {
    height: 200px !important;
  }
  .bank-news img {
    width: 50px;
    height: 50px;
  }
}


/*detail page style started*/
.section-header {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-header .badge {
  background-color: #fe0100;
  border-radius: 0.25rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  color: #fff;
}

.section-header .detail-big-title {
  margin-top: 0.35rem;
  font-size: 54px;
  line-height: 1.2;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .section-header .detail-big-title {
    font-size: 2.3rem;
  }
  .badge {
    font-size: 0.9rem !important;
    padding: 0.4rem 0.8rem !important;
  }
}

@media (max-width: 768px) {
  .section-header .detail-big-title {
    font-size: 1.9rem;
  }
  .badge {
    position: static !important;
    display: inline-block;
    margin-bottom: 1rem;
  }
}
.editor-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.editor_name {
  font-size: 14px;
  color: rgba(35, 37, 45, .9490196078);
  font-weight: 600;
}
.detail_date .date_info{
  margin-bottom: 0px;
  margin-left: 5px;
  border-left: 2px solid rgba(35, 37, 45, .9490196078);
  padding-left: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #464646;
}
.share-buttons .btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.share-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}



@media (max-width: 576px) {
  .h5 {
    font-size: 1.1rem;
  }
  .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
.news_detail p {
  line-height: 1.75;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 15px 0;
  text-align: justify;
  color: rgba(35, 37, 45, .9490196078);
}
/*list page content start*/
.news_list .card {
  background: #efefef;
}
.list-large-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 767.98px) {
  .card-body {
    text-align: center;
  }
}

/*footer start*/

/* FOOTER WRAPPER */
.footer {
    background: #f8f9fa;
    padding-top: 40px;
    font-family: 'Inter', sans-serif;
    color: rgba(35, 37, 45, 0.95);
}

/* COMMON */
.footer p,
.footer a {
    color: rgba(35, 37, 45, 0.90);
    margin-bottom: 6px;
    font-size: 15px;
}

/* LEFT COLUMN */
.left_col {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    padding-right: 25px;
}

.left_col p strong {
    color: rgba(35, 37, 45, 0.98);
}

/* SOCIAL ICONS */
.social {
    padding-bottom: 20px;
    margin-top: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.social i {
    font-size: 20px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease-in-out;
    color: #444;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.08);
}

/* HOVER ON SOCIAL */
..social:hover i {
    background: #fe0100;
    color: #fff;
    transform: translateY(-3px);
}

/* RIGHT COLUMN */
.right_col {
    padding-left: 30px;
}

/* TITLES */
.footer-title {
    font-weight: 700;
    font-size: 22px;
    color: #fe0100;
    margin-bottom: 12px;
    letter-spacing: .3px;
}

/* QUICK LINKS */
.footer_quicklink .custom-link {
    color: rgba(35, 37, 45, 0.90);
    font-size: 15px;
    display: block;
    padding: 4px 0;
    font-weight: 500;
    transition: 0.2s;
}

.footer_quicklink .custom-link:hover {
    color: #fe0100;
    transform: translateX(3px);
    text-decoration: none;
}

/* TEAM LIST */
.two-col-ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.two-col-ul li {
    width: 50%;
    margin-bottom: 10px;
}

.member-item .name {
    color: rgba(35, 37, 45, 0.95);
    font-weight: 700;
    font-size: 15px;
}

.member-item .designation {
    color: rgba(35, 37, 45, 0.7);
    font-size: 14px;
}

/* VIEW ALL BUTTON */
.view_all {
  background: #fe0100;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(254, 1, 0, 0.25);
}

.view_all:hover {
    background: #fff;
    color: #333 !important;
    border-color: #fe0100;
    box-shadow: 0 6px 22px rgba(254, 1, 0, 0.35);
    transform: translateY(-3px);
}


/* ADS BOX */
.add_box {
    border: 1px solid #fe0100;
    border-radius: 10px;
    padding: 18px;
    color: #333;
    margin-top: 20px;
    text-align: center;
}

.ad-badge-gradient {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff3b30 0%, #fe0100 100%);
    box-shadow: 0 3px 10px rgba(254, 1, 0, 0.25);
}

.ad-badge-gradient h5 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.ad_text {
    display: flex;
    justify-content: space-between;
    text-align: left;
    gap: 10px;
    margin-top: 10px;
}

.ad_text p {
  color: rgba(35, 37, 45, 0.95) !important;
  font-size: 16px !important;
}
.ad_text a {
  color: rgba(35, 37, 45, 0.95) !important;
  font-size: 16px !important;
}

/* SCROLL TOP BUTTON */
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #fe0100;
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.20);
    transition: 0.3s ease;
}

.scroll-top-btn:hover {
    background: #cc0000;
    transform: translateY(-4px);
}

/* Copyright */
.footer-bottom {
    margin-top: 30px;
    background: #f1f3f4;
    padding: 15px 0;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .left_col {
        border-right: none;
        padding-right: 0;
    }
    .right_col {
        padding-left: 0;
        margin-top: 25px;
    }
    .two-col-ul li {
        width: 100%;
    }

    .ad_text {
        flex-direction: column;
        text-align: center;
    }
}


/*footer end*/




.list_news h4 a{
  color: rgba(35, 37, 45, .9490196078);
  text-decoration: none;
}
.team-card {
  transition: all 0.3s ease-in-out;
  background: #ffffff;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
}

.team-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border: 4px solid #f1f1f1;
}

.team-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.team-designation {
  font-size: 0.95rem;
  color: #666;
}
.hidden{
  display: none;
}
/*footer end*/
/* Hover Dropdown */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Responsive */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
.category-badge{
    font-size: 12px;
    padding: 5px 10px 0px 10px;
  }
.big-news-title {
        font-size: 25px;
      }
.sub_title {
    font-size: 16px;
}
.small-news-img {
  width: 170px;
  height: 110px;
}
#scrollRow h3 {
    font-size: 25px;
}
.politics h3 {
  font-size: 20px;
}
#scrollRow img{
  height: 300px;
}
.prashasan_list .news-small-title{
  font-size: 20px;
}
.bichar-news-list .news-small-title{
  font-size: 20px;
}
.palika_list .news-small-title{
  font-size: 20px;
}
.video-list .video_title{
  font-size: 20px;
}
.new-news-list p{
  font-size: 16px;
}
.banner-card .position-news-title{
  font-size: 20px;
}
.small-story-card .news-small-title{
  font-size: 20px;
}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .big-news-title {
    font-size: 25px;
    padding: 0 10px;
  }
  .category-badge {
    font-size: 18px;
    padding: 3px 12px 0px 12px;
  }
  .main-news-card .main-title {
    font-size: 25px;
  }
  .main-news-card .news-small-title{
    font-size: 22px;
  }
  .big-news-img img {
    height: 380px;
  }
  .p-md-5 {
    padding: 1.5rem !important;
  }
  .main-news-card img {
    height: 223px;
  }
  .small-news-img {
    width: 260px;
    height: 150px;
    border-radius: 5px;
  }
  .top-news .ptitle{
    font-size: 22px;
  }
  .top-news .news-small-title{
    font-size: 22px;
  }
  #scrollRow .news-small-title{
    font-size: 22px;
  }
  .bichar-news-list .news-small-title{
    font-size: 18px;
  }
  .video-list .video_title{
    font-size: 18px;
  }
  .trending-item .news-small-title{
    font-size: 22px;
  }
  .small-story-card .news-small-title{
    font-size: 22px;
  }   
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .big-news-title {
    font-size: 32px;
  }
  .big-news-img img {
    height: 380px;
  }
  .main-news-card img {
    height: 223px;
  }
  .small-news-img {
    width: 260px;
    height: 150px;
    border-radius: 5px;
  }
  .trending-item .news-small-title {
        font-size: 16px;
    }
.palika_list .news-small-title {
    font-size: 16px;
  }
  .news-small-title {
    font-size: 22px;
    }
.top-news .ptitle{
    font-size: 18px;
  }
  .top-news .news-small-title{
    font-size: 18px;
  }
  .small-story-card .news-small-title {
        font-size: 16px;
    }
    .small-story-card .medium-news-img {
        height: 80px;
    }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {

}

/* Extra extra large devices (very large screens, 1400px and up) */
@media (min-width: 1400px) {

}