   :root {
            --main-red: #d32f2f;
            --header-bg: #ffffff;
            --social-filter: none;
        }

        [data-bs-theme="dark"] {
            --header-bg: #1e1e1e;
            --social-filter: invert(1);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            transition: background-color 0.3s ease;
        }

		.news-carousel-section { background-color: #29ae5e}
		.news-carousel-section .content-section { background-color: #0d5130; border-radius: 0px;}

.owl-theme .owl-nav [class*='owl-'] { border-radius: 50%; height: 40px; width: 40px;}


        /* Sticky Header */
        .header-wrapper {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: var(--header-bg);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .top-bar {
            padding: 0;
            border-bottom: 1px solid #ccc;
        }

        .logo img {
            max-height: 85px;
            width: auto;
        }

        /* Navigation */
        .nav-bar {
            background: #fff;
    
        }

        .nav-link {
            color: #333;
            font-weight: 700;
            padding: 12px 18px !important;
            text-decoration: none;
        }

		.rounded-pill  { background-color: #f3f4f6; border-radius: 6px !important;}
		
        /* Custom Theme Toggle from Image */
        .theme-img-btn {
            width: 35px;
            height: 35px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        [data-bs-theme="dark"] .theme-img-btn {
            filter: invert(1);
        }

        /* Social Icons */
        .social-icon {
            width: 20px;
            height: 20px;
            margin: 0 5px;
            filter: var(--social-filter);
            transition: opacity 0.2s;
        }
        .social-icon:hover { opacity: 0.7; }

        /* Search Box */
        .search-container { position: relative; }
        .search-icon-svg {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            filter: grayscale(1);
        }

        .offcanvas { width: 280px !important; }

.logo-light { display: block;}
.logo-dark { display: none;}
		
		        /* Dark Mode Custom Overrides */
        [data-bs-theme="dark"] {
            --header-bg: #111827;
        }

        [data-bs-theme="dark"] .nav-bar, 
        [data-bs-theme="dark"] .top-bar {
            background-color: #111827 !important;
            border-color: #333;
        }
        [data-bs-theme="dark"] .nav-link {
            color: #ddd;
        }
        [data-bs-theme="dark"] .date-display {
            color: #aaa;
        }

[data-bs-theme="dark"] .logo-light { display: none;}
[data-bs-theme="dark"] .logo-dark { display: block;}

/* Mobile Styles */
@media (max-width: 768px) {
	
	.top-bar .container { max-width:100% !important}
	.top-bar .col-md-3 { padding-right: 0px !important}
}

