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

.textwidget iframe{
        pointer-events: none;
}
.container{
    max-width: 95% !important;
}
/* block title css star */

.blocktitles {
    background-color: #276bb4;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto; /* Center the block horizontally */
    display: flex; /* Use flexbox to center align items */
    justify-content: center; /* Center the contents horizontally */
    align-items: center; /* Center the contents vertically */
}

.btitle {
    font-size: 24px; /* Font size for the title */
    font-weight: bold; /* Bold font weight */
    color: #fff; /* Change text color to white for better contrast */
}

.btitle a {
    text-decoration: none; /* Remove underline from link */
    color: inherit; /* Inherit color from .btitle */
    transition: color 0.3s; /* Smooth color transition on hover */
}

.btitle a:hover {
    color: #0073aa; /* Change color on hover */
    text-decoration: underline; /* Underline the link on hover */
}

/* block title css end */
.fiveside{
    position: sticky !important;
    top: 12px !important;
}

/* thap css start */
.more {
    margin: 20px 0;
    padding-top: 10px;
    text-align: center;
    border-top: 1px solid #ccc;
}

.addmore a {
    color: #0073aa;
    text-decoration: none;
    padding: 3px 20px;
    font-size: 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-weight: bold;
}

.addmore a:hover {
   color: #fff;
   background-color: #EC3438;
   transition: color 0.3s; /* Smooth color transition on hover */
}
/* thap css end */

.twobacks{
    background-color: white !important;
    padding: 25px 0;
    margin-top: 15px;
}
.ptime{
    margin-top: 12px;
}


/* footer part css start */

.site-footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    margin: 0 auto;
    padding: 0 20px;
}

.copyright-section p, 
.developedby-section p {
    margin: 0;
    font-size: 14px;
}

.developedby-section a {
    color: #ff5500;
    text-decoration: none;
    font-weight: bold;
}

.developedby-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* footer part css end */


.footer-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #276bb4;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin: 0px auto;

}
.footer-title:hover{
    background-color: #0073aa;
}
.footer-title a {
    font-size: 20px; 
    font-weight: 600;
    color: #fff;
    text-transform: uppercase; 
    text-decoration: none; 
    letter-spacing: 1.2px;
    transition: color 0.3s ease, transform 0.3s ease; 
}

.footer-title a:hover {
    color: #fff; 
    transform: scale(1.1);
    transition: color 0.3s ease, transform 0.3s ease; 

}
.footerblocks{
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-right: 1px solid #0273aa42;
    padding: 12px;

}
.footertop{
    background-color: #fff;
    margin-top: 20px;
    padding-top: 32px;
    padding-bottom: 2px;
}

/*  */

.about-usdetails {

    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
}

.about-usdetails span {

    margin-bottom: 12px; /* Add spacing between lines */
    font-size: 16px; /* Increase font size for readability */
    color: #000000a1;
}

.about-usdetails strong {
 
    margin-right: 8px; /* Spacing between icon and text */
}

.about-usdetails i {
    color: #007bff; /* Icon color for visual distinction */
    margin-right: 5px; /* Spacing between icon and text */
    font-size: 18px; /* Slightly larger icon for emphasis */
}

.about-usdetails i.fa-user-tie {
    display: inline-block;
    margin-right: 8px;
}

.about-usdetails i.fa-id-badge {
    margin-right: 8px;
}

.about-usdetails br {
    margin-bottom: 8px; /* Add spacing between rows */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-usdetails {
        padding: 15px;
        max-width: 100%;
    }
    .header-logo a img{
        display: none;
    }
    .header-logo{
        height: 50px !important;
    }
}


.footersocial {
    padding: 20px 0; /* Padding for spacing from surrounding content */  
}

.footersocial li {
    list-style: none; /* Remove default bullet points */
}

.footersocial li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 23px;
    column-gap: 7px;
    color: #333;
    padding: 4px 8px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.footersocial li a i {
    font-size: 24px; /* Larger icon size for emphasis */
    margin-right: 8px; /* Space between icon and text */
    color: #0273aa; /* Default icon color */
}

.footersocial li a:hover {
    background-color: #0273aa; /* Change background on hover */
    color: #fff; /* Change text color on hover */
}

