.container{
  max-width: 95%;
}

.header-fulllogo-menu-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hmenuicin,
.header-search {
  font-size: 30px;
  cursor: pointer;
}
.header-menu {
  align-items: center;
  display: flex;
  gap: 8px;
}
body {
  background-color: #fff !important;
  font-family: 'Mukta', sans-serif !important;
}

.mainads {
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: center;
}

/* header navigation */

/* General Styling */
/* General Styling */
.main-navigation {
  background-color: #245da8;
  /* padding: 15px; */
  position: relative;
}

.main-navigation .menu-toggle {
  background-color: #ff6b6b;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.main-navigation .menu-toggle:hover {
  background-color: #ff4c4c;
}

#primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  /* justify-content: space-around; */
  flex-wrap: wrap;
}

#primary-menu li {
  position: relative; /* Required for submenu positioning */
  border-right: 1px #ababab26 solid;
  padding: 10px 15px;
  /* margin: 0 15px; */
}

#primary-menu a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;

  transition: color 0.3s ease, background-color 0.3s ease;
  font-weight: 600;
  font-size: 20px;
}

#primary-menu li:hover {
  background-color: #ff6b6b;
  color: white;
  border-radius: 5px;
}

/* Arrow Icon for Submenu Items */
.menu-item-has-children > a::after {
  content: "▼";
  font-size: 12px;
  color: white;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Rotate Arrow when Submenu is Open */
.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Submenu Styling */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #245da8;
  list-style: none;
  /* padding: 10px 0; */
  min-width: 200px;
  border-radius: 5px;
  z-index: 9999;
}

.sub-menu li {
  margin: 0;
}

.sub-menu a {
  /* padding: 10px 15px; */
  font-size: 14px;
  color: white;
  text-transform: none;
}

.sub-menu a:hover {
  background-color: #ff6b6b;
}

/* Show Submenu on Hover */
.menu-item-has-children:hover .sub-menu {
  display: block;
}
.fmenu {
  position: sticky;
  top: 0;
  z-index: 999999;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hdate {
    display: none;
  }
  .main-navigation {
    text-align: center;
  }

  #primary-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #333;
    padding: 20px 0;
  }

  .menu-toggle[aria-expanded="true"] + #primary-menu {
    display: flex;
  }

  #primary-menu li {
    margin-bottom: 15px;
  }

  /* Show Submenu in Mobile View */
  .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    background-color: #444;
    margin-top: 10px;
    width: 100%;
  }

  /* Toggle submenu visibility on click for mobile */
  .menu-item-has-children > a::after {
    content: "▼";
    position: absolute;
    right: 15px;
    font-size: 12px;
  }
}

/* navigation end */

/* footer part css start */

/* General Footer Styling */
.footer-second {
  display: flex;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}
.footersecback {
  background-color: #1d549b; /* Dark background */
  background-repeat: no-repeat;
}

/* Footer Logo Section */
.footer-sec-logo {
  margin-bottom: 15px;
}

.footer-sec-logo img {
  width: 175px;
  height: auto;
  border-radius: 15px;
}

/* Footer Social Icons */
.footer-sec-social {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-sec-social li {
  display: inline-block;
}

.footer-sec-social a {
  display: inline-block;
  padding: 3px 7px;
  text-align: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #fc0c0bc7;
  color: #fff;
}

.footer-sec-social a:hover {
  color: #ff6b6b; /* Highlight color on hover */
}

/* Footer Links */
.footer-sec-detailstean {
  margin-bottom: 15px;
}

.footer-sec-detailstean a {
  padding: 5px 15px;
  border: 1px #057356 solid;
  border-radius: 5px;
  color: var(--tlt-white);
  text-decoration: none;
  font-size: 16px;

  color: #fff;

  transition: color 0.3s ease;
}

.footer-sec-detailstean a:hover {
  color: #1d549b; /* Highlight color on hover */
  background-color: #fff;
}

/* Copyright and Design Credit Section */
.footerlast {
  justify-content: space-between;
  display: flex;
}
.flastback {
  background-color: #245da8;
}

.copyright,
.design-credit {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.copyright p,
.design-credit p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0em;
}

.design-credit a {
  color: #dad1d1;
  text-decoration: none;
  font-weight: bold;
}

.design-credit a:hover {
  text-decoration: underline;
}
.footerfback {
  background-color: #245da8;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-second {
    display: flex;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    justify-content: space-between;
    flex-direction: column !important;
  }
}

/* footer menu  */
/* Styling the footer menu container */
.footer-menu-list {
  display: flex;
  justify-content: center;
}

.footer-nav {
  width: 100%; /* Adjust to match the desired width of the menu */
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Styling each menu item */
.footer-menu li {
  flex: 0 1 50%; /* Makes each list item take up 50% of the width (2 items per row) */
  padding: 10px;
  box-sizing: border-box;
}

/* Styling the menu links */
.footer-menu li a {
  display: block;
  color: #fff; /* Text color */
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #f39c12; /* Change text color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-menu li {
    flex: 0 1 100%; /* On smaller screens, show one item per row */
  }
}

/* footerbfirst css */
/* Styling the footer-bfirst container */
.footer-bfirst {
  color: #fff;
  margin: 0 auto;
  text-align: left;
}

.footer-bfirst h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #f39c12; /* Highlight the title with a different color */
}

.footer-bfirst li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #ecf0f1; /* Light text color */
}

.footer-bfirst li i {
  color: #f39c12; /* Icon color */
  margin-right: 10px;
  font-size: 18px;
}

