<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;family=Ubuntu:wght@400;500;700&amp;display=swap');

/* Prevent horizontal scrolling */
body,
html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

.toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    /* background: rgba(255, 255, 255, 0.15); */
    background: whitesmoke;
    /* semi-transparent */
    /* color: #ffffff; */
    color: crimson;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-size: 15px;
    font-weight: 500;
    min-width: 280px;
    max-width: 90%;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    word-break: break-word;
    font-weight: 500;
    color: #1D3956;
}

.toast-progress {
    height: 3px;
    width: 100%;
    margin-top: 10px;
    background-color: #17DF9D;
    /* or dynamic via JS */
    transform-origin: left;
    /* &lt;--- this is KEY */
    animation: slideLeft 3s linear forwards;
    border-radius: 4px;
}

@keyframes slideLeft {
    from {
        transform: scaleX(1);
        /* full width */
    }

    to {
        transform: scaleX(0);
        /* shrink to zero */
    }
}

/* Mobile adjustments */
@media screen and (max-width: 480px) {
    .toast {
        font-size: 14px;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .toast-icon {
        font-size: 18px;
    }
}



.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-row .info-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: inline-block;
}

/* === MEMBERS SEARCH SECTION STYLING === */

.member-details {
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-details .container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);

}


.note-box {
    background-color: #fff7f7;
    border: 1px solid #ffcccc;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #a94442;
    font-size: 15px;
}

.search-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    /* align-items: flex-end; */
    margin-bottom: 25px;

}

.form-group {
    display: flex;
    flex-direction: row;
    min-width: 250px;
}

.form-group h2 {
    margin: 0 0 5px 5px;
    font-size: 16px;
    font-weight: 600;
}

