/* Color Palette: Primary: #1C4E80, Secondary: #E76F51, Accent: #2A9D8F */



/* General Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {

    font‑family: 'Baloo 2', sans‑serif; 
   
    line-height: 1.6;
    color: var(--color-text-dark); /* Using variable */
    background-color: var(--color-background-main); /* Using variable */
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Baloo 2', sans-serif;
    color: var(--color-primary); /* Using variable */
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--color-primary); /* Using variable */
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary); /* Using variable */
}

.container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 0px;
}
.nav-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 0px;
    
}
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  
}


  .officers-list {
        display: flex;       
        justify-content: center;
        padding: 0;
        list-style: none;
    }

    .features-style2__single {
        width: calc(33.333% - 20px);
        box-sizing: border-box;
    }

    .features-style2__inner .shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
}
.shape1, .shape2 {
    opacity: 0.6;
}
.features-style2__inner  ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.features-style2__inner img {
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.features-style2__single-icon {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff;
    box-shadow: 0px 20px 60px 10px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}
.features-style2__single-icon img {
    width: 90%;
    margin-top: 5px;
    border-radius: 50%;
}

.features-style2__single-content {
    margin-top: 15px;
}
.features-style2__single-content p {
    font-size: 1rem;
    line-height: 1.25rem;
    font-family: var(--thm-font), var(--thm-font-2);
    text-align: center;
}
    
.features-style2__single-content h3 {
    text-align: center;
}
    @media (max-width: 992px) {
        .officers-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 0;
            list-style: none;
        }
        
        .features-style2__single {
            width: calc(50% - 20px);
        }
    }

    @media (max-width: 600px) {
        .officers-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 0;
            list-style: none;
        }
        
        .features-style2__single {
            //width: 100%;
            width: calc(50% - 20px);
        }
        
        #heroCarousel .carousel-item img {
            height: 50vh; /* Full height */       
        }
        
    }


/* ---------------------------------- */
/* Header and Navigation */
/* ---------------------------------- */


header {
    background-color: var(--color-background-main);
    //border-bottom: 5px solid var(--color-accent); /* Using variable */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    //display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}


/* === Basic Table Style === */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
  background-color: #fff;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* === Table Header === */
table thead {
  background-color: #0078d4;
  color: white;
  text-align: left;
}

table th {
  padding: 10px;
  border-bottom: 2px solid #005fa3;
}

/* === Table Body === */
table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* === Hover Effect === */
table tbody tr:hover {
  background-color: #f5f5f5;
}

/* === Zebra Striping === */
table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* === Responsive Table === */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}







.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-container h1 {
    font-size: 1.8em;
    margin: 0;
}

.logo-container p {
    font-size: 0.9em;
    color: var(--color-text-light); /* Using variable */
    margin: 0;
}

.menu-toggle {
    display: none; 
    font-size: 2em;
    color: var(--color-primary); /* Using variable */
    cursor: pointer;
}
nav{
    background-color: var(--color-primary); /* Using variable */
    margin-bottom: -10px;
    margin-top: 10px;
    margin-left: -20px;
    margin-right: -20px;
        
}
nav ul.nav-links {
    list-style: none;
    display: flex;
    background-color: var(--color-primary); /* Using variable */
    border-radius: 5px;
}

.nav-links li {
  position: relative;
  border-right: 1px solid lightslategray;
  border-radius: 0 5px 5px 0px;
}

nav ul.nav-links a {
    display: block;
    padding: 12px 12px;
    color: var(--color-background-main); /* Using variable */
    font-weight: 600;
    transition: background-color 0.3s ease;
}

nav ul.nav-links a:hover {
    background-color: var(--color-secondary); /* Using variable */
    color: var(--color-background-main);
    border-radius: 5px;
}


/* ---------------- Dropdown Menu ---------------- */
.dropdown-menu {
    display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-primary);//#003366;
  list-style: none;
  padding: 0;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;

  width: max-content;  /* dropdown width fits longest submenu item */
  //min-width: auto;     /* remove any fixed min-width */
  min-width: 200px;
}

.dropdown-menu li a {
  padding: 10px 15px;
}

.dropdown:hover .dropdown-menu,
.dropdown.show .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Arrow Icon */
.arrow {
  font-size: 0.7em;
  margin-left: 5px;
}

