body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;    
    background-image: url('/static/images/banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #333;
}

header {    
    background-image: url('/static/images/banner3.jpg');
    background-size: cover;
    background-position: right;
    height: 200px;
    color: #fff;
    padding: 20px;
    text-align: right;
    /* background-color: white;
    color: #333; */    
}
 

h1 {
    font-size: 2.5rem;
    margin: 0;
}



p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: justify;
    line-height: 1.8;
    font-weight: 400;
}

p span {
    font-weight: 700;
    color: #726e71;
    font-style: bold;
}


nav {
    background-color: #fff;
    color: white;
    padding: 1rem 4rem;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    font-family: 'Roboto', sans-serif;
    color: #6949db;
    /* color: #f5a623;*/
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;            
    padding: 10px 15px; /* Ensure even spacing */
    white-space: nowrap; /* Prevent text from wrapping */
}

nav a:hover {
    color: #3463fc;    
    background-color: #d6dfe2;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #2a80f0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #4118d4e7;
    
}

.dropdown:hover .dropdown-content {
    display: block;
}

section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
}

/* footer {
    background-color: white;
    color: #333;
    padding: 10px;
    text-align: center;
    margin-top: 30px;
} */
footer {
    background-color: #fff;   /* Same background color as in admin.html */
    color: white;              /* Set the text color to white */
    text-align: center;        /* Center-align the text horizontally */
    padding: 1rem;             /* Set padding to match admin footer */
    display: flex;             /* Use flexbox for centering */
    justify-content: center;   /* Center content horizontally */
    align-items: center;       /* Center content vertically */
    font-size: xx-small;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
}
th, td {
    padding: 10px;
    border: 1px solid #fcfcfc;
}
th {
    background-color: #8186c5;
    cursor: pointer;
    color: white;    
}
th:hover {
    background-color: #5f5dbd;
}

.chart-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* aligns to the right */
    padding: 1rem;
}
.pie-chart {
    flex: 1;
    display: flex;
    width: 100% !important;
    height: auto !important;

}

.services-list {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0;
    margin-top: 1rem;
}

.services-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    border-left: 4px solid #ececec;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.05);
}

.services-list li::before {
    /* content: '✔️  '; */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #2ecc71;
}
.responsive-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}


@media (max-width: 768px) {
    .bar-chart {
        display: none;
    }
    .contact-menu {
        display: none;
    }
    .about-content {
        display: block !important;
    }
    .about-image {
        width: 100% !important;
        height: auto !important;
        margin-top: 1rem;
    }
    .about-text, .about-spacer {
        width: 100% !important;
        display: block !important;
    }
    
}