.footer-bfirst li:last-child {
  margin-bottom: 0; /* Remove bottom margin from the last item */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-bfirst {
    max-width: 100%; /* Full width on smaller screens */
  }

  .footer-bfirst h4 {
    font-size: 18px; /* Adjust title size on smaller screens */
  }

  .footer-bfirst li {
    font-size: 14px; /* Adjust text size on smaller screens */
  }

  .footer-bfirst li i {
    font-size: 16px; /* Adjust icon size on smaller screens */
  }
}

/* newspost content css start */

.newspost-content {
  text-align: justify;
  font-size: 20px !important;
  line-height: 170% !important;
  font-weight: 400;
  margin: 0 0 0.9rem;
}
.newspost-content p a {
  text-decoration: none;
}
.news-posttitle h2 {
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #4c4a4a !important;
  font-size: 60px;
}

/* Container for author and share buttons */
.newspost-auth-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px #ddd solid;
  padding-bottom: 5px;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Author Info Styling */
.newspost-author-info {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.newspost-author-info a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.newspost-author-avatar {
  margin-right: 15px;
}

.newspost-author-avatar img {
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.newspost-author-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.nestopsdate {
  margin-left: 10px;
  font-size: 14px;
  color: #777;
}

/* Share Buttons Styling */
.pnewshare {
  display: flex;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newspost-auth-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .pnewshare {
    margin-top: 15px;
  }
}

/* title part */
/* Style for the post title */
.news-posttitle {
  position: relative;
  background-color: #fff;
  padding: 10px;
  transition: all 0.3s ease-in-out; /* Smooth transition for sticky effect */
}

/* When the title becomes sticky */
.sticky-title {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 15px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #f7f7f7;
  z-index: 99997;
  transition: all 0.3s ease-in-out; /* Smooth transition */
}

/* Ensure no overlap of other content when title is sticky */
.newsentry-header + * {
  margin-top: 40px !important; /* Adjust based on title's height when sticky */
}

/* Responsive styling */
@media (max-width: 768px) {
  .news-posttitle {
    font-size: 1rem;
    padding: 8px;
  }
  .sticky-title {
    padding: 12px 8px;
  }
  .news-posttitle h2 {
    line-height: 1.4 !important;
    font-weight: 600 !important;
    color: #4c4a4a !important;
    font-size: 22px;
  }

  .sticky-title {
    top: 160px;
}
}

/* Smaller screen adjustments */
@media (max-width: 480px) {
  .news-posttitle {
    font-size: 1rem;
    padding: 6px;
  }
  .sticky-title {
    padding: 10px 6px;
  }
  .news-posttitle h2 {
    line-height: 1.4 !important;
    font-weight: 600 !important;
    color: #4c4a4a !important;
    font-size: 22px;
  }
}

.newspost-thumn img {
  margin-bottom: 12px;
  width: -webkit-fill-available;
}

/* news coontentbelow part css  */

.publisheddatesbelow-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #e0e0e0; /* Adds a subtle border to separate the section */
  margin-top: 20px;
}

.pnewsdate .published-date {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}

.pnewsdate .published-date::before {
  content: "\f017"; /* Add clock icon using FontAwesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
  color: #007bff; /* Blue color for the icon */
}

.pnewshare .sharethis-inline-share-buttons {
  text-align: right;
}

@media (max-width: 768px) {
  .publisheddatesbelow-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .pnewsdate {
    margin-bottom: 10px;
  }

  .pnewshare .sharethis-inline-share-buttons {
    text-align: left;
  }
}

/* comment title */
.blocktitles {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.btitle {
  position: relative;
  padding: 0 40px; /* Increase the gap between the text and the lines */
}

.btitle a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529; /* Slightly muted dark gray */
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}

.btitle a:hover {
  color: #007bff; /* Primary blue on hover */
}

.blocktitles::before,
.blocktitles::after {
  content: "";
  display: block;
  height: 2px; /* Thickness of the line */
  background-color: #007bff; /* Line color */
  position: absolute;
  top: 50%; /* Center the lines vertically */
  width: 35%; /* Length of the lines */
}

.blocktitles::before {
  left: 0;
  transform: translateY(-50%);
}

.blocktitles::after {
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .blocktitles::before,
  .blocktitles::after {
    width: 28%; /* Shorter lines for smaller screens */
  }

  .btitle a {
    font-size: 1.3rem;
  }
}

/* side title */

.blocktitlesside {
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  margin-bottom: 30px; /* Space below the title */
  padding-bottom: 10px; /* Space below the title */
  position: relative; /* Allows absolute positioning for lines */
}

.btitleside {
  position: relative; /* Required for absolute positioning of lines */
  padding: 0 40px; /* Increase the gap between the text and the lines */
}

.btitleside a {
  font-size: 1.8rem; /* Font size for the title */
  font-weight: 700; /* Bold font weight */
  color: #212529; /* Dark gray color */
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 1px; /* Space between letters */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Make the link behave as a block element */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

.btitleside a:hover {
  color: #007bff; /* Change color on hover */
}

.blocktitlesside::before,
.blocktitlesside::after {
  content: ""; /* Empty content for the lines */
  display: block; /* Allow block display */
  height: 2px; /* Thickness of the lines */
  background-color: #007bff; /* Line color */
  position: absolute; /* Absolute positioning for lines */
  top: 50%; /* Center the lines vertically */
  width: 25%; /* Length of the lines */
}

.blocktitlesside::before {
  left: 0; /* Position left line */
  transform: translateY(-50%); /* Center the line vertically */
}

.blocktitlesside::after {
  right: 0; /* Position right line */
  transform: translateY(-50%); /* Center the line vertically */
}
.newslatest-post-title a {
  text-decoration: none;
  color: #333;
}

@media (max-width: 768px) {
  .blocktitlesside::before,
  .blocktitlesside::after {
    width: 28%; /* Shorter lines for smaller screens */
  }

  .btitleside a {
    font-size: 1.3rem; /* Smaller font size for smaller screens */
  }
}

/* categorytitle */

.blocktitlecate {
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  margin-bottom: 30px; /* Space below the title */
  padding-bottom: 10px; /* Space below the title */
  position: relative; /* Allows absolute positioning for lines */
}

.btitlecate {
  position: relative; /* Required for absolute positioning of lines */
  padding: 0 40px; /* Increase the gap between the text and the lines */
}

.btitlecate a {
  font-size: 1.8rem; /* Font size for the title */
  font-weight: 700; /* Bold font weight */
  color: #212529; /* Dark gray color */
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 1px; /* Space between letters */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Make the link behave as a block element */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

.btitlecate a:hover {
  color: #007bff; /* Change color on hover */
}

.blocktitlecate::before,
.blocktitlecate::after {
  content: ""; /* Empty content for the lines */
  display: block; /* Allow block display */
  height: 2px; /* Thickness of the lines */
  background-color: #007bff; /* Line color */
  position: absolute; /* Absolute positioning for lines */
  top: 50%; /* Center the lines vertically */
  width: 40%; /* Length of the lines */
}

.blocktitlecate::before {
  left: 0; /* Position left line */
  transform: translateY(-50%); /* Center the line vertically */
}

.blocktitlecate::after {
  right: 0; /* Position right line */
  transform: translateY(-50%); /* Center the line vertically */
}

@media (max-width: 768px) {
  .blocktitlecate::before,
  .blocktitlecate::after {
    width: 28%; /* Shorter lines for smaller screens */
  }

  .btitlecate a {
    font-size: 1.3rem; /* Smaller font size for smaller screens */
  }
}

/* catpost */
/* Category Title */

.post-item a {
  text-decoration: none;
}

/* Category Block */
.category-block {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
  margin-bottom: 12px;
}

/* Grid Layout for Posts */
.catpost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

/* Post Item */
.post-item {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.post-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  /* Retained shadow for hover effect */
}

/* Post Details */
.post-details {
  padding: 15px;
}

.post-details h3 {
  font-size: 1.2em;
  color: #444;
  margin: 0;
  transition: color 0.3s ease;
}

.post-details h3:hover {
  color: #0073aa;
  /* Change this to your theme's accent color */
}

@media (max-width: 768px) {
  .post-thumbnail {
    height: auto !important;
  }
}

/* pagination css */

.pagination {
  display: flex;
  justify-content: center; /* Center the pagination */
  align-items: center; /* Vertically center the pagination */
  margin: 30px 0; /* Add space above and below the pagination */
}

.pagination a,
.pagination span {
  display: inline-block;
  margin: 0 5px; /* Space between pagination items */
  padding: 10px 15px; /* Padding for clickable areas */
  color: #245da8; /* Default link color */
  background-color: #f8f9fa; /* Light background */
  border: 1px solid #dee2e6; /* Light border */
  text-decoration: none; /* Remove underline */
  transition: all 0.3s ease; /* Smooth transition */
  border-radius: 5px; /* Rounded corners */
}

.pagination a:hover {
  background-color: #245da8; /* Background color on hover */
  color: #fff; /* Text color on hover */
  border-color: #245da8; /* Border color on hover */
}

.pagination .current {
  background-color: #1e549b; /* Background color for the active page */
  color: #fff; /* Text color for the active page */
  border-color: #1e549b; /* Border color for the active page */
}

.pagination .dots {
  background-color: transparent; /* Dots for ellipsis */
  border: none;
  color: #6c757d; /* Gray color for dots */
  cursor: default; /* No pointer effect for dots */
}

.pagination a.disabled {
  pointer-events: none; /* Disable clicks */
  color: #6c757d; /* Gray text for disabled items */
  background-color: #f1f1f1; /* Gray background for disabled items */
  border-color: #dee2e6; /* Light border for disabled items */
}

@media (max-width: 768px) {
  .pagination a,
  .pagination span {
    padding: 8px 12px; /* Adjust padding for smaller screens */
    margin: 0 3px; /* Reduce margin between items */
  }
}

/* search part css */
/* Style for the entire article */
.searcharticle {
  border: 1px solid #e0e0e0; /* Light border around the article */
  padding: 20px; /* Spacing inside the article */
  margin-bottom: 30px; /* Space between articles */
  border-radius: 8px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
  transition: box-shadow 0.3s ease; /* Smooth shadow transition */
  background-color: #ffffff; /* White background for clean look */
}

.searcharticle:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Increase shadow on hover */
}

/* Style for the header */
.entry-header {
  margin-bottom: 15px; /* Space between header and content */
}

/* Style for the post title */
.searchpostentry-title {
  font-size: 1.8rem; /* Larger font size for the title */
  font-weight: 700; /* Bold font weight for emphasis */
  margin-bottom: 10px; /* Space below the title */
}

.searchpostentry-title a {
  color: #212529; /* Dark color for the title */
  text-decoration: none; /* Remove underline from title link */
  transition: color 0.3s ease; /* Smooth color transition */
}

.searchpostentry-title a:hover {
  color: #007bff; /* Blue color on hover */
}

/* Style for the thumbnail */
.search-postthumb {
  margin-bottom: 15px; /* Space between thumbnail and content */
}

.search-postthumb img {
  width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners for images */
  transition: transform 0.3s ease; /* Smooth zoom effect */
}

.search-postthumb img:hover {
}

/* Responsive adjustments */
@media (max-width: 768px) {
  article {
    padding: 15px; /* Reduce padding on smaller screens */
  }

  .searchpostentry-title {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
  }
}

/* author css */

/* Author Header Styles */
.author-meta-ekar {
  background-color: #f9f9f9;
  /* Light background color */
  padding: 20px;
  /* Padding around the author meta section */
  border-radius: 8px;
  /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow effect */
  text-align: center;
  /* Center-align text */
  margin-bottom: 30px;
  /* Space below the author section */
}

.authordetails {
  display: flex;
  /* Use flexbox for layout */
  column-gap: 12px;
  align-items: center;
  /* Center items horizontally */
  margin-bottom: 15px;
  /* Space below the author details */
}

.authordetails img {
  border-radius: 50%;
  /* Make avatar circular */
  height: 60px;
  width: 60px;
  margin-top: 10px;
  /* Space above the avatar */
}

.author-info {
  max-width: 600px;
  /* Limit the width of the author info */
  text-align: center;
  /* Center-align the author info */
}

.author-bio-ekar {
  font-size: 1rem;
  /* Bio font size */
  color: #555;
  /* Medium text color */
  line-height: 1.6;
  /* Improve line spacing */
  margin: 10px 0;
  /* Margin above and below the bio */
}

.author-info h2 {
  font-size: 32px;
  /* Subtitle font size */
  color: #666;
  /* Lighter color for subtitle */
  margin-top: 10px;
  /* Space above the subtitle */
}

/* Responsive Styles */
@media (max-width: 768px) {
}

/* Author Container */
.author-container-ekar {
  margin: 0 auto;
  /* Center the container */
  padding: 20px;
  /* Padding around the content */
  background-color: #ffffff;
  /* White background */
  border-radius: 8px;
  /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

.author-meta-ekar {
  margin-left: 20px;
  /* Space between avatar and text */
}

.author-bio-ekar {
  font-size: 1rem;
  /* Font size for bio */
  color: #555;
  /* Grey color for readability */
  line-height: 1.5;
  /* Line height for better readability */
}

/* Author Posts Section */
.author-posts-ekar {
  margin-top: 20px;
  /* Space above posts section */
}

.author-posts-ekar h2 {
  font-size: 1.5rem;
  /* Font size for posts title */
  margin-bottom: 15px;
  /* Space below the title */
  color: #333;
  /* Dark color for posts title */
}

/* Post List */
.post-list-ekar {
  list-style: none;
  /* Remove bullet points */
  padding: 0;
  /* Remove padding */

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.post-item-ekar {
  align-items: center;
  /* Center align items */
  padding: 15px;
  /* Padding inside each item */
  border: 1px solid #eaeaea;
  /* Light border around items */
  border-radius: 8px;
  /* Rounded corners for items */
  transition: transform 0.3s, box-shadow 0.3s;
  /* Smooth transition for hover effects */
  margin-bottom: 10px;
  /* Space between posts */
  background-color: #fafafa;
  /* Light background for each item */
}

/* Post Title and Thumbnail */
.post-item-ekar a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.post-thumbnail-ekar {
  width: 100%;
  /* Fixed width for thumbnail */
  height: 100%;
  /* Fixed height for thumbnail */
  margin-right: 15px;
  /* Space between thumbnail and title */
  overflow: hidden;
  /* Clip excess content */
  border-radius: 4px;
  /* Rounded corners for the thumbnail */
}

.post-thumbnail-ekar img {
  width: 100%;
  /* Full width of the container */
  height: 200px;
  /* Maintain aspect ratio */
  border-radius: 4px;
  /* Match the thumbnail's border radius */
}

.post-title-ekar {
  font-size: 1.3rem;
  margin-top: 12px;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

/* Hover Effects for Links */
.post-item-ekar a:hover .post-title-ekar {
  color: #0773bb;
  /* Change title color on hover */
}

/* 404 css  */

/* Style for the 404 error section */
.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px; /* Padding to add space around the section */
  background-color: #f9f9f9; /* Light background for contrast */
  height: 100vh; /* Full viewport height */
}

.page-header {
  margin-bottom: 30px; /* Space below the header */
}

.page-title {
  font-size: 2.8rem; /* Large font size for the title */
  font-weight: 700; /* Bold font for emphasis */
  color: #343a40; /* Darker color for the title */
  text-transform: uppercase; /* Make the title uppercase */
  letter-spacing: 1.2px; /* Slight spacing between letters */
}

.page-content {
  font-size: 1.2rem; /* Font size for the content */
  color: #6c757d; /* Gray color for the content */
  max-width: 600px; /* Limit the width for readability */
  line-height: 1.6; /* Increased line height for better readability */
}

.page-content p {
  margin-bottom: 20px; /* Space below the paragraph */
}

/* Button to redirect to homepage */
.page-content a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007bff; /* Primary blue background */
  color: #fff; /* White text color */
  font-size: 1.1rem;
  text-transform: uppercase;
  border-radius: 30px; /* Rounded button for modern look */
  text-decoration: none; /* Remove underline */
  transition: background-color 0.3s ease; /* Smooth transition */
  margin-top: 20px; /* Space above the button */
}

.page-content a:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem; /* Adjust font size for smaller screens */
  }

  .page-content {
    font-size: 1rem; /* Adjust content font size for smaller screens */
  }
}

/* front title css */
/* Container for the block title with lines */
.frontblocktitles {
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  margin-bottom: 30px; /* Space below the title */
  padding-bottom: 10px; /* Space below the title */
  position: relative; /* Allows absolute positioning for lines */
}

/* Title container */
.frontbtitle {
  position: relative; /* Required for absolute positioning of lines */
  padding: 0 40px; /* Increase the gap between the text and the lines */
}

/* Title text */
.frontbtitle a {
  font-size: 1.8rem; /* Font size for the title */
  font-weight: 700; /* Bold font weight */
  color: #212529; /* Dark gray color */
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 1px; /* Space between letters */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Make the link behave as a block element */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

/* Hover effect on the title */
.frontbtitle a:hover {
  color: #007bff; /* Change color on hover */
}

/* Lines on either side of the title */
.frontblocktitles::before,
.frontblocktitles::after {
  content: ""; /* Empty content for the lines */
  display: block; /* Allow block display */
  height: 2px; /* Thickness of the lines */
  background-color: #007bff; /* Line color */
  position: absolute; /* Absolute positioning for lines */
  top: 50%; /* Center the lines vertically */
  width: 42%; /* Length of the lines */
}

.frontblocktitles::before {
  left: 0; /* Position left line */
  transform: translateY(-50%); /* Center the line vertically */
}

.frontblocktitles::after {
  right: 0; /* Position right line */
  transform: translateY(-50%); /* Center the line vertically */
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .frontblocktitles::before,
  .frontblocktitles::after {
    width: 28%; /* Shorter lines for smaller screens */
  }

  .frontbtitle a {
    font-size: 1.3rem; /* Smaller font size for smaller screens */
  }
}

/* block one second block start */

.blocktwo-secondpost-item {
  border: 1px solid #ddd; /* Light border around the item */
  margin-bottom: 12px;
  display: flex;
  overflow: hidden; /* Ensure content doesn't overflow the border */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover effects */
  padding: 15px; /* Space around the title */
  gap: 12px;
}

/* Styling for the image */
.blocktwo-secondpost-image {
  position: relative;
  overflow: hidden; /* Ensure the image fits the container */

  height: 105px;
  min-width: 135px;
  max-width: 135px;
}

.blocktwo-secondpost-image img {
  width: 100%; /* Full-width image */
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.3s ease-in-out; /* Smooth zoom effect on hover */
}

.blocktwo-secondpost-title h2 {
  font-size: 1.5rem; /* Font size for the title */
  font-weight: 600; /* Semi-bold font weight */
  margin: 0;
  color: #212529; /* Dark text color */
}

.blocktwo-secondpost-title a {
  color: inherit; /* Inherit color from the parent */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

.blocktwo-secondpost-title a:hover {
  color: #007bff; /* Change color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blocktwo-secondpost-item {
    margin-bottom: 20px; /* Add margin between items on smaller screens */
  }

  .blocktwo-secondpost-title h2 {
    font-size: 1.3rem; /* Smaller font size for smaller screens */
  }
  .blocktwo-second-posts {
    display: grid;
    grid-template-columns: repeat(
      auto-fit,
      minmax(250px, 1fr)
    ); /* Responsive grid with a minimum width */
    gap: 20px; /* Space between grid items */
  }
}


.twobacks {
  background-color: #f0f0f0;
  margin-bottom: 22px;s
}
.twofbloc {
  background-color: #fff;
  padding: 1rem !important;
}

.twoseconds{
  background-color: #fff;
  padding: 0.5rem !important;
  height: 100%;
}
.blocktwoside section img{
  width: 100%;
}


/* block two first css start */


/* Container for the first block */

.blocktwo-posts {
  display: flex; 
  justify-content: center; /* Center content horizontally */
  flex-wrap: wrap; /* Wrap content if needed */
}

.blocktwo-firstpost-item {

  width: 100%; /* Full width */
  margin: 0 auto; /* Center the item */


  overflow: hidden; /* Prevent content overflow */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover effects */
}


/* Styling for the image */
.blocktwo-post-image {
  position: relative;
  overflow: hidden; /* Ensure the image fits the container */
}

.blocktwo-post-image img {
  width: 100%; /* Full-width image */

  transition: transform 0.3s ease-in-out; /* Smooth zoom effect on hover */
  width: 100%;
  height: 400px;

  transition: 0.5s all;
  object-fit: cover;
}



/* Styling for the title */
.blocktwo-post-title {
  padding: 15px; /* Space around the title */

  text-align: center; /* Center the text */
}

.blocktwo-post-title h2 {
  font-size: 35px !important;
  font-weight: 600; /* Semi-bold font weight */
  margin: 0;
  color: #212529; /* Dark text color */
}

.blocktwo-post-title a {
  color: inherit; /* Inherit color from the parent */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

.blocktwo-post-title a:hover {
  color: #007bff; /* Change color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blocktwo-firstpost-item {
      margin-bottom: 20px; /* Add margin between items on smaller screens */
  }

  .blocktwo-post-title h2 {
      font-size: 1.5rem; /* Smaller font size for smaller screens */
  }
}


.frontpagedate{
  text-align: center;
  color: #dad1d1;
}
.fmads{
  margin-top: 12px;
  margin-bottom: 12px;


}
body{
  background-color: #f0f0f0 !important;
}
.headerbackss{
  background-color: #fff;
}


/* block three css start */

.blockthree-firstpost-item{
  display: flex;
  column-gap: 12px;
}

.blockthree-post-title h2 a{
  text-decoration: none;
  color: #333;
}
.blockthree-post-title h2{
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #4c4a4a !important;
}
.blockthree-post-image a img{

}



/* block three third css  */
/* Container for the third block */
.blockthree-third-posts {
  display: flex;
  flex-wrap: wrap; /* Ensure posts wrap on smaller screens */
  justify-content: space-between; /* Space between the posts */
}

.blockthree-thirdpost-item {
  gap: 12px;
  border: 1px #ddd solid;
  padding: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;

  display: flex;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}



/* Styling for the image */
.blockthree-thirdpost-image {
  position: relative;
  height: 105px;
  width: 135px;
  min-width: 135px;
  max-width: 135px;
  position: relative;
  overflow: hidden;
}

.blockthree-thirdpost-image img {
  width: 100%; /* Full-width image */
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.3s ease-in-out; /* Smooth zoom effect on hover */
}

.blockthree-thirdpost-item:hover img {
  transform: scale(1.05); /* Slight zoom on hover */
}



.blockthree-thirdpost-title h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  font-family: 'Mukta', sans-serif !important;
  color: #212529;

}

.blockthree-thirdpost-title a {
  color: inherit; /* Inherit color from the parent */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

.blockthree-thirdpost-title a:hover {
  color: #007bff; /* Change color on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .blockthree-thirdpost-item {
      width: calc(50% - 20px); /* Two columns on medium screens */
  }
}

@media (max-width: 768px) {
  .blockthree-thirdpost-item {
      width: 100%; /* Full-width on small screens */
  }

  .blockthree-thirdpost-title h2 {
      font-size: 1.4rem; /* Smaller font size on small screens */
  }
}


/* block three css end */

/* block three second css start */

/* Container for the second block */
.blockthree-second-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  justify-content: space-between;
  margin: 40px 0;
}