.search-container input[type="text"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.search-btn {
    background-color: #DC143C;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: fit-content;
}

.search-btn:hover {
    background-color: #c01234;
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.card h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    margin: 6px 0;
    color: #555;
}

.card i {
    margin-right: 6px;
}

.view-bill {
    background-color: #fff;
    color: #DC143C;
    border: 2px solid #DC143C;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.view-bill:hover {
    background-color: #DC143C;
    color: #fff;
}

.view-receipt {
    background-color: #1D3956;
    color: white;
    border: 2px solid #1D3956;
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.view-receipt:hover {
    background-color: white;
    color: #1D3956;
}

.bill-section {
    margin-top: 15px;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

#vehicleImage1,
#vehicleImage2 {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
}




.max-width {
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
}

.gallery {
    padding: 50px 0;
    background: #fff;
}

.gallery-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    -webkit-overflow-scrolling: touch;
}

.gallery-track {
    display: flex;
    gap: 20px;
    scroll-snap-align: start;
    padding: 10px;
}

.gallery-track img {
    width: 90vw;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    scroll-snap-align: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}



.gallery-track img:hover {
    transform: scale(1.03);
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.gallery-item .caption {
    font-size: 16px;
    color: #333;
    margin-top: 8px;
    text-align: center;
}





/* Navbar Styling */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 15px 0;
    background: crimson;
    transition: all 0.3s ease-in-out;
}

/* Shrink navbar on scroll */
.navbar.shrink {
    padding: 5px 0;
    background: crimson;
    /* Optional: Change color on shrink */
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.navbar .logo a span {
    color: crimson;
    transition: all 0.3s ease;
}



.navbar.sticky .logo a span {
    color: #fff;
}

.logo img {
    /* padding-top: ; */
    width: 70px;
    border-radius: 30%;
    margin-left: -150px;
    height: auto;
    display: inline-block;
}

/* Added Menu Btn */
.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: crimson;
}

.navbar.sticky .menu li a:hover {
    color: #fff;
}





/* Media Query for Responsive Adjustments */
@media (max-width: 768px) {
    .logo img {
        width: 50px;
        margin-left: 0;
        border-radius: 30%;
    }
}



.navbar .menu li {
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: crimson;
}


.navbar.sticky .menu li a:hover {
    color: #fff;
}


.menu-btn {
    display: none;
    font-size: 23px;
    cursor: pointer;
    color: #fff;

}


.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: crimson;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover {
    filter: brightness(90%);
}

/* Home Section */
.home {
    display: flex;
    background: url("https://raw.githubusercontent.com/9vishwashah/NEWSIDDHIVINAYAKCHS/main/asset/blob-scene-haikei.svg") no-repeat;
    height: 100vh;
    min-height: 500px;
    color: #fff;
    background-position: center;
    background-size: cover;
    font-family: 'Ubuntu', sans-serif;
}

.home .max-width {
    margin: auto 0 auto 30px;
}



.home .home-content .text-1 {
    font-size: 27px;
    margin-bottom: 10px;
}

.home .home-content .text-2 {
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}


.home .home-content .text-3 {
    font-size: 20px;
    margin: 5px 0;
}

.home .home-content .text-3 span {
    color: crimson;
    font-weight: 500;
}

.home .home-content a {
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease;
    text-align: center;
}

.home .home-content a:hover {
    background: none;
    color: crimson;
}

section {
    padding: 50px 0;
}

footer {
    background: crimson;
    padding: 15px 23px;
    color: black;
    text-align: center;
}

footer span a {
    color: white;
    text-decoration: bold;
}

footer span a:hover {
    text-decoration: underline;
}

.about,
.services,
.skills,
.teams,
.contact,
footer {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

section .title::after {
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: crimson;
    padding: 5px;
    background: #fff;
    transform: translateX(-50%);
}

.txt {
    position: absolute;
    color: crimson;
    text-align: left;
    font-size: 20px;
    font-weight: 250;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}



@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before {
        content: "\f00d";
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active {
        left: 0;

    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        font-size: 20px;
        margin: 20px 0;
        font-size: 25px;
    }



    .home .home-content .text-2 {
        font-size: 32px;
        /* Increased */
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 1px;

        /* text-transform: uppercase; */
    }



    .home .home-content .text-3 {

        font-size: 16px;
        margin-top: 10px;
    }

    .home .home-content .text-3 span {

        color: crimson;
        font-weight: 600;
    }
}

@media (max-width: 600px) {
    .max-width {
        padding: 0 23px;
    }

    .home .home-content {
        padding: 10px;
    }

    .home .home-content .text-2 {
        /* font-size: clamp(24px, 5vw, 48px); */
        font-size: 32px;
        /* Increased */
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 1px;
    }

    .home .home-content .text-3 {
        font-size: 16px;
        margin-top: 10px;
    }

    .home .home-content a {
        font-size: clamp(14px, 3vw, 18px);
        padding: clamp(6px, 2vw, 10px) clamp(12px, 5vw, 20px);
    }
}

.container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}



@media (max-width: 768px) {
    .container {
        max-width: 50%;
        padding: 0 15px;
        margin: 0 auto;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

}


.title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

input[type="text"] {
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

.stats-image-container {
    text-align: center;
    /* Centers the title and image */
    margin-bottom: 20px;
    /* Adds spacing between each image */
}

.stats-image-container img {
    width: 100%;
    /* Ensures responsiveness */
    max-width: 500px;
    /* Prevents image from becoming too large */
    border-radius: 35px;
    /* Gives smooth curved edges */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional: Adds subtle shadow */
}

.image-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    /* Adds spacing between title and image */
}



.card {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* background-color: #803c3c; */
    animation: fadeIn 0.5s ease;
    background-color: whitesmoke;
    user-select: none;
    /* text-align: ke; */
}

.cardDetails {
    margin-top: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
    background-color: whitesmoke;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* white-space: nowrap; */

}

.cardDetails p {
    font-size: 15px;
    font-family: Arial, sans-serif;
    text-align: left;
    line-break: auto;
    line-height: 1.5;
    margin-bottom: 5px;
}





/* Styling for Display button in search */
.search-btn {
    background: crimson;
    /* Green color for distinction */
    color: #fff;
    font-size: 16px;
    padding: 8px 14px;
    /* Adjust padding */
    border-radius: 6px;
    border: 2px solid crimson;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
    margin-left: 10px;
    /* Add spacing from input */
}

.search-btn:hover {
    background: #fff;
    color: white;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;

}

.form-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.form-group label {
    min-width: 100px;
    /* Fixed label width */
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    /* padding-top: 2px; */
    padding-bottom: 10px;
    /* ✅ Prevent extra vertical spacing */
    margin: 0;
    white-space: nowrap;
    text-align: right;
}

.search-bar {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 2px solid crimson;
    border-radius: 6px;
    width: 100%;
    /* Ensure input stretches */
    box-sizing: border-box;
}

@media (max-width: 500px) {
    .form-group {
        flex-direction: row;
        align-items: left;
    }

    .form-group label {
        text-align: right;
        margin-bottom: 5px;
    }
}


.search-btn {
    background-color: crimson;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.search-btn:hover {
    background-color: darkred;
}


/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .search-btn {
        font-size: 14px;
        padding: 6px 10px;
        min-width: 90px;
    }
}


.contactDetails .cardDetails p {
    font-size: 15px;
    font-family: Arial, sans-serif;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 5px;
    text-align: left;
}


@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .card {
        padding: 15px;
        font-size: 16px;
    }

    .cardDetails p {
        font-size: 14px;
        line-height: 1.4;
        overflow: hidden;

    }

    .bill-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        /* Prevents wrapping */
    }

    .bill-section p {
        font-size: 24px;
        margin-right: 5px;
        flex-shrink: 0;
        overflow: visible;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .view-bill {
        font-size: 12px;
        padding: 6px 8px;
        min-width: auto;
        white-space: nowrap;
    }






    .cardDetails p span,
    #phnoLink,
    #email {
        display: inline-block;
        max-width: 100%;
        overflow: visible;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }

    #vehicleImage1,
    #vehicleImage2 {
        max-width: 100%;
        height: auto;
        display: block;
        margin-top: 10px;
    }
}


