﻿
/* ---------- ** END ** ---------- */


/* ---------- ** START ** ---------- */
/* ---------- Department Main Page ---------- */
/* ---------- NEW: Department Card Styles ---------- */
.page-hero {
    background-color: var(--highlight-color-light);
    padding: 40px 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
}

    .page-hero h1 {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .page-hero p {
        font-size: 1.1rem;
        color: var(--text-color);
        max-width: 800px;
        margin: 0 auto;
    }

.section-heading {
    font-size: 2.2rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    width: auto;
}

.departments-grid, .sections-grid {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.dept-card {
    background-color: var( --bg-mid);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .dept-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .dept-card .icon-circle {
        background-color: var(--highlight-color-light);
        color: var(--primary-color);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .dept-card h3 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .dept-card p {
        font-size: 0.9rem;
        color: var(--text-color);
        line-height: 1.5;
        flex-grow: 1;
    }

/* Mobile Responsive Styles */

/* Tablets and smaller desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Small tablets (max-width: 768px) */
@media (max-width: 768px) {
    .page-hero {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

        .page-hero h1 {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }

        .page-hero p {
            font-size: 1rem;
            padding: 0 15px;
        }

    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 8px;
        border-bottom-width: 2px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .dept-card {
        padding: 25px;
    }

        .dept-card .icon-circle {
            width: 50px;
            height: 50px;
            font-size: 20px;
            margin-bottom: 12px;
        }

        .dept-card h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .dept-card p {
            font-size: 0.85rem;
        }
}

/* Mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .page-hero {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

        .page-hero h1 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .page-hero p {
            font-size: 0.95rem;
        }

    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 6px;
        width: 100%;
        text-align: center;
    }

    .departments-grid, .sections-grid {
        padding: 0 15px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .dept-card {
        padding: 20px;
    }

        .dept-card .icon-circle {
            width: 45px;
            height: 45px;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .dept-card h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .dept-card p {
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .dept-card:hover {
            transform: translateY(-5px);
        }
}

/* Extra small devices (max-width: 360px) */
@media (max-width: 360px) {
    .page-hero h1 {
        font-size: 1.6rem;
    }

    .section-heading {
        font-size: 1.3rem;
    }

    .dept-card {
        padding: 18px;
    }

        .dept-card h3 {
            font-size: 1rem;
        }

        .dept-card p {
            font-size: 0.8rem;
        }
}
/* ---------- Department Main Page ---------- */
/* ---------- ** END ** ---------- */









/* ---------- ** START ** ---------- */
/* ---------- Water Works Department ---------- */
/* ---------- Main Content Area ---------- */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

    .page-header h1 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-header p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
}

    .breadcrumb a {
        color: var(--text-light);
        transition: color 0.3s;
    }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

    .breadcrumb span {
        color: var(--text-light);
    }

.content-section {
    padding: 60px 20px;
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.content-box {
    background: var(--bg-mid);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .content-box h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .content-box p {
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 15px;
    }

.section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    /* background: #ffffff; */
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


/* body content */
/* VISSION MISSION & HISTORY style */
.about-us {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: auto;
}

    .about-us .ab {
        background-color: var(--bg-mid);
        border-bottom: 6px solid #2c3e50; /* Green accent line */
        border-top: 6px solid #2c3e50; /* Green accent line */
        padding: 25px 30px;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
    }

        .about-us .ab:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

    .about-us h4 {
        font-size: 22px;
        color: #0362b4;
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .about-us p {
        font-size: 16px;
        color: #ffffff;
        line-height: 1.7;
        text-align: justify;
    }

    .about-us i {
        font-size: 25px;
    }

@media (max-width: 768px) {
    .about-us {
        padding: 20px;
        grid-template-columns: 1fr;
    }
}
/* topic styles */
.center-wrapper {
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.news-header {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stars {
    color: #ff2e2e;
    margin: 0 5px;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
}

.underline {
    display: inline-block;
    margin-top: 8px;
    height: 4px;
    width: 100px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: relative;
}

    .underline::before,
    .underline::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 5px;
        height: 5px;
        background-color: #ff2e2e;
        border-radius: 50%;
        transform: translateY(-50%);
    }

    .underline::before {
        left: -10px;
    }

    .underline::after {
        right: -10px;
    }

/*h2 {
    text-align: center;
    color: #b22222;
    margin-bottom: 10px;
}*/

.water-subunit {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.subunit-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 60px 20px;
    color: white;
    transition: transform 0.3s ease;
    cursor: pointer;
    /* z-index: 1; */
}

    .subunit-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom right, rgba(0, 123, 255, 0.6), rgba(0, 123, 255, 0.3));
        z-index: 0;
    }

    .subunit-card img,
    .subunit-card h3 {
        position: relative;
        /* z-index: 1; */
    }

    .subunit-card i {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .subunit-card h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .subunit-card::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -100%;
        width: 100%;
        height: 120%;
        background: linear-gradient(to top, #007bff, transparent 70%);
        border-radius: 100% 100% 0 0;
        transition: all 0.5s ease-in-out;
        z-index: 0;
    }

    /* .staff-card:hover {
      transform: translateY(-10px);
    } */

    .subunit-card:hover::after {
        bottom: 0;
    }


@media (max-width: 600px) {
    .subunit-card {
        padding: 40px 15px;
    }

    .water-subunit {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
}

/* staff list container */
.water-staff-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.water-staff-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .water-staff-card i {
        color: #001558;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .water-staff-card h3 {
        font-size: 18px;
        color: #333;
        margin: 0;
    }

    .water-staff-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

/* Tablet (2 cards per row) */
@media (max-width: 992px) {
    .water-staff-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 card per row) */
@media (max-width: 576px) {
    .water-staff-container {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }

    .water-staff-card {
        padding: 18px 20px;
    }

        .water-staff-card h3 {
            font-size: 16px;
        }

        .water-staff-card i {
            font-size: 24px;
        }
}

/* Advanced List Container Styling */
.Servicelist-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

    /* Decorative vertical line */
    .Servicelist-container::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 30px;
        bottom: 30px;
        width: 4px;
        /* background: linear-gradient(to bottom, #284aa7, #6fcf97); */
        border-radius: 5px;
    }

/* List Styling */
.custom-service {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .custom-service li {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 17px;
        padding: 18px 20px 18px 80px;
        margin-bottom: 10px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        color: var(--secondary-color);
        transition: transform 0.3s ease, background 0.3s ease;
    }

        .custom-service li:hover {
            /* background-color: #f9fff9; */
            transform: translateX(5px);
        }

        /* Icon Styling */
        .custom-service li img {
            width: 5%;
            position: absolute;
            left: 20px;
            top: 0px;
            background: #e8f5e9;
            padding: 5px;
            border-radius: 50%;
            box-shadow: 0 0 0 4px #f1fdf4;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .Servicelist-container {
        padding: 20px;
        margin: 30px 15px;
    }

    .custom-service li {
        font-size: 16px;
        padding: 16px 16px 16px 70px;
    }

        .custom-service li img {
            top: 10px;
            width: 8%;
        }
}

@media (max-width: 480px) {
    .custom-service li {
        font-size: 15px;
        padding: 14px 14px 14px 70px;
    }

        .custom-service li img {
            font-size: 16px;
            width: 10%;
        }
}

.content-img {
    display: flex;
    width: 100%;
}

.vission-mission {
    max-width: 1200px;
    margin: auto;
    background-color: var(--bg-dark);
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top: 6px solid #093153;
    border-bottom: 6px solid #093153;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .vission-mission:hover {
        transform: translateY(-2px);
        /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); */
    }

    .vission-mission .tit-head {
        color: var(--primary-color);
        margin-bottom: 16px;
        font-size: 28px;
        font-weight: 600;
    }

    .vission-mission .tit-parag {
        color: var(--secondary-color);
        font-size: 16px;
        line-height: 1.6;
    }

/* Optional: Responsive */
@media (max-width: 600px) {
    .vission-mission {
        padding: 20px;
    }

        .vission-mission .tit-head {
            font-size: 24px;
        }

        .vission-mission .tit-parag {
            font-size: 15px;
        }
}



/* Responsive Design */

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(253, 81, 81);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease;
}

    .loading-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-secondary);
    z-index: 9999;
    transition: width 0.1s ease;
}
/* ---------- ** END ** ---------- */
/* ---------- Water Works Department ---------- */

/* ---------- ** START ** ---------- */
/* ---------- Solid Waste Department ---------- */

/* ---------- General Reset and Variables ---------- */

h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    letter-spacing: 5px;
}

/* ---------- Main Content Area ---------- */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

    .page-header h1 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-header p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
}

    .breadcrumb a {
        color: var(--text-light);
        transition: color 0.3s;
    }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

    .breadcrumb span {
        color: var(--text-light);
    }

.content-section {
    padding: 60px 20px;
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.content-box {
    background: var(--bg-mid);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .content-box h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .content-box p {
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 15px;
    }

.section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    /* background: #ffffff; */
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.container-News {
    background: var(--bg-dark);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var();
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    margin: auto;
    position: relative;
    width: 100%;
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

.notice-head {
    text-align: center;
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.budget-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

    .budget-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .budget-btn:hover::before {
        left: 100%;
    }

    .budget-btn:hover {
        transform: translateX(5px);
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
    }

    .budget-btn:active {
        transform: translateX(5px) scale(0.98);
    }

.btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.budget-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    .notice-head {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .budget-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .btn-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .notice-head {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .budget-btn {
        padding: 14px 18px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .btn-icon {
        font-size: 1.2rem;
    }
}

/* VISSION MISSION & HISTORY style */
.about-us {
    /* background-color:var(--bg-mid); */
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: auto;
}

    .about-us .ab {
        background-color: var(--bg-mid);
        border-bottom: 6px solid #2c3e50; /* Green accent line */
        border-top: 6px solid #2c3e50; /* Green accent line */
        padding: 25px 30px;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
    }

        .about-us .ab:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

    .about-us h4 {
        font-size: 22px;
        color: #0362b4;
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .about-us p {
        font-size: 16px;
        color: #ffffff;
        line-height: 1.7;
        text-align: justify;
    }

    .about-us i {
        font-size: 25px;
    }

@media (max-width: 768px) {
    .about-us {
        padding: 20px;
        grid-template-columns: 1fr;
    }
}
/* table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

thead {
    background-color: var(--bg-mid);
    color: white;
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid var(--primary-color);
}

tbody tr:hover {
    background-color: var(--bg-mid);
}

/* Zebra striping for rows */
tbody tr:nth-child(even) {
    background-color: var(--bg-dark);
}

/* Responsive Styles */
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

        thead tr {
            display: none;
        }

        tbody tr {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

    td {
        text-align: left;
        padding: 8px 10px;
        position: relative;
    }

        td::before {
            content: attr(data-label);
            font-weight: bold;
            display: block;
            color: #333;
            margin-bottom: 5px;
        }
}
/* topic styles */
.center-wrapper {
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.news-header {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stars {
    color: #ff2e2e;
    margin: 0 5px;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
}

.underline {
    display: inline-block;
    margin-top: 8px;
    height: 4px;
    width: 100px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: relative;
}

    .underline::before,
    .underline::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 5px;
        height: 5px;
        background-color: #ff2e2e;
        border-radius: 50%;
        transform: translateY(-50%);
    }

    .underline::before {
        left: -10px;
    }

    .underline::after {
        right: -10px;
    }

/*h2 {
    text-align: center;
    color: #b22222;
    margin-bottom: 10px;
}*/

.staff-card-container {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.staff-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 60px 20px;
    color: white;
    transition: transform 0.3s ease;
    cursor: pointer;
    /* z-index: 1; */
}

    .staff-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom right, rgba(0, 123, 255, 0.6), rgba(0, 123, 255, 0.3));
        z-index: 0;
    }

    .staff-card img,
    .staff-card h3 {
        position: relative;
        /* z-index: 1; */
    }

    .staff-card i {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .staff-card h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .staff-card::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -100%;
        width: 100%;
        height: 120%;
        background: linear-gradient(to top, #007bff, transparent 70%);
        border-radius: 100% 100% 0 0;
        transition: all 0.5s ease-in-out;
        z-index: 0;
    }

    .staff-card:hover {
        transform: translateY(-10px);
    }

        .staff-card:hover::after {
            bottom: 0;
        }

/* Background images per card */
.card1 {
    background-image: url('https://images.pexels.com/photos/4498159/pexels-photo-4498159.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260');
}

.card2 {
    background-image: url('https://images.pexels.com/photos/3997983/pexels-photo-3997983.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260');
}

.card3 {
    background-image: url('https://images.pexels.com/photos/3641593/pexels-photo-3641593.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260');
}

.card4 {
    background-image: url('https://images.pexels.com/photos/4226126/pexels-photo-4226126.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260');
}

.card5 {
    background-image: url('https://images.pexels.com/photos/4503266/pexels-photo-4503266.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260');
}

@media (max-width: 600px) {
    .staff-card {
        padding: 40px 15px;
    }

    .staff-card-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
}

/* Advanced List Container Styling */
.list-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
   
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

    /* Decorative vertical line */
    .list-container::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 30px;
        bottom: 30px;
        width: 4px;
        /* background: linear-gradient(to bottom, #284aa7, #6fcf97); */
        border-radius: 5px;
    }

/* List Styling */
.custom-list2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .custom-list2 li {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 17px;
        padding: 18px 20px 18px 80px;
        margin-bottom: 10px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        color: #333;
        transition: transform 0.3s ease, background 0.3s ease;
    }

        .custom-list2 li:hover {
            background-color: #f9fff9;
            transform: translateX(5px);
        }

        /* Icon Styling */
        .custom-list2 li img {
            width: 5%;
            position: absolute;
            left: 20px;
            top: 0px;
            background: #e8f5e9;
            padding: 5px;
            border-radius: 50%;
            box-shadow: 0 0 0 4px #f1fdf4;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .list-container {
        padding: 20px;
        margin: 30px 15px;
    }

    .custom-list2 li {
        font-size: 16px;
        padding: 16px 16px 16px 70px;
    }

        .custom-list2 li img {
            top: 10px;
            width: 8%;
        }
}

@media (max-width: 480px) {
    .custom-list2 li {
        font-size: 15px;
        padding: 14px 14px 14px 70px;
    }

        .custom-list2 li img {
            font-size: 16px;
            width: 10%;
        }
}

.content-img {
    display: flex;
    width: 100%;
}

.vission-mission {
    max-width: 1200px;
    margin: auto;
    background-color: var(--bg-mid);
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top: 6px solid #093153;
    border-bottom: 6px solid #093153;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .vission-mission:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .vission-mission h2 {
        color: #093153;
        margin-bottom: 16px;
        font-size: 28px;
        font-weight: 600;
    }

    .vission-mission p {
        color: #444;
        font-size: 16px;
        line-height: 1.6;
    }

/* Optional: Responsive */
@media (max-width: 600px) {
    .vission-mission {
        padding: 20px;
    }

        .vission-mission h2 {
            font-size: 24px;
        }

        .vission-mission p {
            font-size: 15px;
        }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(253, 81, 81);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease;
}

    .loading-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-secondary);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ---------- ** END ** ---------- */
/* ---------- Solid Waste Department ---------- */

/* ---------- ** START ** ---------- */
/* ---------- Internal Audit Department ---------- */

h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    letter-spacing: 5px;
}

/* ---------- Main Content Area ---------- */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

    .page-header h1 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-header p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
}

    .breadcrumb a {
        color: var(--text-light);
        transition: color 0.3s;
    }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

    .breadcrumb span {
        color: var(--text-light);
    }

.content-section {
    padding: 60px 20px;
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.content-box {
    background: var(--bg-mid);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .content-box h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .content-box p {
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 15px;
    }

.section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    /* background: #ffffff; */
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* VISSION MISSION & HISTORY style */
.about-us {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: auto;
}

    .about-us .ab {
        background-color: var(--bg-mid);
        border-bottom: 6px solid #2c3e50; /* Green accent line */
        border-top: 6px solid #2c3e50; /* Green accent line */
        padding: 25px 30px;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
    }

        .about-us .ab:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

    .about-us h4 {
        font-size: 22px;
        color: var( --text-light);
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .about-us p {
        font-size: 16px;
        color: var(--secondary-color);
        line-height: 1.7;
        text-align: justify;
    }

    .about-us i {
        font-size: 25px;
    }

@media (max-width: 768px) {
    .about-us {
        padding: 20px;
        grid-template-columns: 1fr;
    }
}

.responsive-table {
    overflow-x: auto;
    /* background-color: #fff; */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

table {
    border-collapse: collapse;
    max-width: 1200px;
    margin: auto;
}

th, td {
    padding: 12px 15px;
    border: 1px solid var(--primary-color);
    vertical-align: top;
    text-align: left;
    font-size: 14px;
}

th {
    background-color: var(--bg-mid);
    color: #fff;
}

tbody tr:nth-child(even) {
    background-color: var(--bg-mid);
}

tbody tr:hover {
    background-color: var(--bg-mid);
}

ul {
    padding-left: 20px;
    margin: 0;
}

li {
    margin-bottom: 6px;
}

small {
    font-size: 12px;
    color: #f0f0f0;
}

@media screen and (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

        thead tr {
            display: none;
        }

        tbody tr {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 10px;
            background-color: var(--bg-mid);
        }

    td {
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: left;
        font-size: 14px;
    }

        td::before {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 45%;
            white-space: normal;
            font-weight: bold;
            color: #1976d2;
        }

    tbody tr td:nth-child(1)::before {
        content: "No.";
    }

    tbody tr td:nth-child(2)::before {
        content: "Services Provided";
    }

    tbody tr td:nth-child(3)::before {
        content: "Required Documents";
    }

    tbody tr td:nth-child(4)::before {
        content: "Contact Officers";
    }
}

/* ---------- ** END ** ---------- */
/* ---------- Internal Audit Department ---------- */


/* ---------- ** START ** ---------- */
/* ---------- Health Department ---------- */
/* staff list container */

/* ---------- ** END ** ---------- */
/* ---------- Health Department ---------- */


/* ---------- ** START ** ---------- */
/* ---------- Veterinary Department ---------- */
/* staff list container */
.vstaff-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 15px;
    max-width: 1200px;
    margin: auto;
}

.vstaff-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .vstaff-card i {
        color: #001558;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .vstaff-card h3 {
        font-size: 18px;
        color: #333;
        margin: 0;
    }

    .vstaff-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .vstaff-card {
        width: 100%;
        max-width: 320px;
    }
}

.vete-list-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background-color: var(--bg-mid);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

    /* Decorative vertical line */
    .vete-list-container::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 30px;
        bottom: 30px;
        width: 4px;
        /* background: linear-gradient(to bottom, #284aa7, #6fcf97); */
        border-radius: 5px;
    }

/* List Styling */
.vete-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .vete-custom-list li {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 17px;
        padding: 18px 20px 18px 80px;
        margin-bottom: 10px;
        border-radius: 12px;
        background-color: var(--bg-mid);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        color: var(--secondary-color);
        transition: transform 0.3s ease, background 0.3s ease;
    }

        .vete-custom-list li:hover {
            background-color: var(--bg-mid);
            transform: translateX(5px);
        }

        /* Icon Styling */
        .vete-custom-list li img {
            width: 5%;
            position: absolute;
            left: 20px;
            top: 0px;
            background: var(--primary-color);
            padding: 5px;
            border-radius: 50%;
            box-shadow: 0 0 0 4px #f1fdf4;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .vete-list-container {
        padding: 20px;
        margin: 30px 15px;
    }

    .vete-custom-list li {
        font-size: 16px;
        padding: 16px 16px 16px 70px;
    }

        .vete-custom-list li img {
            top: 10px;
            width: 8%;
        }
}

@media (max-width: 480px) {
    .vete-custom-list li {
        font-size: 15px;
        padding: 14px 14px 14px 70px;
    }

        .vete-custom-list li img {
            font-size: 16px;
            width: 10%;
        }
}

/*START*/
/**/
/* Advanced List Container Styling */
.Ayurvedic-list-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background: var(--bg-mid);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

    .Ayurvedic-list-container h3 {
        color: var(--primary-color);
        text-align: center;
    }

    /* Decorative vertical line */
    .Ayurvedic-list-container::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 30px;
        bottom: 30px;
        width: 4px;
        /* background: linear-gradient(to bottom, #284aa7, #6fcf97); */
        border-radius: 5px;
    }

/* List Styling */
.Ayurvedic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .Ayurvedic-list li {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 17px;
        padding: 18px 20px 18px 80px;
        margin-bottom: 10px;
        border-radius: 12px;
        background-color: var(--bg-mid);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        color: #ffffff;
        transition: transform 0.3s ease, background 0.3s ease;
    }

        .Ayurvedic-list li:hover {
            background-color: var(--bg-dark);
            transform: translateX(5px);
        }

        /* Icon Styling */
        .Ayurvedic-list li img {
            width: 5%;
            position: absolute;
            left: 20px;
            top: 0px;
            background: var(--primary-color);
            padding: 5px;
            border-radius: 50%;
            box-shadow: 0 0 0 4px #f1fdf4;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .Ayurvedic-list-container {
        padding: 20px;
        margin: 30px 15px;
    }

    .Ayurvedic-list li {
        font-size: 16px;
        padding: 16px 16px 16px 70px;
    }

        .Ayurvedic-list li img {
            top: 10px;
            width: 8%;
        }
}

@media (max-width: 480px) {
    .Ayurvedic-list li {
        font-size: 15px;
        padding: 14px 14px 14px 70px;
    }

        .Ayurvedic-list li img {
            font-size: 16px;
            width: 10%;
        }
}


/* END */

/* ---------- ** START ** ---------- */
/*Public Assistance and Welfare Service Department*/

/*TABLE*/
.publicWelfDep-tb {
    overflow-x: auto;
    /* background-color: #fff; */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.publicWelfDep-tb table {
    border-collapse: collapse;
    max-width: 1200px;
    margin: auto;
}

    .publicWelfDep-tb table th, td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        vertical-align: top;
        text-align: left;
        font-size: 14px;
    }

 th {
    background-color: #2c3e50;
    color: #fff;
}

tbody tr:nth-child(even) {
/*    background-color: #f9f9f9;*/
}

tbody tr:hover {
/*    background-color: #e3f2fd;*/
}

ul {
    padding-left: 20px;
    margin: 0;
}

li {
    margin-bottom: 6px;
}

small {
    font-size: 12px;
    color: #f0f0f0;
}

@media screen and (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

        thead tr {
            display: none;
        }

        tbody tr {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 10px;
            background-color: #fff;
        }

    td {
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: left;
        font-size: 14px;
    }

        td::before {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 45%;
            white-space: normal;
            font-weight: bold;
            color: #1976d2;
        }

    tbody tr td:nth-child(1)::before {
        content: "No.";
    }

    tbody tr td:nth-child(2)::before {
        content: "Services Provided";
    }

    tbody tr td:nth-child(3)::before {
        content: "Required Documents";
    }

    tbody tr td:nth-child(4)::before {
        content: "Contact Officers";
    }
}

.accordion {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 10px;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--bg-mid);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .accordion:hover {
        background-color: var(--latest-highlight);
    }

    .accordion h2 {
        margin: 0;
        padding: 15px;
        color: var(--secondary-color);
        cursor: pointer;
        font-size: 18px;
        text-align: left;
    }

    .accordion .accordion-content {
        display: none;
        overflow: hidden;
        padding: 15px;
        animation: fadeIn 0.3s ease-in-out;
    }
.accordion-content ol,
.accordion-content p {
    margin: 20px;
    color: var(--secondary-color);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .accordion {
        margin: 20px;
    }

    h2 {
        font-size: 16px;
        padding: 12px;
    }

    .accordion .accordion-content {
        padding: 10px;
    }
}

/* ---------- ** END ** ---------- */
/* ---------- Public Assistance and Welfare Service Department ---------- */

/* ---------- ** START ** ---------- */
/* ---------- Play Ground Department ---------- */
.PlayGround-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 15px;
    max-width: 1200px;
    margin: auto;
}