/* Styling for individual post items */
.blockthree-secondpost-item {
  border: 1px solid #ddd; /* Light border around each item */
  border-radius: 8px; /* Rounded corners */
  overflow: hidden; /* Ensure content stays inside the item */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover effects */
  border: 1px solid #ddd;
  padding: 10px;
}



/* Styling for the image */
.blockthree-secondpost-image {
  position: relative;
  overflow: hidden; /* Ensure the image fits the container */
}

.blockthree-secondpost-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.blockthree-secondpost-item:hover img {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Styling for the title */
.blockthree-secondpost-title {
padding: 12px;
  background-color: #f8f9fa; /* Light background for the text */

}

.blockthree-secondpost-title h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: #212529;
  line-height: 1.4;
}

.blockthree-secondpost-title a {
  color: inherit; /* Inherit color from the parent */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

.blockthree-secondpost-title a:hover {
  color: #007bff; /* Change color on hover */
}
.threebacks{
  background-color: #fff;
  margin-bottom: 20px;
  margin-top: 24px;
}
.front-first-content{
  color: #6c757d !important;
  font-size: 20px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .blockthree-second-posts {
      grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)); /* Single column on small screens */
  }

  .blockthree-secondpost-title h2 {
      font-size: 1.4rem; /* Smaller font size on small screens */
  }
  .blockthree-secondpost-image img {
    width: 100%;
    height: auto;
  
  }
}