.footersocial li a:hover i {
    color: #fff; /* Change icon color on hover */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footersocial {
        flex-direction: column; /* Stack social links vertically on small screens */
        align-items: center;
    }

    .footersocial li {
        margin-bottom: 12px; /* Add space between vertical items */
    }
}


/* footer contact css */

.footer-contact {

    padding: 20px; /* Padding for inner spacing */
    border-radius: 8px; /* Rounded corners for a modern look */

    max-width: 600px; /* Limit the width for better layout */
    margin: 20px auto; /* Center the container */
    font-family: 'Arial', sans-serif; /* Clean, professional font */
    color: #333; /* Dark text for better readability */
    line-height: 1.6; /* Increase line height for readability */
}

.footer-contact strong {
    color: #5e5e5e;
    display: inline-block; /* Align icons and text properly */
    font-size: 16px; /* Increase title font size for prominence */
}

.footer-contact i {
    margin-right: 8px; /* Spacing between icon and text */
    color: #007bff; /* Icon color for emphasis */
    font-size: 18px; /* Larger icons for better visibility */
}

.footer-contact br {
    margin-bottom: 10px; /* Add space between lines */
}

.footer-contact a {
    color: #333; /* Dark color for text links */
    text-decoration: none; /* Remove underline from links */
}

.footer-contact a:hover {
    color: #007bff; /* Change color on hover */
    text-decoration: underline; /* Underline on hover for links */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-contact {
        padding: 15px;
        max-width: 100%;
    }
}


/* footernavmenu */

.footer-nav {
    text-align: center;
    padding: 20px 0;

}

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

.footer-menu li {
    display: inline;
    padding: 5px 5px;
    
}
.footer-menu li:hover{
    background-color: #0073aa;
    padding: auto;
    color: #fff !important;
}
.footer-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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


/* header css start */

.mainheader-logo-ads{
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo{
    height: 113px;
    max-width: 350px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .mainheader-logo-ads{
        flex-direction: column;
    }
}
.date-taglist{
    gap: 12px;
    border-bottom: 1px solid #3456;
    padding-top: 7px;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
}
/* header css end */


/* taglist css start */
.all-tags-list {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    display: flex; /* Use flexbox for layout */

    gap: 8px; /* Space between list items */
}

.tag-listblock-f {
    background-color: #f9f9f9;
    /* border-radius: 8px; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    /* flex: 1 1 calc(33.333% - 20px); */
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.tag-listblock-f:hover {
    background-color: #e8f0fe; /* Change background color on hover */
}

.tag-list-thumb {
    flex-shrink: 0; /* Prevent the thumbnail from shrinking */
    margin-right: 15px; /* Space between thumbnail and title */
    overflow: hidden; /* Hide overflow to maintain circular shape */
    width: 30px; /* Set fixed width */
    height: 30px; /* Set fixed height */
    border-radius: 50%; /* Circular thumbnail */
}

.tag-list-thumb img {
    width: 100%; /* Full width to fill the container */
    height: auto; /* Maintain aspect ratio */
}

.tag-list-title {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;


}

.tag-list-title a {
    text-decoration: none;
    color: #0073aa; 
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tag-listblock-f {
        flex: 1 1 calc(50% - 20px); /* Two items per row on medium screens */
    }

    .date-taglist {
        gap: 12px;
        border-bottom: 1px solid #3456;
        padding-top: 7px;
        margin-bottom: 12px;
        display: flex;
        align-items: baseline;
        flex-direction: column;
        overflow: scroll;
    }
    .htopdate{
       
    }
}

@media (max-width: 480px) {
    .tag-listblock-f {
        flex: 1 1 100%; /* Full width on small screens */
    }
}

/* taglist css end */
.htoptaglist{
    /* display: flex;
    column-gap: 12px; */
}
.date-taglist{

}

.tagblock {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: baseline;
}


.tagtitle {
    font-size: 1.25rem; /* Larger font size for emphasis */
    font-weight: bold; /* Bold text */
    color: #e30614; /* Dark text color for readability */
    text-align: center; /* Center align the text */
}

.tagtitle a {
    text-decoration: none; /* Remove underline from the link */
    color: inherit; /* Inherit the color from the parent element */
    transition: color 0.3s; /* Smooth color transition */
}

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




/* pagination css start */

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

.pagination a, .pagination span {
    display: inline-block;
    padding: 10px 15px; /* Padding for clickable areas */
    margin: 0 5px; /* Space between pagination items */
    border: 1px solid #d70607; /* Border color */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    color: #d70607; /* Link color */
    font-weight: 600; /* Bold font */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
}

.pagination a:hover {
    background-color: #d70607; /* Background color on hover */
    color: #ffffff; /* Text color on hover */
}

.pagination .current {
    background-color: #d70607;
    color: #ffffff;
    border: 1px solid #d70607;
}

.pagination a:disabled {
    opacity: 0.5; /* Reduced opacity for disabled links */
    pointer-events: none; /* Prevent click events on disabled links */
}


/* pagination css end */

@media (max-width: 768px) {
    /* .date-taglist {
        gap: 12px;
        border-bottom: 1px solid #3456;
        padding-top: 7px;
        margin-bottom: 12px;
        display: flex;
  
        flex-direction: column;
    } */
}



/* block one css start */
 /* title css start */
 .latesttitltethumn {
    gap: 8px;
    display: flex;
    flex-direction: column;
}

/* Wrapper for the latest news section title */
.breakingsidelatestitle {
    text-align: center;
    /* Center-align the title */
    margin-bottom: 20px;
    /* Adds some space below the title */
}

/* Styling for the h2 title */
.breakingsidelatestitle h2 {
    font-size: 2rem;
    color: #d42f32 !important;
    font-weight: 700;
    color: #333;
    /* Title color */
    margin: 0;
    /* Remove default margin */
    letter-spacing: 1px;
    /* Adds space between letters */
    text-transform: uppercase;
    /* Make the title uppercase */


    display: inline-block;
    /* Ensures border is only as wide as the text */
    padding-bottom: 5px;
    /* Adds some space between text and border */
}



/* title css end */


/* breaking latest post start */
.breakisngsidelatest {
    position: sticky !important;
    top: 12px !important;
}




/* Wrapper for the entire latest posts section */
.latest-posts-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    margin-top: 12px;
    background-color: #f7f7f7;
    border-radius: 8px;
}

/* Wrapper for each individual post item */
.breakingsidelatest-post-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 5px;
    background-color: #fff;
    /* Background color of the post item */

    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Box shadow for slight elevation */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth hover effect */
}

