@charset "utf-8";

/* Put this at the TOP of your CSS file */
@font-face {
  font-family: "SolaimanLipiNormal";
  src: url("../fonts/solaimanlipi/solaimanlipi_20-04-07.eot");
  src: url("../fonts/solaimanlipi/solaimanlipi_20-04-07.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/solaimanlipi/solaimanlipi_20-04-07.woff") format("woff"),
    url("../fonts/solaimanlipi/solaimanlipi_20-04-07.ttf") format("truetype"),
    url("../fonts/solaimanlipi/SolaimanLipi_29-05-06.svg#SolaimanLipi") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "SolaimanLipiNormal", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #333;
  background: #ffffff;
}
.logo-area {
  background: #fff;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1212px !important;
  }
}
/*================================================
  1. CUSTOM BOOTSTRAP STYLE
==================================================*/
.custom-container {
  padding-left: 12px;
  padding-right: 12px;
}
.custom-row {
  margin-right: -12px;
  margin-left: -12px;
}
.custom-padding {
  padding-left: 12px;
  padding-right: 12px;
}
.p-0 {
  padding-left: 0;
  padding-right: 0;
}
.p-left-0 {
  padding-left: 0;
}
.p-right-0 {
  padding-right: 0;
}
.m-0 {
  margin-left: 0;
  margin-right: 0;
}

body,
h1, h2, h3, h4, h5, h6,
p,
textarea {
  font-family: "SolaimanLipiNormal", Helvetica, Arial, sans-serif !important;
}
a {
  font-family: "SolaimanLipiNormal", Helvetica, Arial, sans-serif;
}
a:focus {
  outline: 0 solid !important;
}
a:hover {
  text-decoration: none !important;
}
*a:hover {
  text-decoration: none !important;
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*================================================
  2. Scrollup
==================================================*/
.scrollup {
  background: #1da255 none repeat scroll 0 0;
  border: 1px solid #1da255;
  bottom: 38px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  height: 40px;
  line-height: 35px;
  position: fixed;
  right: 30px;
  text-align: center;
  width: 40px;
  z-index: 99999;
}
.scrollup:hover {
  background: #ffffffff;
  color: #1da255;
  border: 1px solid #1da255;
  transition: 1s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}
.back-to-top span {
  padding-bottom: 10px;
}
.back-to-top--active {
  visibility: visible;
  -webkit-animation: back-to-top 0.3s ease-in;
  animation: back-to-top 0.3s ease-in;
  transition: width 2s;
}

/* Responsive adjustments for Top Bar */
@media only screen and (max-width: 767px) {
    .header-top-area .date-area {
        text-align: center;
        margin-bottom: 5px;
    }
    .header-top-area .social-icon-wrapper {
        float: none !important;
        text-align: center;
        display: block;
    }
    .main-logo {
        padding: 10px 0;
    }
}
/*================================================
  3. HEADER STYLE (Black Icons, Smaller Circle)
==================================================*/
/* --- Sticky Behavior --- */
/* --- Entire Sticky Header --- */
.header-section.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1020;
    background-color: #ffffff; /* Prevents see-through content */
    transition: box-shadow 0.3s;
}
.header-topbar.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    transition: box-shadow 0.3s;
}

/* --- Toggler Animation & Style --- */
.custom-toggler {
    background: transparent;
    border: 1px solid transparent;
    padding: 5px;
    width: 35px;
    cursor: pointer;
    outline: none !important;
}
.custom-toggler .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    margin-bottom: 5px;
    transition: 0.3s;
    border-radius: 2px;
}
.custom-toggler .bar:last-child { margin-bottom: 0; }
.custom-toggler:hover .bar { background-color: #D80000; }

/* --- Horizontal Menu Container --- */
.horizontal-menu-container {
    background: #fff;
    width: 100%;
}
/* Moves the logo 20px to the left */
@media (min-width: 768px) {
    /* Changed from 250px to 350px to give more space for the Date */
    .header-topbar .order-md-1, 
    .header-topbar .order-md-3 {
        flex: 0 0 380px; 
        max-width: 380px;
    }
    
    .header-topbar .order-md-2 {
        flex-grow: 1;
        text-align: center;
    }
}
/* --- Desktop Nav Styling --- */
/* --- Horizontal Menu Adjustments --- */
@media (min-width: 768px) {
    /* 1. Force the list to take full width and space items evenly */
    .horizontal-menu-container .navbar-nav {
        width: 100%;
        justify-content: space-between; 
    }

    /* 2. Make text bold and adjust size/padding */
    .horizontal-menu-container .nav-link {
        font-weight: 700 !important; /* Makes it Bold */
        font-size: 17px; /* Slightly larger text */
        padding: 10px 0 !important; /* Remove side padding so space-between handles the gap */
        color: #000;
    }

    /* Optional: Fix the Home Icon alignment if needed */
    .horizontal-menu-container .nav-link i {
        font-weight: normal; /* Keep icon normal weight */
        margin-right: 5px;
    }
}

/* --- Mobile Submenu Fixes (< 768px) --- */
@media (max-width: 767px) {
    .horizontal-menu-container {
        position: absolute; /* Detach from flow so it overlays if needed, or static to push content */
        position: static;   /* Keep static to push content down */
        width: 100%;
        z-index: 999;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px;
        border-bottom: 1px solid #f1f1f1;
        display: flex;
        justify-content: space-between; /* Space out Text and Caret */
        align-items: center;
    }
    
    /* Make Dropdown Menu Distinct */
    .dropdown-menu {
        border: none;
        background-color: #f9f9f9; /* Light grey bg for submenu */
        margin: 0;
        padding: 0;
        box-shadow: inset 0 3px 6px rgba(0,0,0,0.05); /* Inner shadow for depth */
    }
    
    .dropdown-item {
        padding: 10px 15px 10px 30px; /* Indent submenu items */
        border-bottom: 1px solid #eee;
        font-size: 14px;
        color: #555;
    }
    
    /* Fix Caret Click Area */
    .dropdown-toggle::after {
        margin-left: auto; /* Push caret to far right */
        font-size: 1.2em;
    }
}

/* --- Icons & Socials --- */
.social-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #333;
    transition: 0.3s;
    font-size: 14px;
    text-decoration: none;
}
.social-circle:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
/* --- Existing Toggler Styles (Keep these) --- */
.custom-toggler {
    background: transparent;
    border: none;
    padding: 5px;
    width: 35px;
    cursor: pointer;
    outline: none !important;
}
.custom-toggler .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    margin-bottom: 5px;
    transition: 0.3s;
}
.custom-toggler .bar:last-child { margin-bottom: 0; }
.custom-toggler:hover .bar { background-color: #D80000; }


/* --- SEARCH POPUP STYLES --- */
.search-overlay-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98); /* White overlay */
    z-index: 1060; /* Higher than sidebar */
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s;
}

/* When open class is added */
.search-overlay-area.open {
    display: block;
    opacity: 1;
}

.search-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
}
.search-group .form-control {
    border: none;
    border-bottom: 2px solid #333;
    background: transparent;
    border-radius: 0;
    font-size: 30px;
    height: 60px;
}
.search-group .form-control:focus {
    box-shadow: none;
    border-color: #D80000;
}
.search-group .btn {
    border-radius: 0;
    font-size: 24px;
    padding: 0 20px;
}


/* --- SIDEBAR STYLES (Compact & Scrollable) --- */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -320px; /* Hidden Left */
    width: 300px; /* Reduced Width */
    height: 100vh;
    z-index: 1050;
    background: #fff;
    transition: left 0.3s ease-in-out; /* Smooth slide */
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* OPEN STATE (Controlled by JS) */
.sidebar-menu.active {
    left: 0;
}

/* Backdrop */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}
.sidebar-backdrop.active {
    display: block;
}

/* Content & Scroll */
.sidebar-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
}
.sidebar-header {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}
.sidebar-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    background: #fff;
}