/* block four css start first */

.blockfourfirst-post-title{

}
.blockfourfirst-post-title h2 a{
  text-decoration: none;
  color: #333;

}
.blockfourfirst-post-title h2{
  font-size: 35px !important;
  margin-top:12px ;
  font-weight: 600;

}
.fourfront-first-content{
  color: #6c757d !important;
  font-size: 20px;
}
.blockfourfirst-post-image   a img{
  object-fit: cover;
  overflow: hidden;
  height: 300px;
}

@media (max-width: 768px) {
  .blockfourfirst-post-image   a img{
    object-fit: cover;
    overflow: hidden;
    height: auto;
  }
}


/* four block second css start */

/* Container for the second block */
.blockfour-second-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 6 columns with equal width */
  grid-gap: 20px; /* Gap between grid items */
  align-items: start; /* Align the posts at the start */
}

/* Styling for individual post items */
.blockfour-secondpost-item {

  overflow: hidden; /* Ensure content stays inside the item */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover effects */
  background-color: #fff;
}



/* Styling for the image */
.blockfour-secondpost-image {
  position: relative;
  overflow: hidden; /* Ensure the image fits the container */
  height: 135px;
}

.blockfour-secondpost-image img {
  width: 100%; /* Full-width image */
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.3s ease-in-out; /* Smooth zoom effect on hover */
}