/* Hover effect for the post items */
.breakingsidelatest-post-item:hover {
    transform: translateY(-5px);
    /* Moves the post slightly up on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    /* Adds more shadow on hover */
}

/* Thumbnail (featured image) container */
.breaking-sidelatest-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    /* Ensures image doesn't overflow */
    border-radius: 4px;
    /* Rounds the corners of the thumbnail */
}

/* Styling the post thumbnail (image) */
.latest-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container */
    border-radius: 4px;
    /* Rounds the corners of the image */
}

/* Wrapper for the post title */
.breakingsidelatest-post-title {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Post title */
.breakingsidelatest-post-title h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

/* Link style for the post title */
.breakingsidelatest-post-title h3 a {
    text-decoration: none;
    color: #333;
    /* Text color */
    transition: color 0.3s ease;
    /* Smooth transition on hover */
}

/* Hover effect for the title link */
.breakingsidelatest-post-title h3 a:hover {
    color: #0b6fbf;
    /* Change the color on hover */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {


    .breakingsidelatest-post-title {
        align-items: flex-start;
        margin-top: 10px;
    }
}


/* breaking latest post end */
.mainbackss {
    background-color: #eeeeee;
}



.red-title {
    color: red;
}

.breakingpost-meta {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: center;
}

.author-avatarnine img {
    border-radius: 50%;
    margin-right: 10px;
}

.author-namenine {
    font-weight: bold;
    margin-right: 5px;
}

.published-date {
    color: #777;
}

.pnewsdate span{
    font-size: 14px;
    display: block;
    line-height: 16px;
    font-weight: 700;
}
.newspostentry-content{
    margin-top: 12px;
}

/* morelinks */
.morelinks {
    text-align: center;
    /* Center align the content */
    margin: 20px 0;
    /* Add some vertical space */
}

.morelinks a {
    display: inline-block;
    /* Make the link behave like a button */
    padding: 12px 20px;
    /* Add padding for a button-like appearance */
    background-color: #007BFF;
    /* Button background color */
    color: #fff;
    /* Text color */
    font-size: 16px;
    /* Font size */
    font-weight: bold;
    /* Bold text */
    text-decoration: none;
    /* Remove underline */
    border-radius: 5px;
    /* Rounded corners */
    transition: background-color 0.3s, transform 0.3s;
    /* Smooth transitions */
}

.morelinks a:hover {
    background-color: #0056b3;
    /* Darker shade on hover */
    transform: translateY(-2px);
    /* Slight upward movement on hover */
}

.morelinks a:active {
    background-color: #004080;
    /* Even darker shade when clicked */
    transform: translateY(0);
    /* Reset position */
}



/* breaking ui onof css start */
.breaking-postnines-section {}

.nineblocksss {

    margin-bottom: 20px;
}

.breaking-postnines-section:hover {}

.breaking-postnines-section h2 {
    font-size: 26px;
    /* Larger title for emphasis */
    color: #ff5d3e
        /* Darker shade for title */
        margin-bottom: 15px;
    /* text-align: center; */
    font-family: 'Helvetica Neue', sans-serif;
    /* Modern font */
}

.breaking-postnine {
    /* text-align: center; */
    margin-bottom: 25px;
    /* More space between posts */
    /* padding: 15px;  */
    /* Padding for each post */
    background-color: #f7f9fc;
    /* Light background for individual posts */
    border-radius: 8px;
    /* Slight rounding */
    transition: background-color 0.3s;
    /* Smooth background transition */
}

.breaking-postnine:hover {
    /* background-color: #eaeef1; */
    /* Change background on hover */
}

.breaking-postnine h3 {
    font-size: 64px;
    padding: 0 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 10px;
    padding-top: 30px;
    margin-bottom: 20px;
    font-family: "Mukta", sans-serif;
}

.breaking-postnine h3 a {
    text-decoration: none;
    transition: color 0.3s;
    color: #0b6fbf;
    /* Smooth color transition */
}

.breaking-postnine h3 a:hover {
    /* color: #2980b9; */
    color: #e9010ab8;
    /* Darker color on hover */
}

.breaking-postnine p {
    font-size: 20px;
    padding: 12px;
    color: #7f8c8d;
    /* Subtle gray for text */
    line-height: 1.6;
    /* Better line spacing */
}

/* Featured image styling */
.featured-image {
    margin: 15px 0;
    /* Space around image */
    overflow: hidden;
    /* Prevent overflow */
    border-radius: 8px;
    /* Rounded corners */
}

.featured-image img {
    width: 100%;
    border-radius: 8px;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    /* Match the container's rounded corners */
    transition: transform 0.3s;
    /* Smooth transform on hover */
}

.featured-image img:hover {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
}

/* Video container styling */
.facebook-live-video,
.youtube-live-video {
    margin: 20px 0;
    /* Space around videos */
    border-radius: 8px;
    /* Rounded corners */
    overflow: hidden;
    /* Prevent overflow */
    background-color: #f0f0f0;
    /* Light gray background for videos */
}

.facebook-live-video iframe,
.youtube-live-video iframe {
    width: 100%;
    height: 450px;
    /* Fixed height */
    border: none;
    /* No border */
    border-radius: 8px;
    /* Match the container's rounded corners */
}

.breaking_excerptnine {
    font-size: 24px;
    margin: 20px 0 15px;
    /* text-align: center; */
}

/* breaking ui onof css end */


.breakingpost-meta {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: center;
}



.breaking-postnine h3 {
    font-size: 64px;
    /* padding: 0; */
    /* Remove padding for consistent left alignment */
    font-weight: 700;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: "Mukta", sans-serif;
    text-align: center;
    /* Ensure title alignment is left */
}

.breaking_excerptnine {
    font-size: 24px;
    margin: 20px 0 15px;
    text-align: center;
    /* Ensure excerpt alignment is left */
}

/* Remove unnecessary centering in the following selectors */
.morelinks {
    text-align: left;
    /* Change to left alignment if applicable */
}





/* Media queries */

/* For tablets (screen widths between 768px and 1024px) */
@media screen and (max-width: 1024px) {

    .featured-image img {
        width: 100%;
        border-radius: 8px;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.3s;
    }
}

/* For mobile phones (screen widths between 480px and 768px) */
@media screen and (max-width: 768px) {
    .featured-image img {
        width: 100%;
        border-radius: 8px;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.3s;
    }

}

/* For small mobile devices (screen widths below 480px) */
@media screen and (max-width: 480px) {
    .featured-image img {
        width: 100%;
        border-radius: 8px;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.3s;
    }
}
/* block one css end */


/* post content css start */
.postcontent-fullb{
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 12px;
    margin-top: 12px;
}

.news-sideblocks{
    position: sticky !important;
    top: 12px !important;
}

.newspostentry-content p{

    font-size: 1.3rem;
    color: #4C4C4E;
    font-family: 'ek mukta', sans-serif;
    text-align: justify;
    font-weight: 400;
}
.newspostentry-content p a{
    text-decoration:none !important;
}
.publisheddatesbelow-share{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
}

@media (max-width: 768px) {
    .adss1{
        display: flex;
        column-gap: 12px;
        flex-direction: column;
    }
}

/* Newspost Title Styling */
.newspost-title {
    text-align: center; /* Center align the title */
    margin-bottom: 20px; /* Add space below the title */
}

/* Large Font Size for h2 */
.newspost-title h2 {
    font-size: 3rem; /* Large font size */
    font-weight: bold; /* Bold font for emphasis */
    color: #333333; /* Dark gray for the title */
    margin: 0; /* Remove default margin */
    line-height: 1.2; /* Tight line height for better readability */
    text-transform: capitalize; /* Capitalize each word */
    letter-spacing: 1px; /* Add slight letter spacing */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .newspost-title h2 {
        font-size: 2rem; /* Reduce font size on mobile */
    }
}

@media (max-width: 480px) {
    .newspost-title h2 {
        font-size: 1.75rem; /* Further reduce font size on very small screens */
    }
}


/* Container for Author Info and Share Buttons */
.newspost-auth-share {
    display: flex;
    justify-content: space-between; /* Align author info and share buttons at opposite ends */
    align-items: center; /* Vertically align content */
    margin-top: 20px; /* Add spacing above the section */
    padding: 10px 0; /* Vertical padding */
    border-top: 1px solid #e0e0e0; /* Add a top border for separation */
}

/* Author Info Styling */
.newspost-author-info {
    display: flex;
    align-items: center; /* Align avatar and name vertically */
}

.newspost-author-info a {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove link underline */
    color: #333; /* Dark gray for author name */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.newspost-author-info a:hover {
    color: #0073aa; /* Change color on hover */
}

/* Author Avatar Styling */
/* Author Avatar Styling with Shadow and Zoom-in Effect */
.newspost-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%; /* Make the avatar circular */
    overflow: hidden; /* Ensure image stays within the circle */
    margin-right: 10px; /* Spacing between avatar and name */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for zoom and shadow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Initial subtle shadow */
}

.newspost-author-avatar:hover {
    transform: scale(1.1); /* Zoom-in effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}




/* Author Name Styling */
.newspost-author-name {
    font-size: 1rem; /* Standard font size for the name */
    font-weight: bold; /* Bold the author name */
    color: inherit; /* Inherit link color */
}

/* Share Button Section Styling */
.pnewshare {
    display: flex;
    align-items: center; /* Vertically center the share buttons */
}

.sharethis-inline-share-buttons {
    display: flex; /* Display the share buttons inline */
}

/* Responsive Design */
@media (max-width: 768px) {
    .newspost-auth-share {
        flex-direction: column; /* Stack author info and share buttons on smaller screens */
        align-items: flex-start; /* Align content to the left */
    }

    .pnewshare {
        margin-top: 10px; /* Add space above share buttons on mobile */
    }
}

.nestopsdate{
    margin-left: 5px;
}
/* post content css end */

/* front navigation start */

/* Main Container for Navigation Background */
.menunavback {
    background-color: #e30614; /* Background color for the navigation */
    color: #fff; /* Text color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern look */
}

/* Container to align content centrally */
.menunavback .container {
    max-width: 1140px; /* Standard container width */
    margin: 0 auto; /* Center align */
    padding: 0 15px; 
    /* Horizontal padding */
}



/* Site Branding */
.site-branding {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff; /* White text for branding */
}


.fmenu{
    position: sticky;
    top: 0;
    z-index: 999999;
}

/* Overall styles for the menu container */
.menunavback {
    background-color: #276bb4;
    /* padding: 15px 0;  */
    /* Padding for the menu */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Container styles */
.container {
    max-width: 1200px; /* Maximum width of the container */
    margin: 0 auto; /* Center align the container */
    padding: 0 15px; /* Padding for responsive spacing */
}

.site-header {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
   
}

/* Styles for the menu icon */
.menubaricon {
    cursor: pointer; /* Change cursor to pointer on hover */
    font-size: 24px; /* Font size for the icon */
    color: #fff; /* Icon color */
}

/* Main navigation styles */
.main-navigation {
    flex-grow: 1; /* Allow the nav to grow and fill available space */
    text-align: center; /* Center the navigation items */
}

/* Primary menu styles */
#primary-menu {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

/* Menu item styles */
#primary-menu > li {
    display: inline-block; /* Display menu items inline */
    position: relative; /* Position for submenu positioning */
    margin: 0 12px ; /* Margin between menu items */
}

/* Link styles */
#primary-menu a {
    text-decoration: none;
    color: #ffffff;
    margin-left: 4px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 7px;
    transition: color 0.3s;
}

/* Hover effects for links */
#primary-menu a:hover {
    color: #ffffff; /* Change color on hover */
}

