        :root {
            --primary-color: #cc0033;
            --secondary-color: #1e2035;
            --accent-color: #ffc107;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* Top Bar Styles */
        .top-bar {
            background-color: #f8f9fa;
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 14px;
        }
        
        .contact-info span {
            margin-right: 15px;
        }
        .border-end-dotted {
            border-right: 2px dotted #fff; /* Blue dotted line */
        }
        .topbar-nav a {
            color: #333;
            margin-left: 10px;
        }
        
        /* Logo and Header Styles */
        .logo img {
            height: 80px;
        }
        
        .header-buttons .btn {
            border: 1px dashed var(--primary-color);
            color: var(--primary-color);
            background-color: rgba(255, 235, 59, 0.15);
            margin-left: 10px;
            padding: 10px;
            font-weight: 500;
        }
        
        /* Navigation Styles */
        .navbar {            
            padding: 0;
        }
        
        .navbar-nav .nav-link {
            color: white;
            padding: 10px 11px !important;
            font-weight: 500;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background-color: rgba(255,255,255,0.1);
        }
        
        .dropdown-menu {
            background-color: var(--secondary-color);
            border: none;
            border-radius: 0;
            padding: 0;
        }
        
        .dropdown-item {
            color: white;
            padding: 10px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .dropdown-item:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .dropdown-item strong {
            margin-right: 5px;
        }
        
        /* Banner Styles */
        .banner-area {
            margin-top: 10px;
        }
        
        .banner-area img {
            width: 100%;
            height: auto;
        }
        
        /* Content Section Styles */
        .content-section {
            padding: 40px 0;
            background-color: #f8f9fa;
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .welcome-box, .message-box {
            background-color: white;
            padding: 25px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            /* height: 100%; */
        }
        
        /* News & Events Styles */
        .news-box {
            background-color: white;
            padding: 0;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .news-tabs .nav-tabs {
            border-bottom: none;
        }
        
        .news-tabs .nav-link {
            border: none;
            color: #333;
            font-weight: 500;
            padding: 12px 20px;
        }
        
        .news-tabs .nav-link.active {
            background-color: var(--accent-color);
            color: #333;
        }
        
        .news-content {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .news-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .news-content li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .news-content li:last-child {
            border-bottom: none;
        }
        
        .news-date {
            background-color: var(--primary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            display: inline-block;
            margin-bottom: 5px;
        }
        
        /* Related Links Styles */
        .sidebar-widget {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .sidebar-widget h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .related-links {
            list-style: none;
            padding: 0;
        }
        
        .related-links li {
            margin-bottom: 10px;
        }
        
        .related-links a {
            color: #333;
            text-decoration: none;
            display: block;
            padding: 8px 10px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .related-links a:hover {
            background-color: #f8f9fa;
            color: var(--primary-color);
            padding-left: 15px;
        }
        
        .related-links i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        /* Useful Links Styles */
        .useful-links {
            padding: 40px 0;
            background-color: white;
        }
        
        .useful-links .section-title {
            text-align: center;
        }
        
        .useful-links .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Footer Styles */
        .footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer h4 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .social-icons a {
            color: white;
            font-size: 20px;
            margin-right: 15px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 30px;
        }
        .newsli{
            text-decoration: none;
            color: #000000;
            
        }
        /* Related Links Styling */
.card-header {
    background-color: var(--primary-color) !important;
    border: none;
    padding: 1rem;
}

.card-header h5 {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.list-group-item {
    padding: 0.75rem 1rem;
    border-left: none;
    border-right: none;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.list-group-item i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.list-group-item:hover i {
    transform: translateX(5px);
}

.list-group-item.active i {
    color: white;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Responsive Adjustments */
        @media (max-width: 991px) {
            .header-buttons .btn {
                margin-bottom: 10px;
            }
            
            .navbar-nav {
                margin-top: 10px;
            }
        }

/* Theme Colors */
/* Theme Colors and Variables */
:root {
    --primary-color: #1e4b9c;
    --secondary-color: #a7214a;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #dee2e6;
    --bg-light: #f8f9fa;
    --shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Banner and Breadcrumb Styles */
.banner-breadcrumb {
    background: var(--bg-light);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-t h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: transparent;
}

.breadcrumb li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li.active a,
.breadcrumb li a:hover {
    color: var(--secondary-color);
}

/* Content Section Styles */
.our-profile-sec {
    padding: 3rem 0;
}

.details {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.event-title h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.event-title h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Committee Table Styles */
.committee_table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    box-shadow: var(--shadow);
}

.committee_table tr:first-child {
    background: var(--primary-color);
    color: white;
}

.committee_table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.committee_table tr:not(:first-child):hover {
    background: rgba(30, 75, 156, 0.05);
}

/* Related Links Styles */
.abt-rltd-lnks {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lt-dwnlds-det-in-a {
    padding: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.lt-dwnlds-det-in-a:hover {
    background: var(--bg-light);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.lt-dwnlds-det-in-a p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

/* List Styles */
.wp-block-list {
    padding-left: 1.5rem;
}

.wp-block-list li {
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.wp-block-list li:before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .breadcrumb-t h1 {
        font-size: 1.5rem;
    }
    
    .details {
        padding: 1rem;
    }
    
    .committee_table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .abt-rltd-lnks {
        margin-top: 2rem;
    }
}

/* Text Styles */
.text-justify {
    text-align: justify;
}

h3[style*="color:#a7214a"] {
    color: var(--secondary-color) !important;
    font-size: 1.25rem;
    margin: 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}