.blockfour-secondpost-item:hover img {
  transform: scale(1.05); /* Slight zoom on hover */
}


.blockfour-secondpost-title h2 {
  font-size: 1.4rem; /* Font size for the title */
  font-weight: 600; /* Semi-bold font weight */
margin-top: 12px;
  color: #212529; /* Dark text color */
}

.blockfour-secondpost-title a {
  color: inherit; /* Inherit color from the parent */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}



@media (max-width: 768px) {
  .blockfour-second-posts {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet screens */
  }
  .blockfour-secondpost-image {
    position: relative;
    overflow: hidden;
    height: auto;
    min-width: 135px;
    max-width: 135px;
    
  }
  .blockfour-secondpost-item{
    display: flex;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .blockfour-second-posts {
      grid-template-columns: repeat(1, 1fr); /* 1 column on mobile screens */
  }

  .blockfour-secondpost-title h2 {
      font-size: 1.2rem; /* Smaller font size on small screens */
  }
}

/* blockfive css start */

.blocktwoside section img {
  width: 100%;
}


.blockfive-post-image a img{
  height: 330px;
  transition: 0.2s all;
  width: 100%;
  object-fit: cover;
}
.blockfive-post-title h2{
  font-size: 26px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #4c4a4a !important;
  margin-top: 12px;
}
.blockfive-post-title h2 a{
  color: #343434;
  text-decoration: none;
}
.block-five-contet{
  text-align: justify;
  font-size: 20px;
  color: #6c757d !important;
}

.blockfive-secondpost-item{
  display: flex;
  gap: 12px;
  border-bottom: solid 1px #ddd;
  margin-bottom: 15px;
}
.blockfive-secondpost-image a img{
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.blockfive-secondpost-image{
  position: relative;
  overflow: hidden;
  height: 100px;
  min-width: 120px;
  max-width: 120px;
}
.blockfive-secondpost-title h2 a{
  color: #343434;
  text-decoration: none;
}
.blockfive-secondpost-title h2{
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #4c4a4a !important;
}
.blockfive-secondpost-title{

}
.blockfivedate{
  color: #6c757d !important;
}

/* six block css start */

.sixblock{
  margin-top: 12px;
  margin-bottom: 12px;
}

/* Container for the posts */
.blocksix-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for 3 posts */
  grid-gap: 20px; /* Space between the posts */
  margin: 40px 0; /* Space around the container */
  align-items: start; /* Align posts at the start */
}

/* Styling for each post item */
.blocksix-firstpost-item {
  display: flex;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-color: #fff;
  gap: 12px;
  background: #0606e408;
  padding: 15px 10px;
  border-radius: 10px;
}


/* Styling for the post image */
.blocksix-post-image {

  min-width: 120px;
  max-width: 120px;
  position: relative;
  overflow: hidden;
}

.blocksix-post-image img {
  width: 100%; /* Full width image */
  height: auto; /* Maintain image aspect ratio */
  transition: transform 0.3s ease-in-out; /* Smooth zoom effect on hover */
}

/* Styling for the post title */
.blocksix-post-title {


}

.blocksix-post-title h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  color: #212529;
  margin-bottom: 3px;
}
.blocksix-author-name p{
  margin-bottom: 0em;
}