/* Submenu styles */
#primary-menu .sub-menu {
    display: none; /* Hide submenus by default */
    position: absolute; /* Position submenus absolutely */
    top: 100%; /* Position below the parent */
    left: 0; /* Align to the left */
    background-color: #276bb4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Shadow for submenu */
    z-index: 10; /* Ensure submenu is above other elements */
}

/* Show submenu on hover */
#primary-menu li:hover .sub-menu {
    display: block; /* Show submenu on parent hover */
}

/* Submenu item styles */
#primary-menu .sub-menu li {
    display: block; /* Display submenu items block */
    margin: 0; /* Remove margin */
}

/* Arrow for submenu - only show if there is a submenu */
#primary-menu > li:has(.sub-menu) > a:after {
    content: ''; /* Empty content for arrow */
    border: solid transparent; /* Create space for arrow */
    border-width: 5px 5px 0; /* Triangle shape */
    border-top-color: #ffffff; /* Arrow color */
    display: inline-block; /* Inline block for spacing */
    margin-left: 5px; /* Spacing between link and arrow */
}

/* Rotate arrow for open submenu */
#primary-menu li:hover > a:after {
    transform: rotate(180deg); /* Rotate arrow on hover */
}

.sub-menu li:hover{
    background-color: #c20304;
}