/* ---------------- Mobile Menu ---------------- */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .mob-hide{
      display: none;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #003366;
  }
  .nav-links li {
    width: 100%;
  }

  .logo-container h1{
    font-size: 1.2em;
    justify-content: flex-start;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    display: none;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    width: 100%;
  }
  .dropdown.show .dropdown-menu {
    display: block;
  }
}

/* ---------------------------------- */
/* Hero Slider Styling */
/* ---------------------------------- */

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden; /* हे आवश्यक आहे, बाहेर गेलेल्या स्लाइड्स लपवण्यासाठी */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.slides {

    display: flex;
    transition: transform 0.5s ease-in-out; 

    width: 100%; 

}

.slide {

    min-width: 100%;

    height: 450px; 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;

    justify-content: center;
    position: relative;
    box-sizing: border-box; /* महत्त्वाचे */
}

.slide-content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px 40px;
    text-align: center;
    color: white;
    max-width: 700px;
    border-radius: 8px;
}




.slide-content h2 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Navigation Buttons */
.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 2em;
    z-index: 10;
    transition: background-color 0.3s;
}

.prev-slide:hover, .next-slide:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-slide {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.next-slide {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* Dots (Pagination) */
.dots-container {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: var(--color-secondary); /* Using variable */
}

.cta-button {
    background-color: var(--color-secondary); /* Using variable */
    color: var(--color-background-main);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--color-secondary-dark); //#e05e3e; /* Slightly darker secondary */
    color: white;
    transform: translateY(-3px);
}

/* ---------------------------------- */
/* Notices Ticker */
/* ---------------------------------- */
.notices {
    background-color: #FFF3E0; /* Light secondary tint */
    padding: 15px 20px;
    border-left: 5px solid var(--color-secondary); /* Using variable */
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.notices h3 {
    background-color: var(--color-secondary); /* Using variable */ 
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 0;
    flex-shrink: 0;
    margin: -20px;    
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    
}

.ticker {
    flex-grow: 1;
    white-space: nowrap;
    padding-left: 100px;
    animation: scroll-left 15s linear infinite;
}

.ticker span {
    color: var(--color-text-dark); /* Using variable */
    font-weight: 500;
    padding-right: 40px;
}


@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* --- Ticker Container Styling --- */

/* --- Keyframe Animation --- */

/* You may need to duplicate the notices inside the .ticker div 
   in the HTML for a truly seamless loop without a gap. */

@keyframes ticker-scroll {
    /* Start position: 0 (right side of the container) */
    0% {
        transform: translateX(100%);
    }
    /* End position: -100% (past the left side of the content) */
    100% {
        transform: translateX(-100%);
    }
}

/* Pause the animation when a user hovers over the ticker */
.ticker:hover {
    animation-play-state: paused;
}



/* CSS (add to your stylesheet) */
.split-section { 
  padding: 28px 18px; 
  background: var(--color-background-main, #fff);
  color: var(--color-text-main, #222);
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* halves */
.split-image,
.split-text {
  flex: 1 1 0;
  cursor: pointer;
  
  min-width: 0; /* allow content to shrink correctly */
}
.split-image{
    padding: 0px 0px !important;
}
/* image styling */
.split-image img {
  width: 100%;
  height: 350px;           /* adjust height as needed */
  
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* text area */
.split-text h2 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
}
.split-text p {
  line-height: 1.65;
  margin: 12px 0 18px;
  color: var(--color-text-muted, #444);
}
/*.read-more {
  display: inline-inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--color-accent, #3A0CA3);
  color: #fff;
}*/

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .split {
    flex-direction: column;
  }
  .split-image img {
    height: 200px;
  }
  .split-text h2 {
    font-size: 1.15rem;
  }
}




/* ---------------------------------- */
/* Content Sections & Cards */
/* ---------------------------------- */

.content-section {
    background-color: var(--color-background-main);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--color-primary); /* Using variable */
}

.content-section h2 i {
    color: var(--color-accent); /* Using variable */
}

/* About Us Button */
.more-info-button {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: var(--color-accent); /* Using variable */
    color: var(--color-background-main);
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.more-info-button:hover {
    background-color: var(--color-accent-dark); /* Slightly darker accent */
    color: white;
}


/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.pai_cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card {
    text-align: center;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background-color: var(--color-background-main);
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#pai_details{
    background-color: #ddd8d8;
    
}
#pai_details .card img{
    width: 80px;
    
}
#pai_details .card h3{
    
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--color-primary); /* Using variable */
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent); /* Using variable */
}

.card i {
    color: var(--color-secondary); /* Using variable */
    margin-bottom: 15px;
}
.card h4 {
    font-size: 1.0em;
    margin-bottom: 10px;
    color: var(--color-primary); /* Using variable */
}
.card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--color-primary); /* Using variable */
}