@media (max-width: 768px) {
    .contactDetails .cardDetails p {
        font-size: 20px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .contactDetails .cardDetails p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
}


.cardDetails img {
    width: 90%;
    height: 50%;
    object-fit: cover;
    background-color: rgb(29, 32, 138);
}

.BillingStats .title::after {
    content: "Members";
}

.penalty .title::after {
    content: "Penalty Records";
}

.Notice .title::after {
    content: "Rules and SOPS";
}

.gallery .title::after {
    content: "Festivals";
}

.member-details .title::after {
    content: "📱 Login";
}

.bankDetails .title::after {
    content: "Online Payment";
}

.suspense .title::after {
    content: "Verify";
}

.stats .title::after {
    content: "Overview";
}

.contact-form .title::after {
    content: "Query";
}

.contactDetails .title::after {
    content: "For Any Query";
}

.committee .title::after {
    content: "Members";
}

.card p {
    font-family: Arial, sans-serif;
    text-align: center;
    line-break: auto;
    line-height: 1.5;
    margin-bottom: 5px;
    text-align: left;
}

.card button {

    text-align: center;
    align-items: right;
    align-content: right;
}


.card h2 {
    margin-bottom: 10px;
}

.card h3 {
    color: #1D3956;
    margin-bottom: 2px;
}


.card img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    border-radius: 6px;
    background-color: red;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vehicle image container */
.vehicle-images-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* Spacing between images */
    margin-top: 10px;
    flex-wrap: wrap;
    /* Allow wrapping in case of multiple images */
}

.vehicle-image-container {
    display: inline-block;
    width: 50px;
    /* Adjust the width as needed */
    height: 50px;
    /* Adjust the height as needed */
    overflow: hidden;
    border-radius: 8px;
    /* Rounded corners for the container */
    border: 2px solid #ddd;
    /* Border around the image container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Shadow effect */
    padding: 5px;
    /* Padding inside the container */
    background-color: #952424;
    /* Background color for the container */
    text-align: center;
}

.vehicle-image-container img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
    border-radius: 6px;
    /* Rounded corners on the image itself */
}

/* Adjust the layout if there are more than one image */
.vehicle-images-container img {
    margin-bottom: 10px;
}

.red-text {
    color: red;
    /* Red text color */
    font-size: 24px;
    /* Larger text size */
    font-weight: bold;
    /* Optional: Make the text bold */
    margin-top: 10px;
    /* Optional: Add some space above the text */
}

.red-text::before {
    /* content: "₹"; */
    /* Add Rupees symbol before the amount */
    font-size: 18px;
    /* Smaller size for the Rupees symbol */
    margin-right: 5px;
    /* Space between symbol and amount */
    vertical-align: middle;
    /* Align the symbol properly */
}