/* Link Styles */
.sidebar-menu .nav-link {
    padding: 8px 15px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar-menu .nav-link:hover {
    color: #D80000;
    background-color: #fcfcfc;
}
.sidebar-menu .collapse .nav-link {
    padding-left: 30px;
    background: #fdfdfd;
    font-weight: normal;
}
.close-sidebar-btn {
    background: none; border: none; font-size: 24px; cursor: pointer;
}

/*================================================
  4. START JQUERY MARQUEE SECTION
==================================================*/
.marquee-container {
  margin-top: 18px;
}
.marquee-block {
  position: relative;
}


.marquee li {
  display: inline-block;
  padding-right: 15px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.marquee li a {
  display: block;
  color: #000;
  line-height: 30px;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.marquee li a span {
  padding-left: 20px;
}
.marquee li a span img {
  margin-top: -4px;
  height: 20px;
}
.marquee li a:hover {
  color: #ff0000;
}
.marquee li i {
  display: inline-block;
}
.marquee-block-breaking {
  position: relative;
}
.marquee-block-breaking h2 {
  font-size: 20px;
  margin: 0;
  line-height: 24px;
  position: absolute;
  background: #ed1c24;
  color: #fff;
  padding: 6px 10px;
}
.marquee-block-breaking h2:after {
  content: "";
  position: absolute;
  left: 121px;
  border-left: 20px solid #ed1c24;
  border-top: 36px solid transparent;
  clear: both;
  top: 0;
}
.marquee-breaking {
  width: 100%;
  overflow: hidden;
  background: #fff;
  list-style: none;
  display: inline-block;
  padding: 0;
  border: 1px solid #ed1c24;
  margin-bottom: 12px;
}
.marquee-breaking li {
  display: inline-block;
  padding-right: 15px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.marquee-breaking li a {
  display: block;
  color: #000;
  line-height: 30px;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.marquee-breaking li a span {
  padding-left: 20px;
}
.marquee-breaking li a:hover {
  color: #ff0000;
}
.marquee-breaking li i {
  display: inline-block;
}
.marquee-breaking li a span img {
  margin-top: -4px;
}
/*================================================
  5.Post Tags and Related Post
==================================================*/
/* --- Tags Section --- */
.tags-area {
    margin: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.tags-label {
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
    color: #333;
}
.tag-item {
    display: inline-block;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 5px 12px;
    margin-right: 8px;
    margin-bottom: 5px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}
.tag-item:hover {
    background: #D80000;
    color: #fff;
    border-color: #D80000;
}

/* --- Related News Section --- */
.related-news-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}
.related-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 3px solid #eee; /* Light gray line */
    padding-bottom: 10px;
    display: block;
}
.related-post-item {
    margin-bottom: 20px;
}
.related-post-img {
    width: 100%;
    height: 140px; /* Fixed height for uniformity */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}
.related-post-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    display: block;
}
.related-post-title:hover {
    color: #D80000;
}
/* --- Meta & Tools Combined Bar --- */
.meta-tools-wrapper {
    background: #fdfdfd;
    padding: 10px 0;
}

/* Left: Author */
.author-area .author-text h6 {
    line-height: 1.2;
    color: #333;
}
.author-area .author-text small {
    color: #777;
}

/* Right: Tools Buttons */
.tool-btn-sm {
    background: #fff;
    border: 1px solid #ddd;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    color: #555;
    cursor: pointer;
    font-size: 12px;
    transition: 0.2s;
}
.tool-btn-sm:hover {
    background: #eee;
    color: #000;
}

.tool-btn-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 14px;
    margin-left: 5px;
    cursor: pointer;
    text-decoration: none !important;
    transition: 0.3s;
}
.tool-btn-circle:hover {
    opacity: 0.8;
    color: #fff;
}

/* Specific Colors */
.tool-btn-circle.fb { background: #3b5998; }
.tool-btn-circle.copy { background: #666; }
.tool-btn-circle.share { background: #D80000; }

/* Mobile Adjustments */
@media (max-width: 576px) {
    .meta-tools-wrapper {
        flex-direction: column; /* Stack on very small screens if needed */
        align-items: flex-start !important;
        gap: 10px;
    }
    .tools-area {
        width: 100%;
        justify-content: space-between;
    }
}
/* Default Title Style (Desktop) */
.details-title {
    font-weight: bold;
    font-size: 28px; /* Or your preferred desktop size */
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Tool Button Base Styles (Ensure consistency) */
.tool-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%; /* Make them perfectly round */
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    margin-right: 5px; /* Spacing between icons */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none !important;
    transition: 0.3s;
}
.tool-btn:hover {
    background: #eee;
}
/* Specific Colors on Hover/Active */
.fb-share:hover { background: #3b5998; color: #fff; border-color: #3b5998; }
.link-copy:hover { background: #666; color: #fff; border-color: #666; }


/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 576px) {
    /* 1. Decrease Title Size */
    .details-title {
        font-size: 20px; /* Smaller font for mobile */
        line-height: 1.3;
    }

    /* 2. Layout Adjustments for Tools Wrapper */
    /* This ensures icons don't touch the edge or look weird on new line */
    .tool-bar-area {
        width: 100%;
        justify-content: flex-start; /* Align icons to the left */
        margin-top: 5px !important;
    }
    
    /* Optional: If you want icons spread out on mobile, change 'flex-start' to 'space-between' above */
}
/*================================================
  Video Gallery Section Styles
==================================================*/
.video-gallery-section {
    padding: 30px 0;
}

.clean-video-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: #fff;
}

.clean-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.video-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.clean-video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-icon i {
    color: #e74c3c;
    font-size: 24px;
    margin-left: 3px;
}

.clean-video-card:hover .play-icon {
    transform: scale(1.1);
    background: #fff;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.video-content {
    padding: 15px;
}

.video-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-meta i {
    font-size: 12px;
}
/*================================================
  GLOBAL & UTILITIES
==================================================*/
.top-news-section {
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* Layout Columns */
.top-news-middle {
    width: 73.27%;
    float: left;
    padding-right: 15px;
}
.top-news-right {
    width: 26.73%;
    float: left;
    padding-left: 15px;
}

/*================================================
  1. HERO SECTION (Mosaic Style)
  Matches your 1st Image: Text inside image
==================================================*/
.hero-wrapper {
    margin-bottom: 25px;
}

/* 1. THE CARD CONTAINER (Anchor Point) */
.hero-card {
    position: relative !important; /* Essential: This anchors the absolute overlay */
    display: block;
    width: 100%;
    overflow: hidden; /* Ensures image stays inside rounded corners */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Soft shadow */
    margin-bottom: 20px; /* Spacing */
    background: #000; /* Fallback color */
}

/* Specific Heights to align grid perfectly */
.hero-card.big img {
    height: 410px; /* Taller left image */
    width: 100%;
}
.hero-card.small {
    margin-bottom: 10px; /* Space between the two right images */
}
.hero-card.small:last-child {
    margin-bottom: 0;
}
.hero-card.small img {
    height: 200px; /* Half height of left side approx */
    width: 100%;
}

/* Hover Zoom Effect */
.hero-card img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.hero-card:hover img {
    transform: scale(1.05);
}

/* The Gradient Text Overlay */
.hero-overlay {
    position: absolute !important;
    bottom: 0 !important;      /* Stick to bottom */
    left: 0 !important;
    width: 100%;
    top: auto !important;      /* ESSENTIAL: Prevents it from stretching to top */
    
    /* Dark fade from bottom only */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    
    padding: 20px 15px;
    z-index: 2;
    pointer-events: none; /* Allows clicking through the text to the link behind it */
}

.hero-overlay h1 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.hero-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

/*================================================
  2. GRID ROW (3 Cards Below Hero)
==================================================*/
.grid-card {
    background: #fff;
    border: 1px solid #eee; /* Light border */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.grid-card img {
    height: 160px;
    width: 100%;
    border-bottom: 3px solid #e74c4f; /* Red accent line */
}

.grid-card-content {
    padding: 12px;
}

.grid-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*================================================
  3. LIST VIEW (Bottom Section)
==================================================*/
.list-view-wrapper {
    margin-top: 10px;
}
.section-title {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #e74c4f;
    margin-bottom: 20px;
    padding-bottom: 8px;
    color: #333;
    display: inline-block;
}

.list-card {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0;
    align-items: flex-start;
}
.list-card:last-child { border-bottom: none; }

.list-card-img {
    flex: 0 0 220px; /* Fixed width */
    margin-right: 20px;
    border-radius: 6px;
    overflow: hidden;
}
.list-card-img img {
    width: 100%;
    height: 125px;
    transition: transform 0.4s ease;
}
.list-card:hover .list-card-img img { transform: scale(1.05); }

.list-card-content { flex: 1; }
.list-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
}
.list-card-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-card-meta { font-size: 12px; color: #999; }
/* MOBILE VIEW CUSTOMIZATION (Max Width 767px) */
    @media only screen and (max-width: 767px) {
        .list-card a.d-flex {
            display: block !important; /* Stack elements vertically */
        }
        .list-card-img {
            width: 100% !important; /* Full width image */
            margin-right: 0;
            margin-bottom: 10px;
        }
        .list-card-img img {
            height: 200px; /* Larger image for mobile */
        }
        .list-card-content {
            width: 100% !important; /* Full width content */
        }
        .list-card-content h3 {
            font-size: 20px; /* Slightly larger title for mobile readability */
        }
    }
/*================================================
  SIDEBAR STYLES
==================================================*/
/* Tabs */
.side-tab-nav {
    width: 100%;
    border-bottom: 2px solid #eee;
    margin-bottom: 15px;
    display: flex;
}
.side-tab-nav .nav-item { width: 50%; text-align: center; }
.side-tab-nav .nav-link {
    display: block;
    padding: 10px;
    font-weight: 700;
    color: #555;
    background: transparent;
    border-bottom: 2px solid transparent;
}
.side-tab-nav .nav-link.active {
    color: #e74c4f;
    border-bottom: 2px solid #e74c4f;
    background-color: #ffffff;
}

/* Sidebar List */
.sidebar-list { padding: 0; margin: 0; list-style: none; }
.sidebar-item a {
    display: flex;
    padding: 9px 0;
    border-bottom: 1px solid #f1f1f1;
    align-items: center;
}
.sidebar-item-img {
    flex: 0 0 90px;
    height: 65px;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
}
.sidebar-item-img img { height: 100%; width: 100%; }
.sidebar-item-content h3 {
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
    color: #333;
}
.sidebar-item:hover h3 { color: #e74c4f; }
/*================================================
  7. FEATURE NEWS WRAPPER SECTION STYLE
==================================================*/
.feature-news-wrapper {
  padding: 50px 0 40px;
}
.feature-news-wrapper-left {
  width: 73.27%;
  float: left;
}
.feature-news-wrapper-right {
  width: 26.73%;
  float: left;
}

.special-event-heading a:hover {
  color: #000;
}
.special-event-heading .title .liner {
  padding-left: 10px;
}

.feature-news-lead {
  position: relative;
  margin-bottom: 5px;
  margin-top: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
  display: inline-block;
}
.feature-news-heading {
  position: absolute;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.5) 30%,
    rgba(0, 0, 0, 0.8) 100%
  );
  color: #fff;
  bottom: 0;
  padding: 30px 10px 5px;
}
.feature-news-heading h3 {
  margin: 0;
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  transition: all 0.5s ease 0s;
}
.feature-news-heading span {
  font-size: 14px;
  line-height: 14px;
}
.feature-news-lead a:hover {
  color: #000;
}
.feature-news-ul {
  margin: 0;
  padding: 0;
}
.feature-news-ul li {
  list-style-type: none;
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 6px 0;
}
.feature-news-ul li:last-child {
  border-bottom: 0;
}
.feature-news-single {
  background-color: #ffffff;
  padding: 7px 6px;
  display: inline-block;
  margin-bottom: -7px;
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.feature-news-left {
  float: left;
  width: 36%;
  padding-right: 3%;
}
.feature-news-left img {
  min-height: 63px;
}
.feature-news-right {
  float: left;
  width: 64%;
  min-height: 63px;
  max-height: 63px;
  overflow: hidden;
}
.feature-news-right h3 {
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 20px;
  padding-left: 2px;
  transition: all 0.5s ease 0s;
}
.feature-news-right span {
  font-size: 14px;
  line-height: 14px;
  color: #e74c4f;
}
.feature-news-heading span {
  font-size: 14px;
  line-height: 14px;
  color: #e74c4f;
}
.feature-news-lead a:hover img {
  opacity: 0.85;
  webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.feature-news-lead a:hover .feature-news-heading h3 {
  color: #fff;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.feature-news-single:hover img {
  opacity: 0.85;
}
.feature-news-single:hover .feature-news-right h3 {
  color: #000;
}
.feature-news-right-banner {
  margin-top: 35px;
}
.feature-news-right-banner-2 {
  margin-top: 8px;
}
/*================================================
  6. INTERNATIONAL SECTION STYLE
==================================================*/
.bg-white {
  background: #ffffff;
  width: 100%;
}
.international {
  padding: 40px 0;
}
.international-news-row {
  padding-top: 5px;
}
.international-news-left {
  width: 73.27%;
  float: left;
}
.international-lead {
  /* position: relative; */
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  padding: 7px;
}
.international-lead-img {
  position: relative;
}
.international-lead-heading {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  padding: 5px;
}
.international-lead-heading span {
  font-size: 14px;
  line-height: 14px;
  color: #e74c4f;
}
.international-lead-heading h2 {
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  margin: 0;
}
.international-lead-heading p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  padding: 0 1px;
}
.international-lead-detail {
  min-height: 187px;
  max-height: 187px;
  overflow: hidden;
}
.international-lead-detail p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 23px;
  padding: 0 1px;
  padding-top: 5px;
}
.international-lead a:hover {
  color: #000;
}
.international-news-ul {
  position: relative;
  margin: 0;
  padding: 0;
}
.international-news-ul li {
  list-style: none;
  width: 100%;
  margin-bottom: 10px;
}
.international-news-ul li a {
  display: inline-block;
  padding: 7px;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.international-news-ul li a:hover {
  color: #000;
}
.international-news-ul-left {
  float: left;
  width: 36%;
  padding-right: 3%;
}
.international-news-ul-right {
  float: left;
  width: 64%;
  min-height: 63px;
  max-height: 63px;
  overflow: hidden;
}
.international-news-ul-right h3 {
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 21px;
  transition: all 0.5s ease 0s;
  padding-left: 2px;
}
.international-news-ul-right span {
  font-size: 14px;
  line-height: 14px;
  color: #e74c4f;
}
.international-news-right {
  width: 26.73%;
  float: left;
}
.right-international-banner {
  margin-top: 19px;
}
/*================================================
  6. CAPITAL SECTION STYLE
==================================================*/
.capital-section {
  padding: 50px 0 40px;
}
/*================================================
  7. SPORTS SECTION STYLE
==================================================*/
.sports {
  padding: 50px 0 40px;
}
.sports-news-left {
  width: 73.27%;
  float: left;
}
.sports-news-right {
  width: 26.73%;
  float: left;
}
.sports-banner-1 {
  margin-top: 10px;
}
.sports-banner-2 {
  margin-top: 25px;
}
.sports-lead-news {
  position: relative;
  margin-bottom: 26px;
  box-shadow: 1px 2px 0 0 rgba(0, 0, 0, 0.05);
}
.sports-lead-news img {
  min-height: 315px;
}
.sports-lead-news-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
}
.sports-lead-news-text h2 {
  font-size: 22px;
  padding: 5px;
  color: #fff;
  line-height: 28px;
  margin: 0;
}
.sports-lead-news-text span {
  color: #e74c4f;
  font-size: 14px;
  padding: 0 5px;
  line-height: 14px;
}
.sports-small-news {
  position: relative;
  margin-bottom: 26px;
  box-shadow: 1px 2px 0 0 rgba(0, 0, 0, 0.05);
}
.sports-small-news-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
}
.sports-small-news-text h3 {
  font-size: 17px;
  padding: 2px 5px;
  color: #fff;
  line-height: 20px;
  margin: 0;
}
.sports-small-news-text span {
  color: #e74c4f;
  font-size: 14px;
  line-height: 14px;
  padding: 0 5px;
}
.sports-small-news img {
  min-height: 145px;
}
/*================================================
  8. LIFT STYLE SECTION STYLE
==================================================*/
.life-style-section {
  padding: 50px 0 40px;
}
.life-style-left {
  width: 73.27%;
  float: left;
}
.life-style-right {
  width: 26.73%;
  float: left;
}
.life-style-row {
  padding-top: 5px;
}
.life-style-single {
  margin-bottom: 30px;
}
.life-style-single-text {
  padding: 5px 5px;
  background: #fff;
  min-height: 80px;
  max-height: 80px;
  overflow: hidden;
}
.life-style-single-text h2 {
  font-size: 19px;
  line-height: 23px;
  margin: 0;
  color: #000;
}
.life-style-single-text span {
  color: #e74c4f;
  font-size: 14px;
  line-height: 14px;
}
.life-style-2 {
  margin-top: 24px;
}
/*=================== VIDEO GALLERY SECTION ==============================*/
.video-gallery-section {
  padding: 40px 0;
}
.video-gallery-heading {
  position: relative;
  margin-bottom: 25px;
}
.title-bg {
  position: relative;
  font-size: 20px;
  color: #101010;
  line-height: 20px;
  display: inline-block;
  text-transform: uppercase;
  margin: 0;
}
.title-bg:before {
  background: #1da255;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  bottom: -14px;
  width: 60%;
}
.title-bg:after {
  background: #1da255;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  bottom: -10px;
  width: 100%;
}
.title-bg a {
  color: #000000;
  font-size: 28px;
  text-decoration: none;
}
.single-videos {
  position: relative;
  overflow: hidden;
}
.single-videos .images {
  position: relative;
  overflow: hidden;
}
.single-videos .images a {
  display: block;
  transition: all 0.5s ease 0s;
  text-decoration: none;
}
.single-videos .images .overley {
  cursor: pointer;
  position: absolute;
  left: 0;
  right: 0;
  text-align: left;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  transform: scaleY(0);
  transform-origin: 0 1 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
}
.single-videos .images:after {
  background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.single-videos .images .overley .videos-icon {
  padding: 20% 0;
  text-align: center;
}
.single-videos .images a img {
  transition: all 0.5s ease 0s;
}
.single-videos .images:hover .overley {
  opacity: 1;
  transform: scaleY(1);
  z-index: 10;
}
.videos-text {
  position: relative;
  z-index: 10;
  background-color: #f6f6f6;
  padding: 6px 10px;
  max-height: 74px;
  min-height: 74px;
}
.single-videos h3 {
  margin: 0;
  transition: all 0.5s ease 0s;
  font-size: 18px;
  line-height: 22px;
}
.single-videos a {
  color: #000;
}
.overley .videos-icon a img {
  width: auto;
  margin: auto;
}
/* #featured-videos-section .single-videos h3 a:hover {
  color: #e74c4f;
  transition: all 0.5s ease 0s;
} */
#featured-videos-section .owl-nav .owl-next {
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 0;
  opacity: 1;
  margin: 2px;
  right: 0;
  position: absolute;
  top: -55px;
  border: 1px solid #1da255;
  transition: all 0.5s ease 0s;
  text-align: center;
}
#featured-videos-section .owl-nav .owl-next i {
  color: #1da255 !important;
}
#featured-videos-section .owl-nav .owl-next:hover {
  background: #1da255;
  border: 1px solid #1da255;
}
#featured-videos-section .owl-nav .owl-next:hover i {
  color: #ffffff !important;
}
#featured-videos-section .owl-nav .owl-next i {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fbc02d;
}
#featured-videos-section .owl-nav .owl-prev {
  background: transparent;
  width: 30px;
  text-align: center;
  height: 30px;
  border-radius: 0;
  opacity: 1;
  margin: 2px;
  right: 35px;
  position: absolute;
  top: -55px;
  border: 1px solid #1da255;
  transition: all 0.5s ease 0s;
}
#featured-videos-section .owl-nav .owl-prev i {
  color: #1da255 !important;
}
#featured-videos-section .owl-nav .owl-prev:hover {
  background: #1da255;
  border: 1px solid #1da255;
}
#featured-videos-section .owl-nav .owl-prev:hover i {
  color: #ffffff !important;
}
#featured-videos-section .owl-nav .owl-prev i {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fbc02d;
}
/*================================================
  9. Updated Home Page CSS STYLE
==================================================*/
:root {
    --primary-color: #D32F2F; /* The red color from samples */
    --dark-overlay: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
    --hero-height: 450px; /* Fixed height to ensure alignment across all 3 columns */
    --border-radius: 0px; /* Squared corners as per sample */
}