.card p {
    font-size: 0.95em;
    color: #666;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    
    margin-bottom: 20px;
}

.news-item {
    background-color: var(--color-background-light); /* Using variable */
    border-left: 5px solid var(--color-secondary); /* Using variable */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-item h4 {
    font-size: 1.3em;
    margin-bottom: 8px;
    color: var(--color-primary); /* Using variable */
}

.news-item .news-date {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 10px;
}

.news-item a {
    color: var(--color-accent); /* Using variable */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

/* Scheme List */
.scheme-list {
    list-style: none;
    padding-left: 0;
}

.scheme-list li {
    background-color: #F2FDFB; /* Light accent tint */
    border: 1px solid var(--color-accent); /* Using variable */
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.scheme-list li i {
    color: var(--color-accent); /* Using variable */
}


/* --- Team Profiles Grid Layout --- */
.team-profiles-grid {
    display: grid;
    /* 3 columns on desktop, adapts to smaller screens */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

/* --- Base Profile Card Styling --- */
.profile-card {
    background-color: var(--color-background-main);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.profile-card h3 {
    color: var(--color-primary);
    font-size: 1.6em;
    margin: 15px 0 5px;
}

.profile-card h4 {
    color: var(--color-text-light);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 20px;
}

/* --- Image Styling --- */
.profile-img-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 5px var(--color-background-main);
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- Specific Card Accents --- */

/* 1. Leader Card (Sarpanch) */
.leader-card .profile-img-container {
    /* Strong border for the top position */
    border: 5px solid var(--color-accent); 
}

.leader-card .term-status {
    background-color: #f7f7f7;
    color: var(--color-primary);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-card .term-status i {
    color: var(--color-secondary);
    margin-right: 5px;
}

.leader-card .contact-info span {
    display: block;
    font-size: 0.9em;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}
.leader-card .contact-info i {
    color: var(--color-primary);
    margin-right: 8px;
}


/* 2. Deputy Card (Up-Sarpanch) */
.deputy-card .profile-img-container {
    border: 5px solid var(--color-secondary); 
}

.deputy-card .ward-info {
    color: var(--color-text-light);
    font-size: 0.95em;
    margin-bottom: 10px;
}
.deputy-card .ward-info i {
    color: var(--color-secondary);
    margin-right: 5px;
}

.deputy-card .role-badge {
    background-color: var(--color-accent);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    margin-bottom: 15px;
}
.deputy-card .role-badge i {
    color: white;
    margin-right: 5px;
}


/* 3. Admin Card (Gram Sevak) */
.admin-card .profile-img-container {
    border: 5px solid var(--color-primary); 
}

.admin-card .admin-office,
.admin-card .availability-time {
    color: var(--color-text-dark);
    font-size: 0.95em;
    margin-bottom: 10px;
}
.admin-card .admin-office i {
    color: var(--color-accent);
    margin-right: 5px;
}
.admin-card .availability-time i {
    color: var(--color-primary);
    margin-right: 5px;
}


/* General Link Style for Cards */
.profile-link {
    margin-top: 15px;
    padding: 8px 15px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.profile-link:hover {
    background-color: #d15d39; /* Slightly darker secondary */
    color: white;
}



/* ---------------------------------- */
/* Footer */
/* ---------------------------------- */

footer {
    background-color: var(--color-primary); /* Using variable */
    color: var(--color-background-main);
    padding: 40px 20px 20px;
    margin-top: 40px;
    font-size: 0.9em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    //align-items: center;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.footer-logo p {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0;
}

.footer-links a {
    color: var(--color-background-main);
    margin-right: 15px;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--color-secondary); /* Using variable */
}

.social-icons a {
    color: var(--color-background-main);
    font-size: 1.3em;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-secondary); /* Using variable */
}

.copyright {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* ---------------------------------- */
/* Responsive Design */
/* ---------------------------------- */

@media (max-width: 992px) {
    .slide {
        height: 350px;
    }
    .slide-content h2 {
        font-size: 2em;
    }
    nav ul.nav-links a {
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
    }
    .logo-container {
        width: 100%;
        
        margin-bottom: 10px;
    }
    .footer-links{
        width: 100%;
    }
    .social-icons{
        width: 100%;        
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 10px;
    }

    nav {
        width: 100%;
        order: 3;
    }

    nav ul.nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-primary); /* Using variable */
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        border-radius: 0;
    }
    nav ul.nav-links.active {
        display: flex;
    }
    nav ul.nav-links a {
        padding: 15px 25px;
        text-align: left;
    }

    .slide {
        height: 300px;
    }
    .slide-content h2 {
        font-size: 1.5em;
    }
    .slide-content p {
        font-size: 0.9em;
    }
    .notices {
        flex-direction: column;
        text-align: center;
    }
    .notices h3 {
        margin-bottom: 10px;
        justify-content: center;
    }
    .ticker {
        animation: none;
        white-space: normal;
        text-align: center;
    }
    .ticker span {
        display: block;
        padding-right: 0;
        margin-bottom: 5px;
    }
    .service-cards {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links a {
        display: block;
        margin: 5px 0;
    }
    .social-icons {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .slide {
        height: 250px;
    }
    .content-section h2 {
        font-size: 1.4em;
    }
    
    .slide-content h2 {
        font-size: 1.4em;
    }
    .service-cards {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------- */
/* Sitemap Specific Styles */
/* ---------------------------------- */

.sitemap-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

/* Sitemap Grid Layout */
.sitemap-grid {
    display: grid;
    /* 2 Columns on large screens */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.sitemap-section {
    background-color: var(--color-background-light); /* Using variable */
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--color-secondary); /* Using variable */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sitemap-section h3 {
    font-size: 1.4em;
    color: var(--color-primary); /* Using variable */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sitemap-section h3 i {
    color: var(--color-accent); /* Using variable */
}

.sitemap-list {
    list-style: none;
    padding-left: 0;
}

.sitemap-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

/* Custom list bullet (dot or arrow) */
.sitemap-list li::before {
    content: "\2022"; /* Bullet point */
    color: var(--color-secondary); /* Using variable */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.sitemap-list a {
    font-size: 1.05em;
    color: #333;
}

.sitemap-list a:hover {
    color: var(--color-secondary); /* Using variable */
    text-decoration: underline;
}

.sitemap-list a.active-link {
    font-weight: bold;
    color: var(--color-primary); /* Using variable */
}


/* Responsive Adjustments for Sitemap */
@media (max-width: 768px) {
    .sitemap-grid {
        /* Single column on mobile */
        grid-template-columns: 1fr;
    }
}


/* ---------------------------------- */
/* Accessibility Page Specific Styles */
/* ---------------------------------- */

.accessibility-intro {
    font-size: 1.1em;
    margin-bottom: 30px;
    padding: 15px;
    border-left: 4px solid var(--color-secondary); /* Using variable */
    background-color: #FFF8F5; /* Light secondary tint */
}

.accessibility-feature-section,
.accessibility-contact-section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    background-color: #F9FCFB; /* Very light accent background */
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.feature-list li i {
    color: var(--color-accent); /* Using variable */
    font-size: 1.2em;
}

.accessibility-contact-section p {
    font-size: 1.05em;
    margin-bottom: 10px;
}

.accessibility-contact-section i {
    color: var(--color-primary); /* Using variable */
    margin-right: 5px;
}

.contact-note {
    font-style: italic;
    color: var(--color-secondary); /* Using variable */
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed var(--color-secondary); /* Using variable */
}

.footer-links .active-footer-link {
    font-weight: bold;
    color: var(--color-secondary) !important; /* Using variable */
}


.scheme-list.three-col {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 12px 20px;
}

.scheme-list.three-col li {
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.scheme-list.three-col i {
    color: #28a745;
    margin-right: 6px;
}

.scheme-list.three-col a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.scheme-list.three-col a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .scheme-list.three-col {
        grid-template-columns: repeat(2, 1fr); /* tablet */
    }
}

@media (max-width: 576px) {
    .scheme-list.three-col {
        grid-template-columns: 1fr; /* mobile */
    }
}

