html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.mymodal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: .8;
}

.loader {
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 130px;
    position: fixed;
    top: 10%;
    left: 50%; /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

.accordion-header .accordion-button {
    font-weight: bold;
}

.table td {
    text-align: center;
    vertical-align: middle;
}

.table th {
    text-align: center; /* Horizontal alignment */
    vertical-align: middle; /* Vertical alignment */
}


.zoom {
    transition: transform .2s; /* Animation */
}

    .zoom:hover {
        transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
        transition: transform 0.3s ease-in-out;
    }

.required:after {
    content: " *";
    color: Red;
}

.acknowledgement {
    color: maroon;
    font-size: large;
    font-weight: bold;
}

.finalSubmit {
    color: green;
    font-weight: bold;
}

.serviceShortName {
    color: orange;
    background-color: black;
    float: right;
}

/*Stepper*/

.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 1px; /* Adjust top margin as needed */
}

.step {
    display: flex;
    align-items: center;
    position: relative;
    padding: 3px; /* Add padding for better hover effect */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.circle {
    width: 30px; /* Adjust circle size */
    height: 30px; /* Adjust circle size */
    border-radius: 50%;
    background-color: #6c757d; /* Default background color for pending steps */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px; /* Adjust font size of circle number */
}

.step-text {
    margin-left: 10px;
    font-weight: bold;
    color: #6c757d; /* Default text color for pending steps */
}

.line {
    flex: 1;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.12); /* Default line color */
    margin: 0 5px; /* Adjust line spacing */
}

.step.completed .circle {
    background-color: #28a745; /* Green for completed steps */
}

.step.completed .step-text {
    color: #6c757d; /* Keep text color unchanged for completed steps */
}

.step.active .circle {
    background-color: #007bff; /* Blue for active step */
}

.step.active .step-text {
    color: #6c757d; /* Keep text color unchanged for active steps */
}

.step:not(.active):not(.completed) {
    opacity: 0.5; /* Reduce opacity to visually indicate disabled state */
    pointer-events: none; /* Disable pointer events for non-active and non-completed steps */
}

.custom-checkbox {
    border: 2px solid grey; /* Blue border */
    width: 20px; /* Adjust checkbox size */
    height: 20px; /* Adjust checkbox size */
    cursor: pointer; /* Pointer on hover */
}

    .custom-checkbox:checked {
        background-color: #007bff; /* Blue background when checked */
        border-color: #0056b3; /* Darker border when checked */
    }

.decorative-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin: 20px 0;
    position: relative;
}

    .decorative-heading::before,
    .decorative-heading::after {
        content: "";
        flex: 1;
        height: 2px;
        background-color: black;
        margin: 0 15px;
    }

/* Card container with border */
.card-container {
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
}

.card-title {
    margin-bottom: 4px; /* Reduce space below the title */
}

.card p {
    margin-bottom: 2px; /* Reduce space between paragraphs */
}


.zoom-card {
    transition: all 0.3s ease-in-out;
    background-color: #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
}

    .zoom-card:hover {
        transform: scale(1.05);
        background-color: #e2f7ff;
        border: 2px solid #007bff;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    }

    .zoom-card .card-body {
        padding: 20px;
    }

    .zoom-card img {
        transition: transform 0.3s ease-in-out;
    }

    .zoom-card:hover img {
        transform: scale(1.1);
    }

/*latest style*/

.navbar {
    /*  background: linear-gradient(90deg, #8e44ad, #3498db); */
    background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /*  margin-top:20px; */
    padding: 10px 40px; /* Increased padding for spacing */
    max-width: 1400px; /* Limits width for proper spacing */
    margin: 8px auto; /* Centers the header */
}

.navbar-brand {
   /* font-size: 24px;*/
    font-weight: bold;
    color: #fff !important;
}

.navbar-nav .nav-link {
    /*font-size: 18px;*/
    color: #ffffff !important;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        /*background: rgba(255, 255, 255, 0.2);*/
        border-radius: 10px;
        transform: scale(1.05);
    }

.dashboard-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .dashboard-box i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .dashboard-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    /* Style for the numbers */
    .dashboard-box h3 {
        font-size: 1.8rem; /* Increase font size */
        margin: 10px 0; /* Add some margin */
        color: #fff; /* Ensure the text is white */
        font-weight: bold; /* Make it bold */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
        transition: all 0.3s ease-in-out; /* Smooth transition */
    }

    /* Hover effect for the numbers */
    .dashboard-box:hover h3 {
        transform: scale(1.1); /* Slightly enlarge the number on hover */
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); /* Enhance the shadow on hover */
    }

