body {
    font-family: Arial, Helvetica, sans-serif !important;
}

/*Dataload*/
#DataLoad {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

    #DataLoad thead {
        background-color: #154063;
        color: #ffffff;
    }

    #DataLoad th,
    #DataLoad td {
        padding: 8px 16px;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
        font-size: 0.95rem;
    }

    #DataLoad tbody tr:hover {
        background-color: #f1f1f1;
        transition: background-color 0.2s ease;
    }

    #DataLoad th {
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
/*Dataload*/

.ClHeader {
    background-color: #154063;
}

    .ClHeader p {
        color: white;
        font-size: 25px;
        margin: auto;
    }

.subHeader {
    padding: 25px 15px;
}

.ClBody {
    margin-top: 10px;
}

    .ClBody p {
        color: navy;
        font-size: 16px;
    }

    .ClBody h2 {
        color: #000;
    }

.dataTables_wrapper {
    padding: 0px 15px;
}

.tab-container {
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    padding: 10px;
}

.tab-button {
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-left: 10px;
    background-color: #154063;
    cursor: pointer;
}

    .tab-button:hover {
        background-color: #154063bf;
        color: white;
    }


.btn-simple {
    padding: 8px 16px;
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

    .btn-simple:hover {
        background-color: #45a049;
    }

.ClHeader p1 {
    color: white;
    /*font-size:25px;
                margin:auto;*/
}

.Jqdisplay {
    width: 100% !important;
}

.ClBody2 {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-decor {
    /*width: 100%;*/
    min-height: 100vh;
    /*background: linear-gradient(135deg, #dbeafe, #f0f4f8);*/
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-box {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
}

    .contact-box h2 {
        text-align: center;
        margin-bottom: 10px;
        color: #000;
    }

.subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-box label {
    display: block;
    margin-bottom: 6px;
    color: #555;
    font-weight: 500;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #fafafa;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .contact-box input:focus,
    .contact-box textarea:focus {
        border-color: #154063;
        outline: none;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    }

.contact-box button {
    width: 100%;
    padding: 14px;
    background-color: #154063;
    border: none;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .contact-box button:hover {
        background-color: #154063bf;
    }

/*Home*/
h2 {
    color: #222;
    margin-bottom: 12px;
    font-weight: 700;
    /*letter-spacing: 0.03em;*/
}

p {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
}

.text-container {
    flex: 2;
    /*padding: 0 10px;*/
}

/* Responsive */
@media (max-width: 900px) {
    .section {
        flex-direction: column;
        padding: 30px 20px;
        max-width: 90%;
        margin: 25px auto;
    }

        .section:nth-child(even) {
            flex-direction: column;
        }

    .text-container {
        padding: 0;
    }

        .text-container p:first-of-type::first-letter {
            font-size: 2.5rem;
            padding-right: 6px;
        }
}

footer {
    background-color: #222;
    color: #eee;
    text-align: center;
    padding: 20px 0;
    margin-top: 10px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 -3px 8px rgba(0,0,0,0.3);
    font-family: Arial, Helvetica, sans-serif;
    user-select: none;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 25px 25px;
    max-width: 1100px;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
    background: #fff;
    transition: transform 0.3s ease;
}

/*new*/

.text-container h2 {
    color: #000;
    margin-bottom: 20px;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.committee-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: center;
}

    .committee-card h3 {
        margin-top: 0;
        color: #000;
    }

    .committee-card p {
        margin: 5px 0;
        font-size: 14px;
        color: #444;
    }

.info-block p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}


/*slider*/

.slider-container {
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    padding: 10px 0;
}

.slider-text {
    display: inline-block;
    white-space: nowrap;
    animation: slide-left 15s linear infinite;
    font-size: 1.2em;
    color: #333;
    padding-left: 100%;
}

@keyframes slide-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

#writeUsSection {
    position: relative;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    max-width: 400px;
    width: 90%;
    margin-left: 400px;
}

    .contact-card h2 {
        text-align: center;
        color: #333;
        margin-bottom: 25px;
    }

.contact-item {
    margin-bottom: 20px;
}

.label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
    font-size: 14px;
}



.link {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
}

.back-btn {
    margin-top: 20px;
    background-color: #ddd;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.back-link {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 14px;
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}

@media (max-width: 500px) {
    .contact-card {
        padding: 20px;
    }
}