/* Search icon styles */
.menusearch {
    font-size: 24px; /* Font size for search icon */
    cursor: pointer; /* Change cursor to pointer */
    color: #fff; /* Icon color */
}

.sticky-logo{
    display: none;
}


/* Responsive styles */
@media (max-width: 768px) {
    /* Stack items on smaller screens */
  

    .main-navigation {
        text-align: left; /* Align navigation items to the left */
        width: 100%; /* Full width */
    }
    .sticky-logo{
        display: block;
    }
    .sticky-logo img{
        height: 60px;
    }
    /* Header styles */
.site-header {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space between items */
}
.newspostsideadss section img,.adss1 section img {
width: 100%;
}

.publisheddatesbelow-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    flex-direction: column;
}
.relatedposttitle {
    font-size: 22px;
    color: #333;
    margin-top: 10px;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.breaking-postnine h3 {
    font-size: 30px !important;
    /* padding: 0; */
    font-weight: 700;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: "Mukta", sans-serif;
    text-align: center;
}
.five-firstfiltered-post-title a {
    font-size: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.foursecondfiltered-post-title {
    font-size: 24px;
    margin-top: 2px;
    line-height: 1.4;
}
.tagvlockslist {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(1, 1fr)!important ;
    margin-top: 20px;
    padding-top: 12px;
}
.tagpost-thumbnail a img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

.ten-secondfiltered-posts {
    display: grid;
    grid-template-columns: none !important;
    gap: 20px;
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.custom-post-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    margin: 0 auto;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    padding-left: 15px;
}

}



/* front navigation end */




/* scroll up css start */
#scrollUp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 24px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 999;
    overflow: hidden;
}