/* Section Spacing */
.hero-modern-section {
    padding: 20px 0;
    background-color: #ffffff;
}

/* --- The Grid Structure --- */
/* Removes default gutter padding for a tighter grid */
.hero-grid-row { margin: 0 -5px; }
.hero-col { padding: 0 5px; }
/* --- The Grid Structure --- */
/* Adjust margins to align with the rest of the page */
.hero-grid-row { 
    margin-right: -15px; 
    margin-left: -15px; 
}

/* Add standard 15px padding to columns. 
   15px on the left of one col + 15px on the right of the next = 30px total gap. */
.hero-col { 
    padding-right: 15px; 
    padding-left: 15px; 
}

/* --- Middle Sub Cards (Stacked) --- */
.sub-card {
    /* Adjust height for the new gap */
    height: calc(50% - 15px) !important;
    /* Add margin to the bottom of the first card to create a vertical gap */
    margin-bottom: 30px;
}

/* Remove margin from the bottom card so it aligns perfectly */
.sub-card:last-child {
    margin-bottom: 0;
}

/* Forces the main container heights to match */
.main-card-wrap, .sub-card-wrap, .hero-tab-wrapper {
    height: var(--hero-height);
}

.hero-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff;
}
.hero-link:hover { color: #fff; text-decoration: none; }

/* Image Handling */
.hero-img-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-card:hover .hero-img-box img {
    transform: scale(1.05); /* Subtle zoom effect */
}


/* Content Positioning */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    z-index: 2;
    width: 100%;
}

