/*
 Theme Name:   SRI NEWS
 Theme URI:    https://www.srijonix.com
 Description:  This Theme Develop and Customize by Srijonix
 Author:       srijonix.com
 Author URI:   https://www.srijonix.com
 Template:     generatepress
 Version:      1.0
*/
#mobile-header .inside-navigation, .main-navigation {
    border-bottom-color: rgba(0, 0, 0, .05) !important;
    box-shadow: 0 2px 8px 0 rgba(16, 7, 104, .07) !important;
    position: relative;
}

h3 {
 display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}/* GeneratePress Site CSS */ 


.lwptoc_item_number {
    background-color: #efefff;
    border-radius: 50px;
    padding: 0px 5px 0px 5px;
    font-size: 12px;
    font-weight: bold;
    color: red;
}

.lwptoc .lwptoc_i {
    border-radius: 10px;
}

.entry-content ul {
    list-style: none;
    margin-left: 25px;
    padding-left: 30px;
    position: relative;
    counter-reset: section;
	line-height: 1.8;
	
}

.entry-content ul li:before {
    counter-increment: section;
    content: counter(section);
    padding-right: px;
margin-top: 7px;
    border-right: 2px solid #ff0000;
	border-bottom: 0.05px solid #ff0000;
    position: absolute;
    left: 0;
	width: 20px; /* Reduced circle size */
    height: 20px; /* Reduced circle size */
    background-color: #0E80FF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

blockquote {
    background: #fff;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    font-style: inherit;
    border-left: 7px solid #2457d8;
	border-radius: 10px;
    box-shadow: rgba(23, 43, 99, .1) 0 3px 10px;
    padding: 10px;
    margin: 0 0 1.5em;
}

blockquote::after {
    content: '✦';
    position: absolute;
    left: -12px;
    top: -15px;
    font-size: 30px;
    min-width: 15px;
    text-align: center;
    color: #ffbd59;
}

.size-full {
    border-radius: 8px;
    margin-top: -22px;
    margin-bottom: -20px;
}


mark.gb-highlight {
    position: relative;
    padding-bottom: 0px;
    border-bottom: 2px solid transparent; /* Hide the main border */
}

mark.gb-highlight:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 2.2px;
    width: 0;
    background-color: var(--contrast); /* Color of the border */
    animation: borderExpand 0.6s ease forwards; /* Left-to-right animation */
}

@keyframes borderExpand {
    0% {
        width: 0; /* Start from left */
    }
    100% {
        width: 100%; /* Expand to full width */
    }
}

.dharona {
    font-weight: bold;
    background: linear-gradient(90deg, #f5ac00, rgba(255, 0, 0, 1), #f5ac00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     animation: colorRotate 6s ease-in-out infinite;
}

@keyframes colorRotate {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 200% 50%;
    }
    75% {
        background-position: 300% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}

.share-button {
    background-color: #2D3A65;
    color: white;
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.share-icon {
    font-size: 1px;
	margin-right: 5px;
}

/* Style the search box container */
.custom-search-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1px 1px;
    max-width: 450px;
	height: 45px;
	/* Adjust width as needed */
    margin-top: 15px;
	margin-bottom: 25px;
}

/* Style the search input */
.custom-search-box input[type="text"] {
    border: none;
    outline: none;
    flex: 1;
    padding: 12px;
    font-size: 14px;
    background: none;
    margin-left: -25px;
}

/* Style the voice icon button */
.custom-search-box .voice-icon {
    background: none;
    border: 0px;
    cursor: pointer;
    font-size: 0px;
    color: #4285f4; /* Blue color for the voice icon */
    margin-right: 1px;
}

/* Style the search icon button */
.search-icon {
    background: white;
    border: none;
	border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #333; 
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 8px;
	padding-right: 8px;
	margin-right: 10px;
	margin-top: 5px;
	align-items: center;
	/* Black color for the search icon */
}

.custom-search-box .search-icon:hover {
    background-color: #555; 
	color: white;
	border-radius: 50%;
    transition: background-color 0.3s ease; /* Smooth transition for hover */
}

.block-related-posts {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.block-related-posts h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
	border-left: 5px solid red;
	font-weight: bold;
	padding-left: 5px;
}

.block-related-posts-grid {
    display: flex;
    gap: 20px; /* Space between posts */
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling experience */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    scrollbar-width: none; /* Hide scrollbar for modern browsers */
	background: #D4EBF8;
	padding: 15px;
	border-radius: 8px 0px 0px 8px;
}

.block-related-posts-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}

.block-related-post {
    flex: 0 0 250px; /* Fixed width for each post block */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.block-related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.block-related-post a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.block-related-post .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
    transition: opacity 0.3s;
}