/* Individual Box Colors */
.total-users {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.pending-applications {
    background: linear-gradient(135deg, #ff9a44, #ff3d00);
}

.approved-applications {
    background: linear-gradient(135deg, #4caf50, #087f23);
}

.rejected-applications {
    background: linear-gradient(135deg, #b31217, #e52d27);
}

.citizen-registered {
    background: linear-gradient(135deg, #00bcd4, #006064);
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Service Box Styling */
.service-box {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .service-box i {
        font-size: 2rem;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.9);
    }

    .service-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* Background Animation */
    .service-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(45deg);
        transition: all 0.5s;
    }

    .service-box:hover::before {
        top: 0%;
        left: 0%;
    }

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #1E3C72, #2A5298, #00C9FF);
    padding: 15px 40px;
    /* color: white;*/
    padding: 15px 20px;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 0 auto;
    margin: 0 auto; /* Centers the header */
}

.header-text {
    /*flex-grow: 1;*/
    text-align: center;
}

    .header-text h4 {
        margin: 5px 0;
        font-size: 18px;
    }

.header-logo {
    width: 50px; /* Adjust size as needed */
    height: auto;
}

.left-logo {
    margin-right: 15px;
    height: 100px;
    width: 100px;
}

.right-logo {
    margin-left: 15px;
    height: 100px;
    width: 100px;
}

/* Marquee effect (Right to Left Scrolling) */
.scrolling-text-container {
    width: 100%;
    overflow: hidden;
    /*  background: linear-gradient(to right, #ff7e5f, #feb47b); */ /* Gradient Background */
    background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
    padding: 10px 0;
    /* border-radius: 8px;*/
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /*display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;*/
}

.scrolling-text p {
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
}

/* Keyframes for scrolling effect */
@keyframes scrollText {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Larger font and shadow for an attractive look */
.header-container h2 {
    /* font-size: 26px;*/
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin: 5px 0;
}
/*body {
    background: linear-gradient(90deg, #ffffff, #D3D3D3);
    background: linear-gradient(90deg, #ffffff, #F5F5DC);
     background: linear-gradient(90deg, #ffffff, #B0E0E6);
     background: linear-gradient(90deg, #ffffff, #FFFFE0);
     background: linear-gradient(90deg, #ffffff, #F0F0F0);
     background: linear-gradient(90deg, #ffffff, #E0FFFF);
}*/

/*body {
    background: linear-gradient(90deg, #ffffff, #F0F0F0);
}
*/

/*ThemeColor and font size*/

span.color, span.fontSize {
    cursor: pointer;
}

span.color {
    display: inline-block;
    width: .8em;
    height: .8em;
    border-radius: 50%;
}

span.fontSize {
    font-family: Monospace, serif;
    font-size: .8em;
    width: 1.4em;
    height: .7em;
    border-radius: 50%;
    padding-left: .5em;
    padding-right: .25em;
}
.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
   /* background: linear-gradient(90deg, #1E3C72, #2A5298, #00C9FF);*/
    padding: 15px 40px;
    color: white;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.left-logo {
    margin-right: 15px;
    height: 100px;
    width: 100px;
}

.right-logo {
    margin-left: 15px;
    height: 100px;
    width: 100px;
}

.footer-link {
    color: #FFD700; /* Gold color for contrast */
    text-decoration: none;
    font-weight: bold;
}

    .footer-link:hover {
        color: #FFA500; /* Orange color on hover */
        text-decoration: underline;
    }

.siteName {
    color: #FFD700;
   }