/* Category Badge (Red box) */
.badge-cat {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

/* Typography */
.hero-content h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #fff;
}
.hero-content p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 0;
    line-height: 1.5;
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Middle Sub Cards (Stacked) --- */
.sub-card {
    /* Calculates exactly half height minus the gap space */
    height: calc(50% - 5px) !important; 
}
.hero-content.small {
    padding: 15px;
}
.hero-content.small h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #fff;
    /* Limit to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Right Side: Modern Tabs --- */
.hero-tab-wrapper {
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-nav-tabs {
    border-bottom: 2px solid var(--primary-color);
    display: flex;
}
.hero-nav-tabs .nav-item {
    flex: 1;
    margin-bottom: -2px; /* Overlap border */
}
.hero-nav-tabs .nav-link {
    width: 100%;
    border: none;
    color: #333;
    font-weight: 700;
    padding: 12px 0;
    text-align: center;
    background: #f5f5f5;
    transition: 0.3s;
    border-radius: 0;
    font-size: 16px;
}
.hero-nav-tabs .nav-link.active {
    color: #fff;
    background: var(--primary-color);
}

.hero-tab-content {
    flex: 1;
    overflow-y: auto; /* Enables scrolling for long lists */
    padding: 0;
}
/* Clean scrollbar styling */
.hero-tab-content::-webkit-scrollbar { width: 3px; }
.hero-tab-content::-webkit-scrollbar-thumb { background: #ccc; }

.hero-list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-list-group li {
    border-bottom: 1px solid #f1f1f1;
    padding: 10px 12px;
    transition: 0.2s;
}
.hero-list-group li:hover { background: #f9f9f9; }

.hero-list-group a {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
}
/* Number counters */
.list-count {
    font-size: 24px;
    font-weight: 700;
    color: #e0e0e0; /* Light gray number like sample */
    line-height: 1;
    margin-right: 12px;
    min-width: 20px;
    text-align: center;
}
/* Highlight top 3 popular items if desired */
.hero-list-group li:nth-child(-n+3) .list-count.trend {
     color: rgba(211, 47, 47, 0.3); 
}

.list-text h6 {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    margin-bottom: 0;
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-list-group li:hover .list-text h6 { color: var(--primary-color); }

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-col { margin-bottom: 15px; }
    .main-card-wrap, .sub-card-wrap, .hero-tab-wrapper { height: auto; }
    .main-card { height: 300px; }
    .sub-card { height: 200px !important; margin-bottom: 10px; }
    .hero-tab-wrapper { height: 400px; } /* Keep tabs scrollable on mobile */
}




/*================================================
  End Hero Section STYLE
==================================================*/

/* --- Modern Tabs (Right) --- */
.modern-tab-wrapper {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 15px;
    height: 400px; /* Match Main Hero Height */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modern-nav .nav-link {
    background: #f8f9fa;
    color: #555;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 2px;
    padding: 8px 0;
    transition: all 0.3s;
}
.modern-nav .nav-link.active {
    background: #0d2e5b;
    color: #fff;
    box-shadow: 0 4px 10px rgba(13, 46, 91, 0.3);
}

.modern-tab-content {
    flex-grow: 1;
    overflow-y: auto; /* Scrollable if list is long */
}
/* Scrollbar styling for tabs */
.modern-tab-content::-webkit-scrollbar {
    width: 4px;
}
.modern-tab-content::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 4px;
}

.modern-list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modern-list-group li {
    border-bottom: 1px dashed #eee;
    padding: 10px 0;
}
.modern-list-group li:last-child {
    border-bottom: none;
}
.modern-list-group a {
    display: flex;
    text-decoration: none;
    align-items: flex-start;
}
.modern-list-group .counter {
    background: #f1f1f1;
    color: #555;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}
.modern-list-group .counter.highlight {
    background: #e74c4f; /* Red for popular */
    color: #fff;
}
.modern-list-group p {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    transition: color 0.2s;
}
.modern-list-group li:hover p {
    color: #e74c4f;
}
/* 1. Make the ROW a flex container (You already have this) */
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

/* 2. CRITICAL FIX: Make the COLUMN a flex container too */
/* This forces the child (.clean-cat-wrapper) to be able to stretch */
.row-eq-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* 3. Make the wrapper grow to fill the column */
.clean-cat-wrapper {
    background: #fff;
    flex: 1;        /* This makes it stretch to fill the height */
    width: 100%;    /* Ensures it takes full width */
    border-right: 1px solid #eee; 
    padding: 0 15px;
    margin-bottom: 20px; /* Optional: Keep spacing at bottom */
    
    /* Ensure the border goes all the way by removing any default margins interfering */
    display: flex;       
    flex-direction: column;
}

/* Optional: Pushes the list to the bottom if you want content spaced out, 
   otherwise remove this block */
.clean-lead-news {
    /* flex: 0 0 auto; */
}
.clean-small-list {
    /* flex: 1 1 auto; */
}

/* Styles for header/text (same as before) */
.clean-cat-heading {
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    width: 100%;
}
.clean-cat-heading .title a {
    color: #202020;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

/* Images and List Styles */
.clean-lead-news { margin-bottom: 15px; }
.clean-lead-news a { text-decoration: none; }
.clean-lead-img img { width: 100%; height: auto; border-radius: 3px; margin-bottom: 8px; }
/* --- 1. BIG HEADLINE (Lead News) --- */
.clean-lead-content h3 {
    font-size: 18px !important;       /* Increased text size */
    line-height: 28px;     /* Adjust line height for readability */
    font-weight: 700;
    margin: 0;
    color: #000;

    /* FORCE EQUAL HEIGHT: Limits to exactly 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;        /* Show max 3 lines, then add ... */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* This ensures even 1-line titles take up the space of 3 lines 
       so everything stays aligned. (28px line-height * 3 = 84px) */
    min-height: 84px;      
}
.clean-lead-content h3:hover { color: #e74c4f; }
.clean-small-list ul { margin: 0; padding: 0; list-style: none; }
/* Increase spacing between list items for a cleaner look */
.clean-small-list li {
    border-top: 1px solid #e1e1e1;
    padding: 12px 0;      /* Increased padding */
}
/* --- 2. SMALL LIST ITEMS --- */
.clean-small-list li a {
    color: #333;
    font-size: 18px;       /* Increased text size */
    line-height: 22px;     
    text-decoration: none;
    display: block;

    /* FORCE EQUAL HEIGHT: Limits to exactly 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;        /* Show max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    /* Ensures alignment even if text is short (22px * 2 = 44px) */
    min-height: 44px;      
}
.clean-small-list li a:hover { color: #e74c4f; }

/* Remove border from last column on Desktop */
@media (min-width: 992px) {
    .col-lg-3:last-child .clean-cat-wrapper {
        border-right: none;
    }
}

/* --- Section Spacing (Reduced Whitespace) --- */
.international-modern-section {
    padding: 20px 0; /* Reduced from 40px */
    background: #fff;
}

/* --- Clean Header Style (Solid Border) --- */
.modern-header-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Reduced gap */
    width: 100%;
    position: relative;
}

.modern-header-title {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-right: 15px;
    background: #fff; /* Covers the line behind text */
    z-index: 2;
}

.modern-header-title .bar {
    font-size: 20px;
    color: #0d2e5b;
    font-weight: 900;
    margin-right: 10px;
    line-height: 1;
}

.modern-header-title a {
    color: #0d2e5b;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

/* SOLID LINE styling */
.modern-header-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: #e1e1e1; /* Clean solid gray line */
    z-index: 1;
}

/* --- Left Side Content (Big Post) --- */
.modern-lead-news {
    margin-bottom: 0; /* Remove extra space */
}

.modern-lead-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}
.modern-lead-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Overlay Title on Image Bottom */
.modern-lead-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
}
.modern-lead-title-overlay h2 {
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

/* Body Text for Equal Height */
.modern-lead-body {
    padding-top: 5px;
}
.modern-lead-body p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: justify;
    margin: 0;
}

/* --- Middle List (Thumbnails) --- */
.modern-small-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.modern-small-list li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
}
.modern-small-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.modern-small-list a {
    display: flex;
    text-decoration: none;
    align-items: flex-start; /* Align top to handle long text */
}
.modern-small-list .img-thumb {
    width: 100px; /* Fixed width */
    height: 65px;
    flex-shrink: 0;
    margin-right: 12px;
}
.modern-small-list .img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}
.modern-small-list .text-content h3 {
    font-size: 18px;
    line-height: 20px;
    margin: 0;
    color: #333;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit text to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Right Sidebar (Circular Images) --- */
.modern-circle-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.modern-circle-list li {
    background: #fff;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #eee; /* Box border */
    border-radius: 4px;
    transition: all 0.3s;
}
.modern-circle-list li:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.modern-circle-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.modern-circle-list .img-circle {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f8f9fa;
}
.modern-circle-list .img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modern-circle-list .text-content h3 {
    font-size: 16px;
    line-height: 18px;
    margin: 0;
    color: #333;
    font-weight: 600;
}
/* --- Modern Grid Item (Bottom Row) --- */
.clean-lead-content h3 {
    transition: color 0.3s;
}
.clean-lead-news:hover .clean-lead-content h3 {
    color: #e74c4f;
}
/* Section Padding Helper */
.lifestyle-modern-section {
    padding: 30px 0;
}
/* Ensure table looks clean inside sidebar */
.namaj-wrapper table td {
    vertical-align: middle;
    border-color: #f1f1f1;
}
/* --- Video Section Spacing --- */
.video-gallery-section {
    padding: 30px 0;
}

/* --- Clean Video Card --- */
.clean-video-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    margin-bottom: 5px; /* Spacing for carousel shadows */
    transition: all 0.3s ease;
}
.clean-video-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.clean-video-card a {
    text-decoration: none;
    display: block;
}

/* Thumbnail Area */
.video-thumb {
    position: relative;
    overflow: hidden;
    height: 160px; /* Fixed height for consistency */
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.clean-video-card:hover .video-thumb img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.clean-video-card:hover .play-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.1); /* Lighten overlay on hover */
}

.play-icon {
    width: 45px;
    height: 45px;
    background: #e74c4f; /* Red Play Button */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 0 4px rgba(231, 76, 79, 0.3); /* Pulsing ring effect */
}

/* Video Text */
.video-content {
    padding: 12px;
}
.video-content h3 {
    font-size: 15px;
    line-height: 20px;
    color: #333;
    font-weight: 600;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px; /* Ensures alignment */
}
.clean-video-card:hover .video-content h3 {
    color: #e74c4f;
}
/* --- Photo Section Spacing --- */
.photo-modern-section {
    padding: 30px 0;
}

/* --- Clean Photo Card --- */
.clean-photo-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.clean-photo-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: #bbb;
}