.blocksix-post-title a {
  color: inherit; /* Inherit color from parent */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease-in-out; /* Smooth transition on hover */
}

.blocksix-post-title a:hover {
  color: #007bff; /* Change color on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .blocksix-posts {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
  }
}

@media (max-width: 576px) {
  .blocksix-posts {
      grid-template-columns: 1fr; /* 1 column for mobile screens */
  }
}


/* block thirteen css start */

/* Container for the posts */
.blockthirteen-posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default to 3 columns */
  gap: 20px; /* Space between posts */
}

/* Each post item */
.blockthirteen-firstpost-item {
  position: relative;
  overflow: hidden; /* Hide any overflow from child elements */
}

/* Image container */
.block-thirteen-img {
  overflow: hidden; /* Ensure that the image overflow is hidden */
}

.block-thirteen-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease; /* Smooth zoom effect on hover */
}

/* Hover icon (always visible) */
.blockthirteen-hoverimg {
  position: absolute;
  left: 10px;
  color: #fff;
  font-size: 24px;
  opacity: 1; /* Icon is always visible */
  transform: scale(1); /* Normal size */
}



/* Styling the post title */
.blockthirteen-post-title h2 {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 600;
}

.blockthirteen-post-title h2 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blockthirteen-post-title h2 a:hover {
  color: #0073aa; /* Change the color on hover */
}