#scrollUp:hover {
    background-color: #444;
}

#scrollUp.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#scrollUp.hide {
    opacity: 0;
    transform: translateY(100px);
}

/* Arrow inside the button */
.arrow-up {
    display: inline-block;
    position: relative;
    transition: transform 0.4s ease;
}

#scrollUp:active .arrow-up {
    transform: translateY(-5px); /* Arrow moves up slightly when clicked */
}

#scrollUp .arrow-up-rise {
    animation: rise 1s infinite; /* Continuous rising animation */
}

/* Keyframe for rising arrow */
@keyframes rise {
    0% {
        transform: translateY(10px); /* Start below */
    }
    50% {
        transform: translateY(0); /* Move to center */
    }
    100% {
        transform: translateY(10px); /* Back to start */
    }
}


/* scroll up css end */

.searchlogo{
    margin-bottom: 12px;
}



/* desktop responsive  1024x 768  */


/* Responsive Styles for 1024x768 */
@media (max-width: 1024px) {
    #primary-menu > li {
        display: inline-block;
        position: relative;
        margin: 0 0px !important;
    }

    /* frontlatestpost */
    title h3 {
        font-size: 14px !important;
        font-weight: bold;
        margin: 0;
        line-height: 22px;
    }

    .breaking-sidelatest-thumb {
        flex-shrink: 0;
        width: 70px !important;
        height: 50px !important;
        overflow: hidden;
        border-radius: 4px;
    }
    .ekar-tab-content {
        padding: 4px !important;
        border-top: 1px solid #dee2e6;
        background-color: white;
    }
    .breakingsidelatest-post-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 5px !important;
        padding: 5px !important;
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .fivemost-read-post-number {
        font-size: 28px;
        font-weight: 700;
        color: #007bff;
        margin-right: 10px !important;
        text-align: center;
        width: 50px;
    }
    .ekar-tab-button {
        flex: 1;
        padding: 15px 12px !important;
        border: none;
        background-color: transparent;
        color: #495057;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
    }
    .fivemost-read-post-title h2 {
        font-size: 18px;
        margin: 0;
        line-height: 1.3 !important;
        color: #343a40;
    }

    
    /* frot latestpost end */

    /* reaction btn start */
    .reaction-box {
        text-align: center;
        padding: 4px !important;
        margin: 5px;
        /* flex: 1 1 150px; */
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease;
    }
    /* reaction btn end */

    .header-logo {
        height: 113px;
        max-width: 250px !important;
        width: 100%;
    }
    .breakingsidelatest-post-title h3 {
        font-size: 14px;
        font-weight: 600;
        word-wrap: break-word;
        margin: 0;
        line-height: 1.4;
    }

    /*  */
    .foursecondfiltered-post-thumb img {
        width: 100%;
        height: 280px !important;
        object-fit: cover;
        margin-bottom: 10px;
    }