/* Thumbnail Wrapper */
.photo-thumb {
    position: relative;
    height: 180px; /* Fixed height for uniformity */
    overflow: hidden;
    background: #f8f9fa;
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom Effect on Hover */
.clean-photo-card:hover .photo-thumb img {
    transform: scale(1.1);
}

/* Overlay */
.photo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clean-photo-card:hover .photo-overlay {
    opacity: 1;
}

/* Camera Icon */
.camera-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.clean-photo-card:hover .camera-icon {
    transform: scale(1);
}

/* Content Text */
.photo-content {
    padding: 12px 15px;
    background: #fff;
    border-top: 1px solid #f1f1f1;
}

.photo-content h3 {
    font-size: 16px;
    line-height: 22px;
    margin: 0;
    color: #333;
    font-weight: 600;
    text-align: center;
    
    /* Limit to 1 line with ellipsis */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clean-photo-card:hover .photo-content h3 {
    color: #0d2e5b; /* Dark Blue */
}

/*====== FOOTER NEW STYLE ============*/
.map-heading {
  text-align: center;
}
.map-heading h2 {
  background: #1da255;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  padding: 5px;
}

.contact-details h3 {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 15px;
  font-size: 20px;
}
.contact-details h3 span {
  width: auto;
  border-bottom: 3px solid #ff0000;
  padding-bottom: 8px;
}
.contact-details p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
}
.bottom-bar{
  background: #fff;
  height: 1px;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}
.footer-address-ul {
  padding: 0;
  margin: 0;
}
.footer-address-ul li {
  list-style: none;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 3px;
}
.social-icon {
  margin: 0;
  display: block;
  padding: 0;
  text-align: left;
  padding-top: 12px;
}
.social-icon li {
  list-style: none;
  transform: rotate(0deg);
  display: inline-block;
}
.social-icon li a {
  display: inline-block;
  transition: 0.5s;
}
.social-icon li a {
  font-size: 20px;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  line-height: 34px;
  text-align: center;
  transition: all 0.7s ease-in;
  background: transparent;
}
.social-icon li a:hover {
  transform: rotate(360deg);
}
.social-icon li .facebook {
  background: #3b5999;
  border: 2px dotted transparent;
}
.social-icon li:hover .facebook {
  border: 2px dotted #3b5999;
  background: transparent;
  color: #3b5999;
}
.social-icon li .twitter {
  background: #55acee;
  border: 2px dotted transparent;
}
.social-icon li:hover .twitter {
  border: 2px dotted #55acee;
  background: transparent;
  color: #55acee;
}
.social-icon li .youtube {
  background: #c4302b;
  border: 2px dotted transparent;
}
.social-icon li:hover .youtube {
  border: 2px dotted #c4302b;
  background: transparent;
  color: #c4302b;
}
.social-icon li .instagram {
  background: #e4405f;
  border: 2px dotted transparent;
}
.social-icon li:hover .instagram {
  border: 2px dotted #e4405f;
  background: transparent;
  color: #e4405f;
}
.social-icon li .linkedin {
  background: #0077b5;
  border: 2px dotted transparent;
}
.social-icon li .pinterest {
  background: #cb2027;
  border: 2px dotted transparent;
}
.social-icon li:hover .linkedin {
  border: 2px dotted #0077b5;
  background: transparent;
  color: #0077b5;
}
.social-icon li a:hover {
  border: 2px dotted #fff !important;
  background: transparent;
  color: #fff !important;
}
.design-link {
  float: right;
}
.footer-bottom-row a {
  color: #0c980c;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer-bottom-row p {
  margin-bottom: 0;
}
.opinion-heading {
  padding-top: 20px;
}
.footer-facebook-like {
  margin-top: 22px;
}
.writter-ul .feature-news-single {
  background: #fff;
}
.lead-national-main-text {
  background: #fff;
  padding: 5px;
  min-height: 85px;
  max-height: 85px;
  overflow: hidden;
}
.lead-national-main-text h2 {
  font-size: 20px;
  line-height: 24px;
  margin: 0;
  color: #000;
}
.lead-national-main-text span {
  font-size: 14px;
  line-height: 14px;
  color: #e74c4f;
}
.lead-national-main-text p {
  font-size: 16px;
  line-height: 25px;
  padding-top: 3px;
}
.lead-national-main-img {
  position: relative;
}
.lead-national-heading {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  padding: 5px;
}
.lead-national-heading h2 {
  font-size: 20px;
  line-height: 24px;
  margin: 0;
  color: #fff;
}
.lead-national-heading span {
  font-size: 14px;
  line-height: 14px;
  color: #e74c4f;
}

/* =====   SINGLE BLOCK STYLE ========*/
.natioal-top-section {
  padding-top: 7px;
}
.bangladesh-map {
  margin-top: -9px;
  margin-bottom: -7px;
}
.dividion-form-group {
  margin-bottom: 10px;
}
.single-block {
  background: #fff;
  position: relative;
  padding: 12px 15px;
}
.btn-date-picker {
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition-duration: 0.5s;
  background: #ff0000;
  color: white;
  font-size: 18px;
  padding: 5px 10px 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
}
.btn-date-picker::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-date-picker:active::before,
.btn-date-picker:focus::before,
.btn-date-picker:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-date-picker:hover {
  color: #ff0000;
}
.division-style {
  position: relative;
  margin: 0 auto;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
  cursor: pointer;
  outline: none;
  color: #19232d;
  line-height: 1.5;
  border-radius: 0.25rem;
}
.division-style:after {
  clear: both;
  content: "";
  display: table;
}
.footer {
  background: #0a0102;
  min-height: 50px;
  border-top: 2px solid #f00;
  text-align: center;
  color: #fff;
  line-height: 50px;
  font-size: 14px;
}
.footer-copy-text {
  text-align: left;
}
.new-contact-heading {
  text-align: center;
  padding-bottom: 5px;
}
.new-contact-heading h4 {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 3px;
}
.new-contact-heading h4:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  height: 1px;
  background: #1da255;
  width: 40px;
}
.new-contact-heading p {
  font-size: 16px;
  margin: 0;
}
/* =====   SINGLE BLOCK STYLE ========*/
.writter-ul {
  margin: 0;
  padding: 0;
}
.writter-ul li {
  list-style-type: none;
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 6px 0;
}
.writter-ul-single {
  background-color: #ffffff;
  padding: 7px 6px;
  display: inline-block;
  margin-bottom: -7px;
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.writter-ul-left {
  float: left;
  width: 30%;
  padding-right: 3%;
}
.writter-ul-left img {
  min-height: 75px;
  border-radius: 50%;
}
.writter-ul-right {
  float: left;
  width: 70%;
  min-height: 63px;
  max-height: 63px;
  overflow: hidden;
}
.writter-ul-right h3 {
  color: #000;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  font-size: 17px;
  line-height: 20px;
  padding-left: 2px;
  transition: all 0.5s ease 0s;
}
.writter-ul-right span {
  font-size: 14px;
  line-height: 14px;
  color: #e74c4f;
}

.online-vot {
  margin-top: 20px;
}
.online-vot-heading {
  text-align: center;
}
.online-vot-heading h2 {
  background: #1da255;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  padding: 5px;
  margin: 0;
}
.vot-body {
  padding: 15px;
  border: 1px solid #ccc;
}
.radio-inline input[type="checkbox"],
.radio-inline input[type="radio"] {
  margin-right: 7px;
}
.writter-ul-single-white {
  background: #fff;
}
.namaj-time {
}
.namaj-time-heading {
  text-align: center;
  /* margin-bottom: 5px; */
}

.namaj-time-table {
  color: #fff;
  font-size: 18px;
}
.namaj-time-table td {
  padding: 0 12px;
  line-height: 36px;
}
.namaj-time-table tbody tr:nth-of-type(odd) {
  background-image: linear-gradient(281deg, #6b8e23, #808000);
}
.namaj-time-table tbody tr:nth-of-type(even) {
  background-image: linear-gradient(281deg, #808000, #6b8e23);
}
.namaj-time-body {
  position: relative;
  display: inline-block;
  width: 100%;
}
.namaj-time-body-left {
  float: left;
  width: 50%;
}
.namaj-time-body-right {
  float: left;
  width: 50%;
}

/*===================  DETAILS PAGE STYLE ==============================*/
.left-content-area {
  float: left;
  width: 63.4%;
}
.right-content-area {
  float: left;
  width: 36.6%;
}
.details-left-content-area {
  padding-top: 25px;
}
.details-right-content-area {
  padding-top: 25px;
}
.details-page-side-banner {
  text-align: center;
}
.details-page-breadcrumb {
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  margin-bottom: 12px;
}
.details-page-breadcrumb li a {
  color: #1a1a1a;
  font-size: 22px;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.details-page-breadcrumb .active a {
  color: #000;
  font-size: 18px;
  line-height: 34px;
  transition: all 0.5s ease 0s;
}
.details-page-breadcrumb .active a:hover {
  color: #1da255;
}
.details-content {
  color: #000000;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 10px 10px 1px;
  margin-bottom: 30px;
  display: inline-block;
  padding-bottom: 10px;
  width: 100%;
}
.details-content h3 {
  margin-top: 10px;
  font-size: 28px;
}
.details-content hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.details-content .small {
  margin: 10px 0;
  display: block;
  margin-bottom: 10px;
}
.details-content p {
  margin: 5px 0;
  font-size: 18px;
  line-height: 26px;
  text-align: justify;
  color: #000;
}
.details-content img {
  margin-bottom: 5px;
  width: 100%;
  height: auto;
}
.details-right-news-heading {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 25px;
}
.details-right-news-heading h2 {
  background: #1da255;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  padding: 5px;
  margin: 0;
}

.details-btn {
  text-align: center;
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.btn-more-details {
  background: #fff;
  color: #000;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  font-size: 18px;
  border: 0;
}
.btn-more-details:hover {
  color: #fff;
}
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition: all 0.5s ease 0s;
  text-decoration: none;
}
.hvr-bounce-to-right::before {
  background: #1da255;
  color: #ffffff;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-more-details:hover {
  color: #fff;
}
.hvr-bounce-to-right:active,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:hover {
  color: #fff;
}
.hvr-bounce-to-right:active:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.facebook-comment-box {
  border: 1px solid #dadada;
  margin-bottom: 20px;
  background: #fff;
}
.fb-h2 {
  background: #e6e6e6;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #131313;
  margin: -1px -1px 0;
}
.details-news-single {
  margin-bottom: 21px;
}
.details-news-single-text {
  background-color: #fff;
  padding: 5px;
  max-height: 70px;
  min-height: 70px;
  overflow: hidden;
}
.details-news-single-text h3 {
  margin: 0;
  font-size: 17px;
  line-height: 21px;
  color: #000;
}
.details-news-single-text span {
  color: #e74c4f;
  font-size: 14px;
  line-height: 14px;
}
.details-news-single a:hover {
  color: #000;
}

.details-tab-container {
  margin-bottom: 25px;
}
.detail-least-news-ul {
}
.detail-least-news-ul .least-news-left img {
  min-height: unset;
  max-height: unset;
}
.detail-least-news-ul .least-news-right h3 {
  padding-left: 2px;
  font-size: 18px;
  line-height: 24px;
}
/*================================================
  MODERN SIDEBAR STYLES (New Classes)
==================================================*/
.modern-sb-wrapper {
    padding-left: 15px;
    background: #fff;
}

.modern-sb-ads {
    margin-bottom: 25px;
    text-align: center;
}

/* Section Headings */
.modern-sb-header {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f1f1;
}

.modern-sb-header h2 {
    font-size: 19px;
    font-weight: 700;
    color: #222;
    display: inline-block;
    border-bottom: 2px solid #e74c4f; /* Red Accent */
    padding-bottom: 8px;
    margin-bottom: -2px;
}

/*================================================
  TOP 10 GRID (2 Columns)
==================================================*/
.modern-sb-grid-item {
    margin-bottom: 20px;
}

.modern-sb-grid-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.modern-sb-grid-link:hover {
    transform: translateY(-3px);
}

.modern-sb-grid-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    height: 95px; /* Fixed height */
    width: 100%;
}

.modern-sb-grid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-sb-grid-link:hover .modern-sb-grid-thumb img {
    transform: scale(1.08);
}

.modern-sb-grid-link h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
    margin: 0;
    /* Limit to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.modern-sb-grid-link:hover h3 {
    color: #e74c4f;
}

/*================================================
  MODERN TABS (Latest / Popular)
==================================================*/
.modern-sb-tab-wrapper {
    margin-top: 35px;
}

.modern-sb-nav {
    display: flex;
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 15px;
    padding: 0;
    width: 100%;
}

.modern-sb-nav .nav-item {
    width: 50%;
    text-align: center;
    list-style: none;
}

.modern-sb-nav .nav-link {
    display: block;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #777;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-sb-nav .nav-link.active,
.modern-sb-nav .nav-link:hover {
    background: transparent;
    color: #e74c4f;
    border-bottom: 2px solid #e74c4f;
}

/* Tab Scroll Area */
.modern-sb-tab-body {
    max-height: 580px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Scrollbar */
.modern-sb-tab-body::-webkit-scrollbar {
    width: 5px;
}
.modern-sb-tab-body::-webkit-scrollbar-track {
    background: #f9f9f9;
}
.modern-sb-tab-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

/*================================================
  LIST ITEMS (Inside Tabs)
==================================================*/
.modern-sb-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.modern-sb-list-item {
    border-bottom: 1px solid #eee;
}

.modern-sb-list-item:last-child {
    border-bottom: none;
}

.modern-sb-list-link {
    display: flex;
    padding: 12px 0;
    text-decoration: none;
    align-items: flex-start;
}

.modern-sb-list-thumb {
    flex: 0 0 90px;
    height: 65px;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.modern-sb-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.modern-sb-list-link:hover .modern-sb-list-thumb img {
    transform: scale(1.1);
}

.modern-sb-list-info {
    flex: 1;
}

.modern-sb-list-info h3 {
    font-size: 18px;
    line-height: 1.35;
    margin: 0;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
}

.modern-sb-list-link:hover .modern-sb-list-info h3 {
    color: #e74c4f;
}
/*===================  DETAILS PAGE STYLE ==============================*/

/*====================== Modern Category Style New ==========================*/
/* --- Modern Category Styles --- */

/*====================== CATAGORY STYLE NEW END ==========================*/
.category-content {
}
.category-content-lead {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 18px;
}

.category-content-lead-left {
  float: left;
  width: 60%;
}
.category-content-lead-right {
  float: left;
  width: 40%;
  background: #fff;
  padding: 19px 20px;
}
.category-content-lead-right span {
  font-size: 14px;
  line-height: 14px;
  color: #e74c4f;
}
.category-content-lead-right h1 {
  font-size: 24px;
  line-height: 28px;
  margin: 0;
  color: #000;
  padding: 0 1px;
}
.category-content-lead-right p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  padding: 0 1px;
}
.category-content-lead-right-text {
  max-height: 208px;
  min-height: 208px;
  overflow: hidden;
}
.category-content-single {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  background: #fff;
}
.category-content-single a {
  /* margin-bottom: -5px;
  display: inline-flex; */
}
.category-content-single-left {
  float: left;
  width: 45%;
  padding-right: 2%;
}
.category-content-single-right {
  float: left;
  width: 55%;
  padding-right: 2%;
  padding-top: 5px;
  max-height: 93px;
  min-height: 93px;
  overflow: hidden;
}
.category-content-single-right span {
  color: #e74c4f;
  font-size: 14px;
  line-height: 14px;
}
.category-content-single-right h2 {
  padding-left: 2px;
  font-size: 18px;
  line-height: 22px;
  margin: 0;
  color: #000;
}
.category-content-btn {
}
/* --- Tool Bar CSS --- */
.tool-bar-area {
    display: flex;
    justify-content: flex-end; /* Aligns to right like the image */
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tool-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    text-decoration: none !important;
}

.tool-btn:hover {
    background: #f0f0f0;
    color: #000;
    border-color: #bbb;
}

/* Specific colors for specific buttons if you want */
.tool-btn.fb-share:hover { color: #1877f2; border-color: #1877f2; }
.tool-btn.link-copy:hover { color: #28a745; border-color: #28a745; }
.tool-btn.text-size:hover { background: #333; color: #fff; }

/* Ensure the article body has a default transition for smooth resizing */
/* --- Article Body Wrapper (The Parent) --- */
#article-body-content {
    font-size: 20px; /* Sets the DEFAULT starting size */
    line-height: 34px;
    transition: font-size 0.2s ease, line-height 0.2s ease;
    color: #222;
}

/* --- Inner Elements (The Children) --- */
/* This forces all paragraphs to follow the Parent's size */
#article-body-content p, 
#article-body-content span, 
#article-body-content div, 
#article-body-content font,
#article-body-content b,
#article-body-content strong {
    font-size: inherit;   /* Matches the parent (20px) */
    line-height: inherit; /* Matches the parent (34px) */
}

/* Keep headers distinct so they don't become tiny */
#article-body-content h1, 
#article-body-content h2, 
#article-body-content h3, 
#article-body-content h4 {
    line-height: 1.4 !important;
    font-size: 1.5em !important; /* Scales relative to body text */
}
/*====================== CATAGORY PAGE TAB ==========================*/
.right-category-tab {
  margin-bottom: 27px;
}
.category-page-tab {
  width: 100%;
  margin-top: 27px;
}
.category-page-tab .nav-item {
  display: block;
  float: left;
  width: 33.33%;
}
.category-page-tab .nav-item .nav-link {
  transition: background-color 0.3s 0s;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #ff0000;
  border-radius: 0;
  padding: 9px 0;
  border-top: 3px solid transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.category-page-tab .nav-link.active {
  background: #fff;
  color: #19232d;
  border-top: 3px solid #e74c4f;
}
.category-page-least-news {
  max-height: 399px;
  overflow-y: auto;
}

.allnews-title {
  position: relative;
}
.all-news-btn {
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition-duration: 0.5s;
  background: #ff0000;
  color: white;
  font-size: 18px;
  padding: 5px 10px 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
  display: block;
  width: 100%;
  border-radius: 0;
}
.all-news-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.all-news-btn:hover {
  color: #ff0000;
}
.all-news-btn:focus:before,
.all-news-btn:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.allnews-title-2 {
  position: relative;
}
.allnews-title-2 a {
  display: block;
  text-align: center;
  border: none;
  padding: 5px;
  color: #000;
  background: #f6f6f6;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -o-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.allnews-title-3 {
  position: relative;
}
.all-news-btn-2 {
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition-duration: 0.5s;
  background: #ff0000;
  color: white;
  font-size: 18px;
  padding: 5px 10px 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
  display: block;
  width: 100%;
  border-radius: 0;
}
.all-news-btn-2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.all-news-btn-2:hover {
  color: #19232d;
}
.all-news-btn-2:focus:before,
.all-news-btn-2:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.btn-more {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-more-wrapper {
  position: relative;
  padding-bottom: 20px;
}
.main-banner-category {
  padding-top: 30px;
}
.lead-news-heading-small span {
  color: #e74c4f;
  font-size: 14px;
  line-height: 14px;
}
/*====================== VIDEO GALLERY STYLE ==========================*/
.video-breadcum {
  margin-top: 25px;
  margin-bottom: 20px;
}
.video-gallery-category {
  position: relative;
  background: #fff;
  margin-bottom: 24px;
}
.video-category-img {
  position: relative;
}
.video-category-img .fa {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  padding: 5px 7px;
  position: absolute;
  z-index: 1;
  color: #ff0000;
}
.video-heading {
  padding: 6px 5px 0;
  min-height: 72px;
  max-height: 72px;
  overflow: hidden;
}
.video-heading h2 {
  font-size: 17px;
  line-height: 22px;
  color: #000;
  margin: 0;
}
.more-video {
}

/*====================== PHOTO GALLERY WRAPPER ==========================*/
.photo-gallery-wrapper {
  padding: 30px 0 40px;
}
.photo-gallery-left {
  float: left;
  width: 64%;
}
.photo-gallery-right {
  float: left;
  width: 36%;
}
.photo-gallery-heading {
  border-bottom: 3px double #ff0000;
  margin-bottom: 12px;
}
.photo-gallery-heading h2 {
  font-size: 28px;
  padding-bottom: 5px;
  margin-bottom: 1px;
  border-bottom: 1px solid #ff0000;
}
.photo-gallery-heading a:hover {
  color: #000;
}
#gallery-images-section .owl-nav {
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
}
#gallery-images-section .owl-prev,
.owl-next {
  border: 0px;
  text-align: center;
  border-radius: 5%;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #ff0000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
#gallery-images-section .owl-prev .fa,
#gallery-images-section .owl-next .fa {
  font-size: 35px;
  line-height: 35px;
}
#gallery-images-section .owl-prev:focus,
.owl-next:focus {
  border: 0px;
}
#gallery-images-section .owl-prev:hover,
.owl-next:hover {
  background: #ffffff;
  color: #ff0000;
}
#gallery-images-section .owl-prev {
  float: left;
  position: relative;
}
#gallery-images-section .owl-next {
  float: right;
  position: relative;
}
#gallery-images-section .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  text-align: center;
}
#gallery-images-section .owl-dots {
  margin-top: 5px;
  text-align: center;
}
#gallery-images-section .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
#gallery-images-section .owl-dots .owl-dot.active span,
#gallery-images-section .owl-dots .owl-dot:hover span {
  background: #869791;
}
#gallery-images-section .photo-gallery-text {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: left;
  font-size: 18px;
  color: #ffffff;
  z-index: 10;
  zoom: 1;
  text-rendering: optimizeLegibility;
}
.photo-gallery-ul {
  margin: 0;
  padding: 0;
}
.photo-gallery-ul li {
  list-style: none;
  display: inline-block;
  width: 100%;
}
.photo-gallery-ul li a {
  position: relative;
  display: inline-block;
  padding: 7px 7px;
  background: #ffffff;
  width: 100%;
  margin-bottom: 2px;
}
.photo-gallery-ul li a .fa {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  padding: 5px 7px;
  position: absolute;
  z-index: 1;
  color: #1da255;
  left: 7px;
}
.photo-gallery-ul-left {
  width: 40%;
  float: left;
  padding-right: 2%;
}
.photo-gallery-ul-right {
  float: left;
  width: 60%;
  overflow: hidden;
  padding: 5px;
  max-height: 83px;
  min-height: 83px;
}
.photo-gallery-ul-right h2 {
  font-size: 18px;
  color: #000;
  line-height: 20px;
  margin: 0;
}
.photo-gallery-ul li a img {
  /* transition: all 0.3s ease-in; */
}
.photo-gallery-ul li a:hover img {
  opacity: 0.85;
}
/*====== NEW PHOTOGALLERY DETAISL PAGE STYLE ======*/
.details-photo-gallery {
  background: #fff;
  padding: 7px;
}
.details-photo-gallery-heading {
  position: relative;
  padding: 5px;
}
.details-photo-gallery-heading h1 {
  margin: 0;
  font-size: 30px;
  line-height: 32px;
  color: #000;
}
#lightgallery {
  margin: 0;
  padding: 0;
}
#lightgallery li {
  position: relative;
}
#lightgallery li a img {
  padding: 10px 0;
}
#lightgallery li a {
  cursor: zoom-in;
}
#lightgallery li p {
  font-size: 18px;
  color: #000;
  margin: 0;
  line-height: 20px;
  margin-bottom: 5px;
}
#lightgallery li .icon-box {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 10px;
}
#lightgallery li .icon-box i {
  color: #fff;
  padding: 10px 13px;
  background: rgba(0, 166, 81, 0.7);
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
}
.photo-gallery-more-news-row {
  margin-top: 24px;
}
.photo-gallery-more-news {
  position: relative;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}
