/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #1a472a;
    color: white;
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    margin-right: 20px;
}

.top-left i {
    margin-right: 5px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: #f39c12;
}

.lang-switch {
    background: #f39c12;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.lang-switch:hover {
    background: #e67e22;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 75px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    max-width: 45%;
}

.logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1a472a;
}

.site-title h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 2px;
    line-height: 1.1;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.site-title p {
    color: #666;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

/* Navigation Menu with Dropdown */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #1a472a;
    color: white;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e9ecef;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: #f8f9fa;
    color: #1a472a;
    border-left-color: #1a472a;
    padding-left: 25px;
}

.dropdown-menu a.active {
    background: #e8f5e8;
    font-weight: 600;
}

/* Visual indicator for dropdown parent */
.dropdown-toggle.active {
    background: #1a472a;
    color: white;
}

/* Hover effect for main navigation */
.nav-menu > li > a:not(.dropdown-toggle):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 71, 42, 0.2);
}

/* Mega Menu for Information (if needed) */
.dropdown.mega .dropdown-menu {
    min-width: 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 20px;
}

.dropdown.mega .dropdown-menu a {
    padding: 8px 15px;
    margin-bottom: 5px;
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: none;
    flex-direction: column;
    background: #f8f9fa;
    padding: 10px 0;
    border-radius: 5px;
    margin-top: 5px;
}

.mobile-dropdown a {
    padding: 8px 20px;
    font-size: 0.9rem;
    color: #666;
}

.mobile-dropdown a:hover {
    color: #1a472a;
    background: #e9ecef;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1a472a;
    margin: 3px 0;
    transition: 0.3s;
}

/* News Ticker */
.news-ticker {
    background: #f39c12;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.ticker-label {
    background: #e67e22;
    padding: 8px 15px;
    font-weight: 600;
    margin-right: 15px;
    border-radius: 5px;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: calc(100% - 150px);
}

.ticker-scroll {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 60s linear infinite;
}

.ticker-item {
    font-weight: 500;
}

.ticker-separator {
    color: #fff;
    font-weight: bold;
    margin: 0 10px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.5s ease;
}

.slide.active img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.02);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 71, 42, 0.95));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
    z-index: 2;
    border-radius: 0 0 8px 8px;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1), rgba(243, 156, 18, 0.1));
    z-index: 1;
}

.slide-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: #fff;
}