.green-text {
    content: "₹";
    color: green;
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}


.suspense-image {
    width: 100%;
    /* Make the image responsive, taking the full width of the container */
    height: auto;
    /* Maintain aspect ratio */
    max-width: 100%;
    /* Ensures it doesn't grow beyond its original size */
    display: block;
    margin: 0 auto;
    /* Centers the image horizontally */
}

/* Media Query for Mobile Devices */
@media screen and (max-width: 600px) {
    .suspense-image {
        width: 100%;
        /* Image takes up 100% width on smaller screens */
        height: 100%;
        scale: auto;
        /* Maintain aspect ratio */
    }
}


.bill-section {
    display: flex;
    justify-content: space-between;
    /* Align text left and button right */
    align-items: center;
    /* Vertically align elements */
    margin-bottom: 8px;
    padding: 8px 0;
    gap: 10px;
    width: 100%;
}

/* Ensure the text label takes full space */
.bill-section p {
    flex: 1;
    margin: 0;
    text-align: left;
    font-size: 16px;
    white-space: nowrap;
}

/* Force buttons to right end */
.bill-section button {
    /* margin-left: 140px; */
    margin-right: -300px;
    /* Push button to right */
}

/* Style buttons */
.view-bill {
    background: crimson;
    color: #fff;
    font-size: 16px;
    padding: 10px 16px;
    /* Set uniform padding */
    border-radius: 20px;
    border: 2px solid crimson;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
    /* Set a fixed width for consistency */
    text-align: center;
    align-items: center;
    /* Ensure text is centered */
    display: inline-block;
}


.view-bill:hover {
    background: #fff;
    color: crimson;
}

@media screen and (max-width: 768px) {
    .bill-section {
        flex-direction: row;
        /* Keep items in a row */
        align-items: center;
        gap: 5px;
    }

    .bill-section p {
        font-size: 14px;
    }

    .bill-section button {
        padding: 4px;
        font-size: 12px;
        height: 35px;
        min-width: 100px;
        margin-right: -190px;
    }
}




.map-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    /* Avoid extra space below iframe */
    padding: 0;
    margin: 0;
    border: none;
}

/* Ensure footer is directly attached */
footer {
    background: crimson;
    padding: 15px 23px;
    color: black;
    text-align: center;
    margin: 0;
    /* Remove default margin */
}




.contact-form {
    display: flex;
    flex-direction: column;
    /* Ensures vertical stacking */
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    width: 100%;
}

.title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    /* Space between title and form */
    color: #333;
}

.form-cardDetails {
    width: 100%;
    max-width: 500px;
    padding: 25px;
    border-radius: 20px;
    background: whitesmoke;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.5s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-cardDetails textarea {
    min-height: 100px;
    /* Ensures text area is well-spaced */
    resize: vertical;
    /* Allows resizing */
}

.form-cardDetails h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.form-cardDetails form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-cardDetails input,
.form-cardDetails textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    font-family: 'Ubuntu', sans-serif;
    transition: border 0.3s ease;
}


.form-cardDetails input:focus,
.form-cardDetails textarea:focus {
    border-color: crimson;
    outline: none;
}

.form-cardDetails button {
    background: crimson;
    color: white;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Ubuntu', sans-serif;
    transition: background 0.3s ease;
}

.form-cardDetails button:hover {
    background: #fff;
    color: crimson;
    /* border-color: crimson; */
    border: 2px solid crimson;
}

@media (max-width: 600px) {
    .form-cardDetails {
        max-width: 90%;
    }

    .title {
        font-size: 24px;
    }

    .form-cardDetails h3 {
        font-size: 20px;
    }

    .form-cardDetails input,
    .form-cardDetails textarea {
        font-size: 14px;
        /* gap: 10; */
    }
}

/* Modal (Popup) Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Modal Image */
.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: fadeIn 0.5s ease-in-out;
}

/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #ccc;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.committee {
    background: white;
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
}

.committee .title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Carousel Container - Increased size */
.carousel-container {
    display: flex;
    overflow: hidden;
    position: relative;
    /* width: 40vw; */
    /* Increase width to prevent edge visibility */
    justify-content: center;
    padding: 20px 0;
    /* Extra padding to remove visible edges */
    margin: -10px auto;
    /* Adjust margins */
}