.fourfirstfiltered-post-thumb img {
    width: 100%;
    height: 157px !important;
    object-fit: cover;
    border-radius: 4px;
    margin: 0 auto 10px auto;
}

.fourthird-firstfiltered-post-thumb img {
    border-radius: 50%;
    width: 105px !important;
    height: 105px !important;
    object-fit: cover;
    margin: 0 auto;
}

.five-secondfiltered-post-title h3 {
    font-size: 18px !important;
    margin: 0;
}

.five-secondfiltered-post-item {
    display: flex;
    column-gap: 12px;
    width: 100%;
    margin-bottom: 12px !important;
    border-radius: 4px;
}
.five-firstfiltered-post-thumb img {
    max-height: 270px !important;
    min-height: 270px !important;
}

.ten-secondfiltered-posts {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(150px, 2fr)) !important; */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}
.ten-secondfiltered-post-title h3 {
    font-size: 18px !important;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 0 !important;
}
.ten-secondfiltered-post-title {
    padding: 6px 12px 0px 12px !important;
    text-align: left;
}

/* block 15 css */
.tweleve-secondfiltered-post-thumb a img {
    min-width: 70px !important;
    max-width: 70px !important;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.tweleve-secondfiltered-post-title h3 {
    font-size: 16px !important;
    font-weight: 600;
    word-break: break-word !important;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}
.tweleve-secondfiltered-post-item {
    column-gap: 5px !important;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
}
.tweleve-secondfiltered-posts {
    display: grid;
    grid-template-columns: none !important;
    gap: 20px;
    padding: 10px;
    border-radius: 8px;
}
}