.slide-content p {
    font-size: 1.4rem;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    color: #f39c12;
    font-weight: 500;
    margin: 0;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-btn {
    background: rgba(26, 71, 42, 0.8);
    border: 2px solid rgba(243, 156, 18, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(243, 156, 18, 0.9);
    border-color: #f39c12;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #f39c12;
    border-color: #f39c12;
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Quick Links */
.quick-links {
    padding: 80px 0;
    background: #f8f9fa;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-link {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1a472a;
}

.quick-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.link-icon {
    background: linear-gradient(135deg, #1a472a, #27ae60);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.quick-link h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.quick-link p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-link {
    background: #f39c12;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-link:hover {
    background: #e67e22;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #1a472a;
    color: white;
    border-color: #1a472a;
}

.btn-primary:hover {
    background: transparent;
    color: #1a472a;
    border-color: #1a472a;
}

.btn-secondary {
    background: #f39c12;
    color: white;
    border-color: #f39c12;
}

.btn-secondary:hover {
    background: transparent;
    color: #f39c12;
    border-color: #f39c12;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1a472a;
}

.stat-item h3 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header h2,
.section-title {
    font-size: 2.5rem;
    color: #1a472a;
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a472a, #f39c12);
    margin: 15px auto;
}

.view-all {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #e67e22;
}

/* Latest Notices */
.latest-notices {
    padding: 80px 0;
    background: #f8f9fa;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.notice-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    gap: 1rem;
}

.notice-card:hover {
    transform: translateY(-5px);
}

.notice-date {
    background: #1a472a;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
    height: fit-content;
}

.notice-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.notice-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.notice-content h3 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.notice-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notice-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.notice-link:hover {
    color: #e67e22;
}

/* Schemes Preview */
.schemes-preview {
    padding: 80px 0;
}

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.scheme-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #1a472a;
    transition: transform 0.3s ease;
}

.scheme-card:hover {
    transform: translateY(-5px);
}

.scheme-icon {
    background: linear-gradient(135deg, #1a472a, #27ae60);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.scheme-card h3 {
    color: #1a472a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.scheme-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.scheme-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-label {
    background: #27ae60;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.beneficiaries {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.schemes-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: #1a472a;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f39c12;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f39c12;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #e67e22;
}

.contact-info p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #f39c12;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #95a5a6;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

/* Emergency Contact */
.emergency-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.emergency-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.emergency-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.emergency-info {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-width: 250px;
    display: none;
}

.emergency-info.active {
    display: block;
}

.emergency-info h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.emergency-info p {
    margin-bottom: 5px;
    color: #333;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
	/*background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);*/
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.2;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.breadcrumb a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.breadcrumb span {
    margin: 0 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.page-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Village Overview */
.village-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.overview-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.key-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a472a;
}

.fact-item i {
    font-size: 1.5rem;
    color: #1a472a;
}

.fact-item h4 {
    margin-bottom: 5px;
    color: #1a472a;
}

.fact-item p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

.image-caption p {
    margin: 0;
    font-size: 0.9rem;
}

/* History Timeline */
.history-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1a472a, #f39c12);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.timeline-year {
    background: #1a472a;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #1a472a;
}

.timeline-item:nth-child(even) .timeline-year::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: #1a472a;
}

.timeline-content h3 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Vision Mission */
.vision-mission {
    padding: 80px 0;
}

.vm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vision-card,
.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    background: linear-gradient(135deg, #1a472a, #27ae60);
}

.mission-card::before {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.vm-icon {
    background: linear-gradient(135deg, #1a472a, #27ae60);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.vision-card p,
.mission-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Objectives */
.objectives {
    padding: 80px 0;
    background: #f8f9fa;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.objective-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 3px solid #1a472a;
}

.objective-item:hover {
    transform: translateY(-5px);
}

.obj-icon {
    background: linear-gradient(135deg, #1a472a, #27ae60);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.objective-item h4 {
    color: #1a472a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.objective-item p {
    color: #666;
    line-height: 1.6;
}

/* Development Highlights */
.development-highlights {
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-content {
    padding: 1.5rem;
}

.highlight-content h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
}

/* Term Information */
.term-info {
    padding: 40px 0;
    background: #f8f9fa;
}

.term-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.term-header {
    background: linear-gradient(135deg, #1a472a, #27ae60);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.term-status {
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.term-details {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.term-detail {
    color: #666;
    font-size: 0.95rem;
}

.term-detail strong {
    color: #1a472a;
}

/* Leadership Team */
.leadership-team {
    padding: 80px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-card.sarpanch {
    grid-row: span 2;
}

.leader-image {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.leader-image img {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.position-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1a472a;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.position-badge.deputy {
    background: #f39c12;
}

.position-badge.secretary {
    background: #27ae60;
}

.leader-info {
    padding: 1.5rem;
}

.leader-info h3 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.leader-info .position {
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-details p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leader-details i {
    color: #1a472a;
    width: 15px;
}

.leader-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #1a472a;
    border-radius: 5px;
}

.leader-message h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.leader-message p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Ward Members */
.ward-members {
    padding: 80px 0;
    background: #f8f9fa;
}

.wards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ward-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.ward-card:hover {
    transform: translateY(-5px);
}

.ward-header {
    background: linear-gradient(135deg, #1a472a, #27ae60);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ward-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.ward-population {
    font-size: 0.9rem;
    opacity: 0.9;
}

.member-info {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.member-photo {
    flex-shrink: 0;
}

.member-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    display: block;
}

.member-details {
    flex: 1;
    min-width: 0;
}

.member-details h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    word-wrap: break-word;
}

.member-position {
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-contact p {
    color: #666;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    word-wrap: break-word;
}

.member-contact i {
    color: #1a472a;
    width: 12px;
    flex-shrink: 0;
}

/* Committees */
.committees {
    padding: 80px 0;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.committee-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #1a472a;
    transition: transform 0.3s ease;
}

.committee-card:hover {
    transform: translateY(-5px);
}

.committee-icon {
    background: linear-gradient(135deg, #1a472a, #27ae60);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.committee-card h3 {
    color: #1a472a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.committee-members {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.committee-members p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.committee-members strong {
    color: #1a472a;
}

.committee-description {
    color: #666;
    line-height: 1.6;
}

/* Contact Representatives */
.contact-representatives {
    padding: 40px 0;
    background: #f8f9fa;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card h3 {
    color: #1a472a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-option i {
    background: linear-gradient(135deg, #1a472a, #27ae60);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-option h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-option p {
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 25px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .breadcrumb span {
        margin: 0 4px;
    }
    
    .overview-content,
    .vm-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .key-facts {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 2rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .history-timeline::before {
        left: 20px;
    }
    
    .timeline-year::after {
        display: none;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-card.sarpanch {
        grid-row: auto;
    }
    
    .member-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .member-photo img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .wards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-option {
        justify-content: center;
        text-align: center;
    }
    
    .ticker-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ticker-label {
        margin-right: 0;
        align-self: stretch;
        text-align: center;
    }
    
    .ticker-content {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 100px 20px 50px;
        z-index: 999;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #e9ecef;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 15px 10px;
        width: 100%;
        justify-content: space-between;
        border-radius: 0;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border: none;
        border-radius: 0;
        margin-top: 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle.active i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding: 12px 30px;
        font-size: 0.9rem;
        color: #666;
        border-left: none;
    }
    
    .dropdown-menu a:hover {
        background: #e9ecef;
        color: #1a472a;
        padding-left: 30px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        padding: 5px 15px;
    }
    
    .top-bar {
        padding: 5px 0;
        font-size: 0.8rem;
    }
    
    .header-content {
        padding: 8px 0;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .site-title h1 {
        font-size: 1.1rem;
        line-height: 1.1;
    }
    
    .site-title p {
        font-size: 0.75rem;
        line-height: 1;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .emergency-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .emergency-info {
        right: -100px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .quick-links-grid,
    .notices-grid,
    .schemes-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .ticker-label {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .section-title,
    .section-header h2 {
        font-size: 2rem;
    }
}

/* ===== SERVICES PAGE STYLES ===== */
.services-dashboard {
    padding: 2rem 0;
    background: #f8f9fa;
}

.dashboard-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-intro h2 {
    color: #1a472a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dashboard-intro p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a472a, #f39c12);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 71, 42, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border: 2px solid #1a472a;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #1a472a;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.processing-time, .fees {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.processing-time i {
    color: #f39c12;
}

.fees i {
    color: #27ae60;
}

.service-actions {
    display: flex;
    gap: 1rem;
}

.btn-apply, .btn-track {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-apply {
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    color: white;
    flex: 1;
}

.btn-apply:hover {
    background: linear-gradient(135deg, #2d5a3d, #1a472a);
    transform: translateY(-2px);
}

.btn-track {
    background: #f39c12;
    color: white;
    flex: 0.8;
}

.btn-track:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Service Categories */
.service-categories {
    margin-bottom: 3rem;
}

.service-categories h3 {
    color: #1a472a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.15);
}

.category-item i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.category-item h4 {
    color: #1a472a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Tracking Section */
.tracking-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tracking-section h3 {
    color: #1a472a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tracking-form {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.tracking-form .form-group {
    display: flex;
    gap: 1rem;
}

.tracking-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.tracking-form input:focus {
    outline: none;
    border-color: #1a472a;
}

.btn-track-large {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-track-large:hover {
    background: linear-gradient(135deg, #2d5a3d, #1a472a);
    transform: translateY(-2px);
}

/* Tracking Result */
.tracking-result {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1a472a;
}

.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    position: relative;
}

.status-item.completed {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 4px solid #27ae60;
}

.status-item.active {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid #f39c12;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

.status-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.status-item.completed i {
    color: #27ae60;
}

.status-item.active i {
    color: #f39c12;
}

.status-item:not(.completed):not(.active) i {
    color: #999;
}

.status-content h4 {
    color: #1a472a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.status-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    color: #1a472a;
    font-size: 1.5rem;
    margin: 0;
}

.close {
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1a472a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a472a;
}

.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px dashed #1a472a;
    border-radius: 8px;
    background: #f8f9fa;
    color: #1a472a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload label:hover {
    background: #e8f5e8;
    border-color: #2d5a3d;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel,
.btn-submit {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
}

.btn-submit {
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    color: white;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #2d5a3d, #1a472a);
}

/* Additional Mobile Responsiveness for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tracking-form .form-group {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .dashboard-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    color: #1a472a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-intro p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 71, 42, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h3 {
    color: #1a472a;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-container {
    padding: 2.5rem;
}

.form-container h3 {
    color: #1a472a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modern-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.modern-form .form-group label {
    display: block;
    color: #1a472a;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.modern-form .form-group input,
.modern-form .form-group select,
.modern-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.modern-form .form-group textarea {
    padding-right: 1rem;
    resize: vertical;
}

.modern-form .form-group input:focus,
.modern-form .form-group select:focus,
.modern-form .form-group textarea:focus {
    outline: none;
    border-color: #1a472a;
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

.form-icon {
    position: absolute;
    right: 1rem;
    top: 2.8rem;
    color: #999;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-group:focus-within .form-icon {
    color: #1a472a;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 0.8rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #1a472a;
    border-color: #1a472a;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: -2px;
    left: 3px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-reset,
.btn-submit {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-reset {
    background: #6c757d;
    color: white;
}

.btn-reset:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    color: white;
    min-width: 150px;
    justify-content: center;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #2d5a3d, #1a472a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.3);
}

/* Quick Contact Options */
.quick-contact {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    text-align: center;
}

.quick-contact h3 {
    color: #1a472a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quick-contact-item {
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    border-color: #1a472a;
    transform: translateY(-3px);
}

.quick-contact-item i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.quick-contact-item h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.quick-contact-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-quick {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-quick:hover {
    background: linear-gradient(135deg, #2d5a3d, #1a472a);
    transform: translateY(-2px);
}

.btn-quick.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.btn-quick.whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
}

/* Office Map */
.office-map {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.office-map h3 {
    color: #1a472a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-content {
    text-align: center;
    color: #666;
}

.map-content i {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.map-content h4 {
    color: #1a472a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.map-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-map {
    padding: 0.8rem 1.5rem;
    background: #1a472a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-map:hover {
    background: #2d5a3d;
    transform: translateY(-2px);
}

/* Emergency Contacts */
.emergency-contacts {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #f39c12;
}

.emergency-contacts h3 {
    color: #1a472a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.emergency-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.emergency-item:hover {
    border-color: #dc3545;
    transform: translateY(-3px);
}

.emergency-item i {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.emergency-item h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.emergency-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem;
}

.btn-emergency {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Contact Page Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .quick-contact-grid,
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .emergency-number {
        font-size: 1.5rem;
    }
}

/* ===== LOGO SPECIFIC STYLES ===== */
.logo {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
    margin-right: 15px;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}

/* Enhance logo section styling */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-title h1, .logo-text h1 {
    font-size: 1.8rem !important;
    color: #1a472a !important;
    margin: 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.site-title p, .logo-text p {
    color: #666 !important;
    margin: 0;
    font-size: 0.95rem;
    
}

/* Add subtle animation to logo */
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    }
    50% {
        filter: drop-shadow(2px 2px 8px rgba(26, 71, 42, 0.3));
    }
}

.logo-section:hover .logo {
    animation: logoGlow 2s ease-in-out infinite;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo {
        width: 60px !important;
        height: 60px !important;
    }
    
    .site-title h1, .logo-text h1 {
        font-size: 1.4rem !important;
    }
    
    .site-title p, .logo-text p {
        font-size: 0.8rem !important;
    }
    
    .footer-logo img {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Font Size Accessibility Controls */
.font-size-notification {
    font-family: 'Noto Sans', 'Noto Sans Devanagari', sans-serif;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Font size controls styling */
.top-link[title*="Font"] {
    position: relative;
    transition: all 0.3s ease;
}

.top-link[title*="Font"]:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transform: scale(1.05);
}

.top-link[title*="Font"]:active {
    transform: scale(0.95);
}

/* Ensure responsive font scaling */
html {
    font-size: 16px; /* Base font size */
}

/* Override for better accessibility when font size is changed */
body {
    line-height: 1.6;
}

/* Ensure buttons and interactive elements maintain usability */
.btn, .top-link, .nav-menu a {
    min-height: 44px; /* WCAG minimum touch target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Maintain visual hierarchy with font size changes */
h1 { font-size: 2.5em; }
h2 { font-size: 2em; }  
h3 { font-size: 1.5em; }
h4 { font-size: 1.25em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1em; }

/* ===== COMMITTEES PAGE STYLES ===== */

/* Committee Overview Section */
.committee-overview {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.committee-overview .overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.committee-overview h2 {
    color: #1a472a;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2rem;
}

.committee-overview p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Committee Stats */
.committee-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item i {
    font-size: 1.8rem;
    color: #27ae60;
    margin-right: 1rem;
    min-width: 45px;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: #1a472a;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.stat-item p {
    color: #666;
    margin: 0.3rem 0 0 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Main Committees Section */
.main-committees {
    padding: 3rem 0;
    background: white;
}

.additional-committees {
    padding: 3rem 0;
    background: #f8f9fa;
}

/* Committee Cards Grid */
.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: none;
}

/* Committee Card Styling */
.committee-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #27ae60;
    height: fit-content;
    max-height: 600px;
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Ensure proper section clearing */
.main-committees,
.additional-committees,
.committee-performance,
.meeting-schedule-section,
.committee-contact {
    clear: both;
    overflow: hidden;
}

/* Committee Type Colors */
.committee-card.finance {
    border-top-color: #e74c3c;
}

.committee-card.development {
    border-top-color: #3498db;
}

.committee-card.welfare {
    border-top-color: #9b59b6;
}

.committee-card.water {
    border-top-color: #1abc9c;
}

.committee-card.agriculture {
    border-top-color: #f39c12;
}

/* Committee Header */
.committee-header {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.committee-icon {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.committee-icon i {
    font-size: 1.8rem;
    color: #27ae60;
}

.committee-card.finance .committee-icon i {
    color: #e74c3c;
}

.committee-card.development .committee-icon i {
    color: #3498db;
}

.committee-card.welfare .committee-icon i {
    color: #9b59b6;
}

.committee-card.water .committee-icon i {
    color: #1abc9c;
}

.committee-card.agriculture .committee-icon i {
    color: #f39c12;
}

.committee-header h3 {
    color: #1a472a;
    margin: 0 0 0.4rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}

.committee-code {
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Committee Details */
.committee-details {
    padding: 1.5rem;
}

.committee-leadership,
.committee-members,
.committee-functions {
    margin-bottom: 1rem;
}

.committee-leadership h4,
.committee-members h4,
.committee-functions h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.3rem;
}

.committee-details p {
    margin: 0.3rem 0;
    line-height: 1.4;
    color: #555;
    font-size: 0.85rem;
}

.committee-details ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.committee-details ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
    color: #555;
    font-size: 0.8rem;
    line-height: 1.3;
}

.committee-details ul li:before {
    content: "•";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Meeting Schedule */
.meeting-schedule {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 3px solid #27ae60;
}

.meeting-schedule i {
    color: #27ae60;
    margin-right: 0.5rem;
}

/* Mobile Responsiveness for Committee Cards */
@media (max-width: 768px) {
    .committee-overview {
        padding: 1.5rem 0;
    }
    
    .committee-overview h2 {
        font-size: 1.6rem;
    }
    
    .committee-overview p {
        font-size: 0.9rem;
    }
    
    .committee-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-item i {
        margin-right: 0;
        margin-bottom: 0.3rem;
        font-size: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.3rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
    
    .committees-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .committee-card {
        max-height: none;
    }
    
    .committee-header {
        padding: 1rem;
    }
    
    .committee-details {
        padding: 1rem;
    }
    
    .main-committees,
    .additional-committees {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .committee-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
}

/* Performance Section */
.committee-performance {
    padding: 5rem 0;
    background: white;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.performance-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.performance-card h3 {
    color: #1a472a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Progress Bars */
.performance-chart .chart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.chart-item span:first-child {
    min-width: 120px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transition: width 1s ease;
}

.chart-item span:last-child {
    min-width: 50px;
    font-size: 0.9rem;
    color: #1a472a;
    font-weight: 600;
}

/* Achievements List */
.achievements-list {
    margin-top: 1rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.achievement-item i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.achievement-item span {
    color: #555;
    line-height: 1.4;
}

/* Meeting Schedule Section */
.meeting-schedule-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.schedule-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: #1a472a;
    color: white;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.schedule-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.schedule-table tr:hover {
    background: #f8f9fa;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 0 8px 8px 0;
    color: #555;
    line-height: 1.5;
}

.schedule-note i {
    color: #2196f3;
    margin-right: 0.5rem;
}

/* Committee Contact Section */
.committee-contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
}

.committee-contact .contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.committee-contact h3 {
    color: #1a472a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.contact-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    min-width: 200px;
}

.contact-option i {
    font-size: 1.5rem;
    color: #27ae60;
    margin-right: 1rem;
}

.contact-option h4 {
    margin: 0 0 0.3rem 0;
    color: #1a472a;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-option p {
    margin: 0;
    color: #666;
    font-size: 0.8rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-actions .btn {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #1e8449;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1a472a;
    border: 2px solid #1a472a;
}

.btn-secondary:hover {
    background: #1a472a;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .committee-overview {
        padding: 3rem 0;
    }
    
    .committee-overview h2 {
        font-size: 2rem;
    }
    
    .committee-overview p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .committees-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .committee-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-item i {
        margin: 0 0 1rem 0;
        font-size: 2.2rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-committees,
    .additional-committees,
    .committee-performance {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-option {
        min-width: auto;
    }
    
    .schedule-table {
        overflow-x: auto;
    }
    
    .schedule-table table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .committee-overview {
        padding: 2rem 0;
    }
    
    .committee-overview h2 {
        margin-bottom: 1rem;
        font-size: 1.8rem;
    }
    
    .committee-overview p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .committee-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-item i {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .committee-header {
        padding: 2rem 1.5rem;
    }
    
    .committee-details {
        padding: 2rem 1.5rem;
    }
    
    .committee-contact .contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .committees-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .main-committees,
    .additional-committees,
    .committee-performance {
        padding: 2.5rem 0;
    }
}

/* Staff Directory Styles */
.staff-overview {
    background: var(--light-gray);
    padding: 3rem 0;
}

.staff-overview .overview-content {
    text-align: center;
    margin-bottom: 3rem;
}

.staff-overview h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 600;
}

.staff-overview p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.staff-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.staff-stats .stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.staff-stats .stat-item:hover {
    transform: translateY(-5px);
}

.staff-stats .stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(52, 152, 219, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-stats .stat-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.staff-stats .stat-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

/* Administrative Staff */
.administrative-staff,
.technical-staff,
.support-staff {
    padding: 3rem 0;
}

.administrative-staff {
    background: white;
}

.technical-staff {
    background: var(--light-gray);
}

.support-staff {
    background: white;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.staff-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.staff-card.leadership {
    border-left-color: #e74c3c;
}

.staff-card.administrative {
    border-left-color: #3498db;
}

.staff-card.financial {
    border-left-color: #2ecc71;
}

.staff-card.technical {
    border-left-color: #f39c12;
}

.staff-card.health {
    border-left-color: #9b59b6;
}

.staff-card.support {
    border-left-color: #34495e;
}

.staff-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.staff-photo i {
    font-size: 2rem;
    color: white;
}

.staff-info h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.designation {
    text-align: center;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.qualification,
.experience {
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.staff-card .contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.contact-item span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.responsibilities {
    margin-top: 1.5rem;
}

.responsibilities h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.responsibilities ul {
    list-style: none;
    padding: 0;
}

.responsibilities li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.responsibilities li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Support Staff Simple Cards */
.staff-grid.simple {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.staff-card-simple {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.staff-card-simple:hover {
    transform: translateY(-3px);
}

.staff-header {
    margin-bottom: 1rem;
}

.staff-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.staff-header h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

.staff-count {
    margin-bottom: 1rem;
}

.staff-count .count {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.staff-count span:last-child {
    color: var(--text-color);
    font-size: 0.9rem;
}

.staff-card-simple p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Office Hours */
.office-hours {
    background: var(--light-gray);
    padding: 3rem 0;
}

.hours-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.hours-card h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hours-info h3,
.emergency-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.time-schedule,
.emergency-info {
    text-align: left;
}

.time-item,
.emergency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.time-item i,
.emergency-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.time-item div,
.emergency-item div {
    flex: 1;
}

.time-item strong,
.emergency-item strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.time-item span,
.emergency-item span {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Staff Responsive Styles */
@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .staff-card {
        padding: 1.5rem;
    }
    
    .staff-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .staff-stats .stat-item {
        padding: 1rem;
    }
    
    .staff-stats .stat-item i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .qualifications {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .staff-stats {
        grid-template-columns: 1fr;
    }
    
    .staff-photo {
        width: 60px;
        height: 60px;
    }
    
    .staff-photo i {
        font-size: 1.5rem;
    }
    
    .staff-info h3 {
        font-size: 1.1rem;
    }
}

/* Government Schemes Section */
.government-schemes {
    padding: 4rem 0;
    background: var(--light-gray);
}

.government-schemes .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.government-schemes .section-description {
    text-align: center;
    color: var(--text-color);
    margin: 0 auto 3rem;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.scheme-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.scheme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.scheme-card.employment {
    border-left-color: #e67e22;
}

.scheme-card.housing {
    border-left-color: #3498db;
}

.scheme-card.sanitation {
    border-left-color: #27ae60;
}

.scheme-card.agriculture {
    border-left-color: #f39c12;
}

.scheme-card.health {
    border-left-color: #e74c3c;
}

.scheme-card.medical {
    border-left-color: #9b59b6;
}

.scheme-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.scheme-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.scheme-card.employment .scheme-icon {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.scheme-card.housing .scheme-icon {
    background: linear-gradient(135deg, #3498db, #5dade2);
}

.scheme-card.sanitation .scheme-icon {
    background: linear-gradient(135deg, #27ae60, #58d68d);
}

.scheme-card.agriculture .scheme-icon {
    background: linear-gradient(135deg, #f39c12, #f7dc6f);
}

.scheme-card.health .scheme-icon {
    background: linear-gradient(135deg, #e74c3c, #ec7063);
}

.scheme-card.medical .scheme-icon {
    background: linear-gradient(135deg, #9b59b6, #bb8fce);
}

.scheme-header div {
    flex: 1;
}

.scheme-header h3 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.scheme-type {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.scheme-details p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.scheme-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.scheme-stats .stat {
    text-align: center;
    flex: 1;
}

.scheme-stats .stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.scheme-stats .stat span {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.2;
}

.responsible-staff {
    padding: 1rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.responsible-staff strong {
    color: var(--primary-color);
    font-weight: 600;
}

.responsible-staff span {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Scheme Performance */
.scheme-performance {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.scheme-performance h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.performance-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(52, 152, 219, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.performance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.performance-data {
    flex: 1;
}

.performance-data h4 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.progress-bar {
    background: #e9ecef;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.performance-data span {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Government Schemes Responsive */
@media (max-width: 768px) {
    .schemes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scheme-card {
        padding: 1.5rem;
    }
    
    .scheme-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .scheme-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .scheme-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .scheme-stats .stat strong {
        font-size: 1.5rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .performance-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .performance-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .government-schemes .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .scheme-performance {
        padding: 1.5rem;
    }
    
    .scheme-header h3 {
        font-size: 1.1rem;
    }
    
    .government-schemes {
        padding: 2rem 0;
    }
}

/* Schemes Page Specific Styles */
.schemes-dashboard {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.dashboard-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.dashboard-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Category Filters */
.scheme-categories {
    margin-bottom: 3rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}

.filter-btn i {
    font-size: 1rem;
}

/* Schemes Grid */
.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.scheme-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.scheme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.scheme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.scheme-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.scheme-badge i {
    font-size: 0.9rem;
}

.scheme-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.scheme-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
    margin-right: 1rem;
}

.scheme-status {
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.scheme-status.active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.scheme-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Scheme Details */
.scheme-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.detail-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Eligibility */
.eligibility h4 {
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.eligibility ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.eligibility li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Scheme Actions */
.scheme-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-apply,
.btn-details {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-apply {
    background: var(--primary-color);
    color: white;
}

.btn-apply:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-details {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-details:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Scheme Statistics */
.scheme-stats {
    background: white;
    padding: 3rem 0;
    margin-top: 3rem;
}

.scheme-stats h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: white;
    font-size: 1.5rem;
}

.stat-content h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design for Schemes Page */
@media (max-width: 768px) {
    .schemes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scheme-card {
        padding: 1.5rem;
    }
    
    .scheme-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .scheme-header h3 {
        margin-right: 0;
        font-size: 1.2rem;
    }
    
    .scheme-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .scheme-actions {
        flex-direction: column;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dashboard-intro h2 {
        font-size: 2rem;
    }
    
    .schemes-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
/*

:root{
  --orange: #f39c12;
  --orange-dark: #e67e22;
  --orange-white: #FFFFFF;
  --orange-light: #fff3e0;
  --text-dark: #333;
  --border-light: #e9e9e9;
}


body{
  color: var(--text-dark);
  background: #fff;
}


.top-bar{
  background: var(--orange-dark);
  color:#fff;
}
.top-bar a{ color:#fff; }
.top-bar a:hover{ color:#ffe0b2; }


.nav-menu a{
  color: var(--text-dark);
}
.nav-menu a:hover,
.nav-menu a.active{
  background: var(--orange);
  color:#fff;
}


.dropdown-menu{
  border-top:3px solid var(--orange);
}
.dropdown-menu a:hover{
  color: var(--orange-dark);
  background: var(--orange-light);
}


.btn,
.btn-primary{
  background: var(--orange);
  border-color: var(--orange);
  color:#fff;
}
.btn:hover,
.btn-primary:hover{
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}


.section-title,
.page-header h1{
  color: var(--orange-white);
}
.section-title::after{
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}


.card,
.notice-card,
.scheme-card,
.quick-link{
  border:1px solid var(--border-light);
  border-top:4px solid var(--orange);
}


i{
  color: var(--orange);
}

.icon-list li i{
  color: var(--orange);
}


.custom-pagination li a{
  border:1px solid var(--orange);
  color: var(--orange);
}
.custom-pagination li a:hover{
  background: var(--orange);
  color:#fff;
}
.custom-pagination li.active a{
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color:#fff;
}


.footer{
  background:#222;
  color:#ccc;
}
.footer h3,
.footer a:hover{
  color: var(--orange);
}
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular {
    color: #fff !important;
}

*/