.gallery-more-news-image {
  position: relative;
}
.gallery-more-news-image .fa {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  padding: 5px 7px;
  position: absolute;
  z-index: 1;
  color: #e74c4f;
}
.gallery-more-news-heading {
  padding: 6px 5px 0;
  min-height: 72px;
  max-height: 72px;
  overflow: hidden;
}
.gallery-more-news-heading h3 {
  font-size: 17px;
  line-height: 22px;
  color: #000;
  margin: 0;
}
.top-nav-main {
  z-index: 999;
}

.category-page h2 .fa {
  color: #1da255;
}
.district-wrapper {
  background: #fff;
  padding: 10px;
  margin-bottom: 25px;
}
.district-ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
}
.district-ul li {
  display: inline-block;
}
.district-ul li a {
  border: 1px solid #1da255;
  display: block;
  background: #fff;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  transition: 0.5s;
  padding: 2px 10px;
  margin: 2px 0;
}
.district-ul li a:hover {
  background: #1da255;
  color: #fff;
}
.details-page-breadcrumb .active {
  color: #000;
  font-size: 18px;
  line-height: 34px;
  transition: all 0.5s ease 0s;
}

/*================================================
  VOTE PAGE DETAILS STYLE
==================================================*/
.vote-details {
  width: 100%;
  position: relative;
}
.vote-details h1 {
  font-size: 28px;
  padding-bottom: 5px;
  margin-bottom: 1px;
  border-bottom: 1px solid #ff0000;
}
.vote-detils-heading {
  border-bottom: 3px double #ff0000;
  margin-bottom: 12px;
}
.vote-main {
  padding: 10px 5px;
  border-bottom: 3px dashed #ff0000;
}
.vote-date h2 {
  font-size: 18px;
  margin-top: 5px;
}
.vote-title h2 {
  font-size: 22px;
  line-height: 30px;
  margin-top: 10px;
}