.block-related-post .post-thumbnail img:hover {
    opacity: 0.9; /* Slight hover effect on images */
}

.block-related-post .post-title {
    font-size: 16px;
    margin: 10px;
    color: #2D3663;
    text-align: left;
    line-height: 1.4;
	font-weight: 600;
}

.block-related-post .post-title:hover {
    color: #0b419e;
}


/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999999;
    justify-content: center;
    align-items: flex-start;
	backdrop-filter: blur(5px);
}

.search-modal-content {
    background: white;
    padding: 80px 15px 15px 15px;
    border-radius: 0px 0px 10px 10px;
    width: 100%;
    max-width: 900px;
    margin: 0px auto 0;
    position: relative;
    display: flex;
    align-items: center;
	z-index: 9999999;
    animation: slide-down 0.3s ease-out;
}

@keyframes slide-down {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-down {
    animation: slide-down 0.3s ease-out;
}

/* Inline Search Icon */
.search-form {
    display: flex;
    align-items: center;
    position: relative;
	width: 100%;
}

.search-icon-ft {
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #666;
}

.search-form input {
    padding: 10px 10px 10px 10px; /* Add padding for the icon */
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-form button {
    padding: 10px 20px;
    margin-left: 10px;
    background: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

span#close-search-modal {
    position: absolute;
	top: 10px;
    color: black;}



/* For larger devices (tablets and desktops), adjust the width */
@media (min-width: 768px) {
    #savePdfButton {
        width: auto; /* Adjust width to fit the content */
    }
}

.wp-button {
    position: fixed;
    bottom: 200px; /* Adjust this value to move the button up from the footer */
    right: 2px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    animation: beat 1.5s infinite;
    z-index: 1000; /* Ensure the button stays on top of other content */
    background-color: transparent; /* Make the main button background transparent */
}

.wp-button:hover {
    transform: scale(1.05);
}

.wp-button a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 10px 2px;
}

.wp-button:hover .wp-button-text {
            animation: none; /* Stop the shrink animation on hover */
        }

.wp-button-text {
    font-size: 11px;
    margin-right: 1px;
    animation: shrink 1.5s infinite;
	background-color: #00A36C;
	 padding: 3px 8px;
	border-radius: 50px;
}

@keyframes shrink {
    100%, 100% {
        transform: scale(1);
    }
    20% {
        transform: scale(0.9);
    }
}


.tg-button {
    position: fixed;
    bottom: 110px; /* Adjust this value to move the button up from the footer */
    left: 10px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    animation: beat 1.5s infinite;
    z-index: 1000; /* Ensure the button stays on top of other content */
    background-color: transparent; /* Make the main button background transparent */
}

.tg-button:hover {
    transform: scale(1.05);
}

.tg-button a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 10px 2px;
}

.tg-button:hover .tg-button-text {
            animation: none; /* Stop the shrink animation on hover */
        }

.tg-button-text {
    font-size: 11px;
    margin-right: 20px;
    animation: shrink 1.5s infinite;
	background-color: #1E90FF;
	 padding: 3px 8px;
	border-radius: 50px;
}

@keyframes shrink {
    100%, 100% {
        transform: scale(1);
    }
    20% {
        transform: scale(0.9);
    }
}