/* Carousel Track */
.carousel-track {
    display: flex;
    gap: 25px;
    /* Increased spacing */
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
}

.committee-card {
    min-width: 240px;
    max-width: 300px;
    background: whitesmoke;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
    backface-visibility: hidden;
    perspective: 1000px;
}



.committee-card:hover {
    background: crimson;
    /* Changes background to red */
    transform: scale(1.05);
    color: white;
    /* Changes text color for contrast */
}

.committee-card:hover .name {
    color: white;
    /* Ensures name remains visible */
}

.committee-card:hover p {
    color: white;
    /* Ensures role text remains visible */
}

.committee-card:hover .image-container {
    border: 5px solid white;
}

/* Circular Image Container */
.image-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid crimson;
    margin: auto;
}

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

/* Name &amp; Role */
.committee-card .name {
    font-size: 20px;
    font-weight: bold;
    margin-top: 12px;
    color: #111;
}

.committee-card p {
    font-size: 16px;
    color: crimson;
    margin-top: 6px;
}

/* 🔹 Mobile View (Small Screens) */
@media (max-width: 768px) {
    .committee .title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .carousel-track {
        gap: 15px;
    }

    .committee-card {
        min-width: 220px;
        max-width: 260px;
        padding: 15px;
    }

    .image-container {
        width: 120px;
        height: 120px;
    }

    .committee-card .name {
        font-size: 18px;
    }

    .committee-card p {
        font-size: 14px;
    }
}

/* 🔹 Extra Small Screens */
@media (max-width: 480px) {
    .committee .title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .committee-card {
        min-width: 200px;
        max-width: 240px;
        padding: 12px;
    }

    .image-container {
        width: 110px;
        height: 110px;
    }

    .committee-card .name {
        font-size: 16px;
    }

    .committee-card p {
        font-size: 13px;
    }
}

/* Popup Overlay */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    /* Hidden by default */
    z-index: 1000;
}

.popup-box {
    padding: 20px;
}