/* Responsive styles */
@media (max-width: 768px) {
  .blockthirteen-posts {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 480px) {
  .blockthirteen-posts {
      grid-template-columns: 1fr; /* 1 column on mobile devices */
  }

  .blockthirteen-hoverimg {
      font-size: 20px; /* Adjust icon size on mobile */
  }

  .blockthirteen-post-title h2 {
      font-size: 16px; /* Adjust title size on mobile */
  }
}

/* block tweleve css start */
.block-tweleve-full{
  padding: 1rem !important;
  background-color: #fff !important;
}
.bltwl-title-thumb{
  position: relative;
}
.blocktwelevefirst-post-title h2{
  position: absolute;
  bottom: 0;
  padding: 0 12px 0 12px;
  font-size: 20px;
}
.blocktwelevefirst-post-title h2 a{
  text-decoration: none;
  color: #fff;
}
.blocktwelevefirst-post-title{
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68), transparent, transparent, transparent);
  z-index: 4;
}


/*  */
.blocktweleve-secondpost-item{
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.blocktweleve-secondpost-image{
  min-width: 120px;
  max-width: 120px;

}
.blocktweleve-secondpost-image a img{
  object-fit: cover;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.blocktweleve-secondpost-title h2 a{
  text-decoration: none;
  color: #333;

}
.blocktweleve-secondpost-title h2{
  font-size: 18px !important;    
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #4c4a4a !important;
}


/* block ten css start */

.blobktenfill{
  padding: 1rem !important;
  background-color: #fff !important;
}
.tenfull{
  margin-top: 12px;
  margin-bottom: 12px;
}
.blockten-secondpost-title{

}
.blockten-secondpost-title h2 a{
  color: #343434;
  text-decoration: none;
}
.blockten-secondpost-title h2{
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
margin-top: 12px
}

.blockten-secondpost-image a img{
  height: 160px;
  width: 100%;
  object-fit: cover;
}
.blocktenfirst-post-image  {
  height: 400px;
}
.blocktenfirst-post-title h2 a{
  color: #343434;
  text-decoration: none;
}
.blocktenfirst-post-title h2 {
  font-size: 26px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  margin-top: 12px;

}

@media (max-width: 768px) {
  .blocktenfirst-post-image  {
    height: auto;
  }
  .blockten-secondpost-image a img{
    height: auto;
    width: 100%;
    object-fit: cover;
  }
}


/* blocl-9 css start */

.nineback{
  background-color: #258883c7 !important;
  padding: 1rem !important;
}

.blocknine-secondpost-image a img,.blockninefirst-post-image a img{
  height: 400px;
  object-fit: cover;

}

.blocknine-secondpost-item,.nineftitle-thum{
  position: relative;
}

.blocknine-secondpost-title,.blockninefirst-post-title{
  content: '';
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.58), transparent, transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.blocknine-secondpost-title h2,.blockninefirst-post-title h2{
  position: absolute;
  bottom: 0;
  padding: 12px;
  line-height: 1.2;
  font-size: 20px;
}
.blocknine-secondpost-title h2 a,.blockninefirst-post-title h2 a{
text-decoration: none;
color: #fff;
}

/* block seven css start */

.blocksevenfirst-posts {
  display: flex;
  flex-wrap: wrap; /* Optional if you want the content to wrap on smaller screens */
  justify-content: space-between; /* Distribute space between the posts */
  gap: 20px; /* Optional: Add space between each post */
}

.sevenftitle-thum {
  flex: 1;
  min-width: 23%; /* Ensure 4 items fit in one row (25% - small margin for gap) */
  max-width: 23%; /* Adjust as necessary */
  box-sizing: border-box;
}

.blocksevenfirst-post-title {
  margin-bottom: 10px;
}

.blocksevenfirst-post-image img {
  width: 100%; /* Ensure the image fits the container */
  height: 400px;
  object-fit: cover;
}
.sevenftitle-thum{
  position: relative;
}
.blocksevenfirst-post-title h2{
  position: absolute;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  bottom: 0;
  padding: 12px;
}
.blocksevenfirst-post-title{
  content: '';
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.58), transparent, transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.blocksevenfirst-post-title h2 a{
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .blocksevenfirst-posts {
    display: flex;
    flex-wrap: wrap; /* Optional if you want the content to wrap on smaller screens */
    justify-content: space-between; /* Distribute space between the posts */
    gap: 20px; /* Optional: Add space between each post */
    flex-direction: column !important;
  }

  .sevenftitle-thum {
    flex: 1;
    min-width: 100%; 
     max-width: 100%;
    box-sizing: border-box;
}
.blocksevenfirst-post-image img {
  width: 100%; /* Ensure the image fits the container */
  height: auto;
  object-fit: cover;
}
}

.newswholeblock{
  background-color: #fff !important;
  padding: 1rem !important;
}



/* content thumbnail part css start */
/* Container for the media post */
.newspost-thumn {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* Video and thumbnail styles */
.newspost-thumn .featured-video,
.newspost-thumn .facebook-live-video,
.newspost-thumn .youtube-live-video,
.newspost-thumn .featured-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
}

/* Embedded Facebook and YouTube iframe styling */
.newspost-thumn iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 450px;
  border-radius: 5px;
}

/* Responsive styles */
@media (min-width: 320px) and (max-width: 480px) {
  .newspost-thumn .featured-video video,
  .newspost-thumn .facebook-live-video iframe,
  .newspost-thumn .youtube-live-video iframe {
      height: 200px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .newspost-thumn .featured-video video,
  .newspost-thumn .facebook-live-video iframe,
  .newspost-thumn .youtube-live-video iframe {
      height: 300px;
  }
}

@media (min-width: 769px) {
  .newspost-thumn .featured-video video,
  .newspost-thumn .facebook-live-video iframe,
  .newspost-thumn .youtube-live-video iframe {
      height: 450px;
  }
}

/* Basic thumbnail styling if displayed as fallback */
.newspost-thumn .featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}


/* scrollup css start */
/* scrollup css start */
.scroll-to-top {
  position: fixed;
  bottom: 30px; /* Position from the bottom */
  right: 30px; /* Position from the right */
  background-color: #007bff; /* Button color */
  color: white; /* Icon color */
  border: none;
  border-radius: 50%; /* Make it circular */
  width: 50px; /* Button width */
  height: 50px; /* Button height */
  display: flex;
  justify-content: center; /* Center the icon */
  align-items: center; /* Center the icon */
  font-size: 24px; /* Icon size */
  cursor: pointer; /* Change cursor to pointer */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for effect */
  transition: background-color 0.3s ease; /* Smooth background change */
  z-index: 1000; /* Ensure it's above other content */
}

.scroll-to-top:hover {
  background-color: #0056b3; /* Darker color on hover */
}

.scroll-to-top:active {
  transform: scale(0.95); /* Slightly scale down on click */
}


/* scroll up css start */

/* scroll up css start */
/* content thumbnail part css end */
/* mresponsive */
@media (max-width: 768px) {
.headerbackss{
  position: sticky;
  top: 0;
  z-index: 99999;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  overflow: scroll;
  justify-content: left;
}
.adss1{
  flex-direction: column;
}
.adss1 section img{
  width: 100%;
}

.footer-sec-social ul{
       margin: 0 0 0em 0em;
}

.breaking-postnine h3 {
  font-size: 40px !important;
  padding: 0 !important;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "Mukta", sans-serif;
  text-align: center;
}
.blocktwo-post-image img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: auto !important;
  transition: 0.5s all;
  object-fit: cover;
}
}