.PlayGround-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .PlayGround-card i {
        color: #001558;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .PlayGround-card h3 {
        font-size: 18px;
        color: #333;
        margin: 0;
    }

    .PlayGround-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .PlayGround-card {
        width: 100%;
        max-width: 320px;
    }
}

.Other-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.Other-card {
    background-color: var(--text-light: #aaaaaa);
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .Other-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .Other-card h2 {
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        color: #fff;
        margin: 0;
        padding: 15px 20px;
        font-size: 1.2rem;
    }

    .Other-card p {
        padding: 0 20px;
        margin: 15px 0;
        color: var(--secondary-color);
    }

    .Other-card ol, .Other-card ul {
        padding: 0 20px 20px 40px;
        margin: 0;
    }

    .Other-card li {
        margin-bottom: 8px;
        color: var(--secondary-color);
        line-height: 1.6;
        position: relative;
    }

        .Other-card li::before {
/*            content: "✔";*/
            position: absolute;
            left: -25px;
            color: #2575fc;
            font-size: 0.9rem;
            top: 3px;
        }

hr.divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 20px 10px;
}

@media (max-width: 768px) {
    .Other-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .Other-card h2 {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .Other-card li {
        font-size: 0.95rem;
    }
}


.PlayG-table {
    overflow-x: auto;
    background-color: var(--bg-mid);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin: 20px 0;
}

    .PlayG-table table {
        border-collapse: collapse;
        width: 100%;
        max-width: 1200px;
        margin: auto;
        background-color: var(--bg-mid);
    }

    .PlayG-table th,
    .PlayG-table td {
        padding: 12px 15px;
        border: 1px solid var(--primary-color); /* Lightened for cleaner look */
        vertical-align: middle;
        text-align: left;
        font-size: 14px;
    }

    .PlayG-table th {
        background-color: var(--latest-highlight);
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .PlayG-table tbody tr:nth-child(even) {
        background-color: var(--bg-dark);
    }

    /* Specific styling for the Playground Name column */
    .PlayG-table td[rowspan] {
        font-weight: bold;
        background-color: var(--bg-mid);
        color: var(--secondary-color);
        border-right: 2px solid var(--primary-color);
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .PlayG-table table,
    .PlayG-table thead,
    .PlayG-table tbody,
    .PlayG-table th,
    .PlayG-table td,
    .PlayG-table tr {
        display: block;
    }

        .PlayG-table thead tr {
            display: none;
        }

        .PlayG-table tbody tr {
            margin-bottom: 15px;
            border: 1px solid var(--primary-color);
            border-radius: 6px;
            overflow: hidden;
            background-color: var(--bg-mid) !important;
        }

    .PlayG-table td {
        border: none;
        position: relative;
        padding-left: 50% !important;
        text-align: left;
        min-height: 40px;
        border-bottom: 1px solid #eee;
    }

        /* Target the Playground Name cell (rowspan cells) */
        .PlayG-table td[rowspan] {
            background-color: var(--bg-dark) !important;
            color: white !important;
            padding-left: 15px !important;
            width: 100%;
            box-sizing: border-box;
        }

            .PlayG-table td[rowspan]::before {
/*                content: "Playground: ";*/
                font-size: 10px;
                text-transform: uppercase;
                display: block;
                margin-bottom: 4px;
                color: #bdc3c7;
            }

        /* Labels for the data rows */
        .PlayG-table td:not([rowspan])::before {
            position: absolute;
            top: 12px;
            left: 15px;
            width: 40%;
            font-weight: bold;
            color: var(--secondary-color);
            white-space: nowrap;
        }

    /* Dynamic Labeling Logic */
    /* If row has 4 columns (The First row of a group) */
    .PlayG-table tr td:nth-child(2)::before {
        content: "Facility:";
    }

    .PlayG-table tr td:nth-child(3)::before {
        content: "Current Fee:";
    }

    .PlayG-table tr td:nth-child(4)::before {
        content: "Proposed Fee:";
    }

    /* If row has 3 columns (Sub-rows under a rowspan) */
    .PlayG-table tr td:not([rowspan]):first-child::before {
        content: "Facility:";
    }

    .PlayG-table tr td:not([rowspan]):nth-child(2)::before {
        content: "Current Fee:";
    }

    .PlayG-table tr td:not([rowspan]):nth-child(3)::before {
        content: "Proposed Fee:";
    }

    /* Special case for the Helicopter row (2 columns) */
    .PlayG-table tr td:only-child::before {
        content: "Action:";
    }
}

/* ---------- ** END ** ---------- */
/* ---------- Play Ground Department ---------- */

/* ---------- ** START ** ---------- */
/* ---------- Fire and Disaster Management Services Department ---------- */

.fire-brigadecard-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 15px;
    max-width: 1200px;
    margin: auto;
}

.fire-brigadecard {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .fire-brigadecard i {
        color: #001558;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .fire-brigadecard h3 {
        font-size: 18px;
        color: #333;
        margin: 0;
    }

    .fire-brigadecard:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .fire-brigadecard {
        width: 100%;
        max-width: 320px;
    }
}

/* ---------- ** END ** ---------- */
/* ---------- Fire and Disaster Management Services Department ---------- */


/* ---------- ** START ** ---------- */
/* ---------- Land Division ---------- */
.steps-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: var(--bg-mid);
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-left: 10px;
}

.step-number {
    background-color: var(--bg-mid);
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.step-content {
    background: var(--bg-mid);
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

    .step-content i {
        color: #2a9d8f;
        font-size: 18px;
        margin-top: 2px;
    }

    .step-content p {
        margin: 0;
        line-height: 1.6;
    }

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-content {
        flex-direction: column;
        gap: 8px;
    }

    .step-number {
        margin-bottom: 10px;
    }

    .step-content i {
        margin-top: 0;
    }
}