.pagination-details {
  margin-top: 25px;
  text-align: center;
  padding-bottom: 20px;
}
.pagination-details .pagination li a {
  color: #ff0000;
}

.right-top-banner {
  text-align: center;
}
.sports-banner-top-1 {
  text-align: center;
  margin-top: 46px;
}
.sports-banner-top-1 img {
  height: 218px;
}
.sports-banner-2 {
  text-align: center;
}

.tag-ul {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}
.tag-ul li {
  color: #000;
  list-style: none;
  display: inline-block;
}
.tag-ul li:first-child {
  font-size: 15px;
}
.tag-ul li a {
  color: #ff0000;
  border: 1px solid #ff0000;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 15px;
  transition: 0.5s;
}

.details-bottom-more-news-title {
  margin-bottom: 15px;
  position: relative;
}
.details-bottom-more-news-title:before {
  position: absolute;
  content: "";
  width: 100%;
  border-top: 2px solid #ff0000;
  display: inline-block;
  vertical-align: bottom;
  left: 0;
  bottom: -2px;
  z-index: 9;
}
.details-bottom-more-news-title h3 {
  background-color: #ff0000;
  margin: 0;
  color: #fff;
  left: 10px;
  display: inline-block;
  font-size: 20px;
  padding: 7px 20px;
  position: relative;
  transform: rotate(0deg) scale(1.003) skew(-26deg) translate(0px);
  -webkit-transform: rotate(0deg) scale(1.003) skew(-26deg) translate(0px);
  -moz-transform: rotate(0deg) scale(1.003) skew(-26deg) translate(0px);
  -o-transform: rotate(0deg) scale(1.003) skew(-26deg) translate(0px);
  -ms-transform: rotate(0deg) scale(1.003) skew(-26deg) translate(0px);
}
.details-bottom-more-news-title span {
  color: #fff;
  position: relative;
  display: block;
  transform-style: flat;
  -webkit-transform-style: flat;
  -moz-transformtransform-style: flat;
  -ms-transform-style: flat;
  transform: rotate(0deg) scale(1.003) skew(26deg) translate(0px);
  -webkit-transform: rotate(0deg) scale(1.003) skew(26deg) translate(0px);
  -moz-transform: rotate(0deg) scale(1.003) skew(26deg) translate(0px);
  -o-transform: rotate(0deg) scale(1.003) skew(26deg) translate(0px);
  -ms-transform: rotate(0deg) scale(1.003) skew(26deg) translate(0px);
}
.details-more-news-single {
  margin-bottom: 24px;
}
.details-more-news-single-text {
  padding: 4px 7px;
  background: #fff;
  min-height: 92px;
  max-height: 92px;
  overflow: hidden;
}
.details-more-news-single-text span {
  color: #e74c4f;
  font-size: 14px;
  line-height: 14px;
}
.details-more-news-single-text h3 {
  font-size: 17px;
  line-height: 22px;
  margin: 0;
  color: #000;
}
.details-more-news-single a:hover img {
  opacity: 0.85;
}
.image-caption {
  background: #e9ecef;
  margin-top: -5px;
  text-align: center;
  font-size: 18px;
  padding-bottom: 4px;
}