/* Hide the button on desktop */
.tg-button, .wp-button {
    display: none;
}
/* Button Visibility - Show Only on Mobile */
@media screen and (max-width: 768px) {
    .tg-button, .wp-button {
        display: flex;
    }
}


 /* Main Container Style */
    .job-table-container {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        margin-bottom: 20px;
        max-width: 100%;
    }

    /* Header Design */
    .job-table-header {
        background-color: #1a3b8e;
        color: #ffffff;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: 700;
        border-bottom: 1px solid #1a3b8e;
    }

    /* Table Structure */
    .custom-job-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }

    /* Table Head */
    .custom-job-table thead th {
        background-color: #f1f3f5;
        color: #6c757d;
        font-size: 13px;
        text-transform: uppercase;
        padding: 12px 15px;
        font-weight: 600;
        border-bottom: 1px solid #dee2e6;
    }

    /* Table Rows */
    .custom-job-table tbody td {
        padding: 15px;
        border-bottom: 1px solid #e9ecef;
        vertical-align: middle;
    }

    /* Elements Styling */
    .job-name-text {
        color: #212529;
        font-weight: 700;
        font-size: 15px;
        line-height: 1.4;
        text-decoration: none;
        display: block;
    }
    .job-name-text:hover { color: #1a3b8e; }

    .job-details-box {
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 14px;
        font-weight: 500;
    }
    .vacancy-count {
        color: #198754;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .last-date {
        color: #dc3545;
        font-size: 13px;
        font-weight: 600;
    }

    .view-btn {
        background-color: #1a3b8e;
        color: white;
        text-decoration: none;
        padding: 8px 18px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        display: inline-block;
        transition: background 0.2s;
        text-align: center;
    }
    .view-btn:hover { background-color: #132c6b; }

    /* =========================================
       MOBILE OPTIMIZATION (No Scroll, Card Layout)
       ========================================= */
    @media screen and (max-width: 600px) {
        
        /* 1. টেবিল হেড লুকিয়ে ফেলব */
        .custom-job-table thead {
            display: none;
        }

        /* 2. টেবিল রো-গুলোকে এক একটা কার্ড (Card) বানিয়ে দেব */
        .custom-job-table tbody, 
        .custom-job-table tr, 
        .custom-job-table td {
            display: block;
            width: 100%;
            box-sizing: border-box; /* Padding এর কারণে যাতে সাইজ না বাড়ে */
        }

        .custom-job-table tr {
            margin-bottom: 10px;
            border-bottom: 2px solid #f1f1f1; /* দুটো জবের মাঝখানে গ্যাপ */
        }

        /* 3. কন্টেন্টগুলো সাজানো */
        .custom-job-table td {
            padding: 8px 15px;
            border: none; /* ডিফল্ট বর্ডার রিমুভ */
            text-align: left;
        }

        /* Job Name একটু বড় দেখাবে */
        .custom-job-table td:first-child {
            padding-top: 15px;
        }

        /* Details (Vacancy & Date) পাশাপাশি থাকবে */
        .job-details-box {
            flex-direction: row; /* পাশাপাশি */
            flex-wrap: wrap;
            justify-content: space-between;
            background: #f8f9fa;
            padding: 8px;
            border-radius: 4px;
        }

        /* Button পুরো চওড়া (Full Width) হবে */
        .view-btn {
            display: block;
            width: 100%; 
            margin-bottom: 10px;
        }
    }

/* Ticker Container */
.job-ticker-wrap {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: 2px solid #b71c1c; /* Red Border */
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-family: sans-serif;
    margin-bottom: 15px; /* Niche ektu gap */
}

/* Left Heading (Red Box) */
.ticker-heading {
    background: #d32f2f; /* Dark Red */
    color: #fff;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    z-index: 10;
    
	max-width: 250px;
}

/* Arrow Effect */
.ticker-arrow {
    position: absolute;
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-left: 10px solid #d32f2f;
    border-bottom: 0px solid transparent;
}

/* Scrolling Area */
.ticker-content {
    flex-grow: 1;
    padding-left: 15px;
    display: flex;
    align-items: center;
}

/* Links Style */
.ticker-item {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ticker-item a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.ticker-item a:hover {
    color: #d32f2f;
    text-decoration: underline;
}

/* Decoration Icons */
.dot-icon {
    color: #d32f2f;
    font-size: 10px;
}

/* Blinking New Badge */
.new-blink {
    background: red;
    color: white;
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* Mobile Fixes */
@media (max-width: 600px) {
    .ticker-heading {
        min-width: 80px;
        padding: 0;
        justify-content: center;
    }
    .ticker-heading span { display: none; } /* Text hide hobe */
    .ticker-heading:before { content: ""; font-size: 16px; } /* Icon Ashbe */
}


/* Container govt job Style */
    .quick-links-container {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        margin: 10px 0;
        width: 100%;
    }

    /* Scrollable Area (Modified for Wrap) */
    .quick-links-scroll {
        display: flex;
        gap: 10px; /* Gap between cards */
        flex-wrap: wrap; /* This makes items wrap to the next line */
        justify-content: center; /* Centers the items */
        padding: 5px;
    }

    /* Individual Card Style */
    .q-card {
        width: 138px; /* Fixed width for better grid alignment */
        height: 90px;
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #333;
        transition: transform 0.2s, box-shadow 0.2s;
        /* flex-shrink removed because wrapping handles size */
    }

    /* Hover Effect (Desktop) */
    .q-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: #0056b3;
    }

    /* Icon Style */
    .q-icon {
        color: #0056b3; /* Icon Blue Color */
        margin-bottom: 8px;
    }

    /* Text Style */
    .q-text {
        font-size: 13px;
        font-weight: 600;
        color: #444;
        text-align: center;
    }

    /* Mobile Specific Tweaks (Optional but recommended) */
    @media (max-width: 480px) {
        .q-card {
            width: calc(33.33% - 10px); /* 3 items per row on small screens */
            min-width: 80px; /* Prevent becoming too small */
            height: 85px;
        }
        .q-text {
            font-size: 12px; /* Slightly smaller text on mobile */
        }
    }

/* Sidebar Container */
.sidebar-update-box {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Header Design (Blue) */
.update-header {
    background-color: #0056b3; /* Dark Blue matching image */
    color: #fff;
    padding: 12px 15px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Lightning Icon */
.bolt-icon {
    color: #fff;
}

/* List Items */
.update-list {
    display: flex;
    flex-direction: column;
}

.update-item {
    display: flex;
    align-items: flex-start; /* Icon top e thakbe jodi text boro hoy */
    gap: 10px;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    font-size: 15px;
    line-height: 1.5;
}

.update-item:last-child {
    border-bottom: none;
}

.update-item:hover {
    background-color: #f9fbfd;
    color: #0056b3;
}

/* Blue Arrow Icon */
.arrow-icon {
    color: #0056b3;
    flex-shrink: 0; /* Icon jate chapa na hoy */
    margin-top: 3px; /* Text er sathe align korar jonno */
    font-weight: bold;
}

/* Update Text */
.update-text {
    font-weight: 500;
}

/* NEW Badge (Red Text) */
.new-badge-text {
    color: #dc3545; /* Red Color */
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 5px;
    animation: blinker 1.5s linear infinite;
}

/* Blinking Animation */
@keyframes blinker {
    50% { opacity: 0.5; }
}

/* Main Container */
    .routine-container {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        border: 1px solid #e0e0e0;
        border-radius: 8px; /* Rounded corners */
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        max-width: 100%;
    }

    /* Header Design (Teal Theme for Routine) */
    .header-routine {
        background-color: #e0f2f1; /* Light Teal Background */
        color: #00695c; /* Dark Teal Text */
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 2px solid #b2dfdb;
    }

    /* Table Wrapper for Mobile Scroll */
    .table-responsive {
        overflow-x: auto;
    }

    /* Table Style */
    .routine-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 300px; /* Ensures layout on mobile */
    }

    /* Table Head */
    .routine-table thead th {
        background-color: #fafafa;
        color: #616161;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    /* Table Body */
    .routine-table tbody td {
        padding: 15px;
        border-bottom: 1px solid #f5f5f5;
        vertical-align: middle;
        color: #333;
    }
    .routine-table tbody tr:last-child td {
        border-bottom: none;
    }

    /* Date Box Style */
    .date-box {
        line-height: 1.2;
    }
    .date-day {
        font-weight: 800;
        font-size: 15px;
        color: #004d40;
        display: block;
    }
    .date-year {
        font-size: 12px;
        color: #757575;
    }

    /* Exam Name Link */
    .exam-name {
        font-weight: 600;
        font-size: 15px;
        color: #212121;
        text-decoration: none;
        display: block;
        line-height: 1.4;
    }
    .exam-name:hover {
        color: #009688; /* Hover Color */
    }

    /* View/Download Button */
    .btn-routine {
        background-color: #00897b; /* Teal Button */
        color: white;
        padding: 8px 18px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        display: inline-block;
        white-space: nowrap;
        transition: background 0.2s;
    }
    .btn-routine:hover {
        background-color: #00695c;
    }

/* Container Box */
.lu-container {
    border: 1px solid #e0e4e8;
    border-radius: 12px;
    padding: 25px 30px;
    background-color: #ffffff;
    margin: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* Header Style */
.lu-header {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1a3673; /* গাঢ় নীল */
    margin-bottom: 30px;
}

.lu-icon {
    color: #d32f2f; /* লাল রঙের টার্গেট আইকন */
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

/* Grid Layout */
.lu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    align-items: center;
}

/* Individual Post Item */
.lu-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.lu-thumb {
    flex-shrink: 0;
    width: 110px;
}

.lu-thumb img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}

/* Post Content */
.lu-content h3 {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.lu-content h3 a {
    color: #1a3673; /* টাইটেলের নীল রঙ */
    text-decoration: none;
    transition: color 0.3s ease;
}

.lu-content h3 a:hover {
    color: #d32f2f;
}

.lu-date {
    font-size: 13px;
    color: #4a75b5; /* হালকা নীল তারিখের রঙ */
    font-weight: 500;
}

/* View All Button Area */
.lu-view-all-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-left: 10px;
}

.lu-view-all-btn {
    background-color: #f4f7fb;
    color: #1a3673;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.lu-view-all-btn:hover {
    background-color: #e2eaf4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lu-container {
        padding: 20px 15px;
    }
    .lu-grid {
        grid-template-columns: 1fr; /* মোবাইলে এক কলাম */
        gap: 20px;
    }
    .lu-view-all-wrapper {
        justify-content: center;
        margin-top: 10px;
    }
}