.close-popup {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    background-color: crimson;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/* Important Message Styling */
.important-msg {
    background: rgba(255, 99, 71, 0.1);
    /* Light crimson background */
    border-left: 4px solid crimson;
    padding: 10px;
    color: black;
    margin-top: 10px;
    font-size: 12px;
    text-align: left;
}

/* Warning Message */
.warning {
    background: rgba(255, 0, 0, 0.1);
    /* Light red background for warning */
    font-weight: bold;
}

/* Close Button */
.close-popup {
    background: crimson;
    color: #fff;
    font-size: 16px;
    padding: 10px 16px;
    border-radius: 6px;
    border: 2px solid crimson;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.close-popup:hover {
    background: #fff;
    color: crimson;
    border: 2px solid crimson;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styling */
@media screen and (max-width: 600px) {
    .popup-box {
        width: 95%;
        padding: 15px;
    }

    .popup-box h2 {
        font-size: 16px;
    }

    .popup-box p {
        font-size: 13px;
    }
}

.note-box {
    background-color: rgba(255, 0, 0, 0.1);
    /* Light yellow background */
    border-left: 5px solid crimson;
    /* Orange left border */
    padding: 10px;
    margin: 10px 0;
    text-align: left;
    border-radius: 5px;
    /* font-family: Arial, sans-serif; */
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    color: black;
}

.note-box p {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin: 0;
    /* display: flex; */
    /* align-items: center; */
}

.rule-divider {
    border: 0;
    height: 1px;
    margin: 12px 0;
    /* background: linear-gradient(to right, #ccc, #eee, #ccc); */
    border-bottom: 2px solid rgba(220, 220, 220, 0.9);
    /* opacity: 0.7; */
}



.payment-summary {
    background-color: whitesmoke;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 30px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.circle-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: auto;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__background {
    fill: none;
    /* stroke: #eee; */
    stroke: #eee;
    stroke-width: 10;
}

.progress-ring__circle {
    fill: none;
    stroke: crimson;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 502;
    /* 2πr for r = 80 */
    stroke-dashoffset: 502;
    transition: stroke-dashoffset 1s ease-out;
}

.count-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.count-number {
    font-size: 45px;
    font-weight: bold;
    /* color: crimson; */
    color: #1D3956;

}

.count-label {
    font-size: 14px;
    color: #444;
    margin-top: 5px;
}

.vehicle-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 20px;
}

.vehicle-box {
    text-align: center;
    color: crimson;

}

.vehicle-number {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}

.vehicle-label {
    font-size: 13px;
    color: #444;
}


/* Penalty */

.penalty-section {
    background: whitesmoke;
    padding: 16px;
    margin: 30px auto;
    border-radius: 20px;
    max-width: 1000px;
    font-family: 'Segoe UI', sans-serif;
    /* background: rgba(255, 255, 255, 0.7); */
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.penalty-section h3 {
    font-size: 20px;
    /* color: #DC143C; */
    margin-bottom: 20px;
}

/* ✅ Table Wrapper for Horizontal Scroll */
.penalty-table {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    min-width: 100%;
    height: auto;
    scrollbar-width: auto;
    scrollbar-color: #ccc #f8f8f8;
}




.penalty-header,
.penalty-row {
    min-width: 950px;
    display: grid;
    grid-template-columns: 100px 70px 130px 1fr 80px 90px 90px;
    padding: 6px 12px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
    font-size: 15px;
    /* border-bottom: 1px solid rgba(220, 220, 220, 0.5); */
    border-bottom: 1px solid rgba(220, 220, 220, 0.8);
}

.penalty-header {
    background: #ffe8eb;
    font-weight: bold;
    color: #DC143C;
    text-align: center;
    background: rgba(255, 228, 235, 0.8);
    /* Light pink tint with opacity */
    backdrop-filter: blur(5px);
}

.penalty-row:not(:last-child) {
    margin-bottom: 8px;
}

.penalty-bill {
    background-color: #DC143C;
    color: #fff;
    border: 2px solid #DC143C;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.penalty-bill:hover {
    background-color: white;
    color: #DC143C;
}

.penalty-receipt,
.penalty-bill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    background-color: #1D3956;
    color: white;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.penalty-bill {
    background-color: #DC143C;
    border: 2px solid #DC143C;
}


.penalty-receipt {
    background-color: #1D3956;
    color: #fff;
    border: 2px solid #1D3956;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.penalty-receipt:hover {
    background-color: white;
    color: #1D3956;
}




.penalty-rows .penalty-row {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(220, 220, 220, 0.5);
}

.penalty-row:hover {
    background-color: #fff0f3;
    transition: background-color 0.3s ease;
}


.penalty-toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3px;
    padding-top: 15px;
}

.penalty-toggle-buttons button {
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 6px;
    /* border: none; */
    background-color: #DC143C;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.penalty-toggle-buttons button:hover {
    background-color: white;
    color: crimson;
    border: 2px solid crimson;
}

.penalty-page-counter {
    text-align: center;
    font-size: 16px;
    margin-top: 5px;
    font-weight: 700;
    color: crimson;
}


/* ✅ Optional Badge Support */
.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: white;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.badge.paid {
    background-color: #28a745;
}

.badge.unpaid {
    background-color: #dc3545;
}

.penalty-box {
    background-color: rgba(255, 0, 0, 0.1);
    /* Light yellow background */
    border-left: 5px solid crimson;
    /* Orange left border */
    min-width: 800px;
    padding: 10px;
    margin: 10px 0;
    text-align: left;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: black;
}


/* ✅ Responsive Padding Only */
@media (max-width: 768px) {
    .penalty-section {
        padding: 16px;
        margin: 24px 12px;
    }

    .penalty-table {
        position: relative;
        overflow-x: scroll !important;
        overflow-y: hidden;
        scroll-behavior: smooth;
        min-width: 100%;
        height: auto;
        scrollbar-width: auto;
        scrollbar-color: #ccc #f8f8f8;
    }

    .penalty-box {
        background-color: rgba(255, 0, 0, 0.1);
        /* Light yellow background */
        border-left: 5px solid crimson;
        /* Orange left border */
        min-width: 800px;
        padding: 10px;
        margin: 10px 0;
        text-align: left;
        border-radius: 5px;
        font-family: Arial, sans-serif;
        font-size: 14px;
        color: black;
    }


}</pre></body></html>