* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'verdana', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    margin: 0;
}

.main-content {
    position: relative;
    margin: 15px auto;
}

/* Navigation bar style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #1e5799 0%, #2989d8 47%, #0086b2 100%, #207cca 100%);
    color: #fff;
    z-index: 100;
    font-size: 12px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: end;
    margin: 0 15px;
}

ul.nav-links-cutom:nth-child(1) {
    margin: 4px 0 0 10px;
    float: left;
    list-style: none;
    display: flex;
}

.nav-links-cutom .header-list {
    color: #FFF;
    align-items: center;
    display: flex;
    padding: 0 0 0 10px;
}

.nav-links-cutom li img {
    background-color: #fff;
}

.nav-links li {
    margin: 4px 5px 0 5px;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(to bottom, #1e5799 0%, #2989d8 47%, #0086b2 100%, #207cca 100%);
    border-color: #6c757d;
}

.mt-2 {
    margin: 10px 0 0 0;
}

/* Tab Style */
.tab {
    cursor: pointer;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    border-right: 1px solid #ccc;
}

    .tab:hover,
    .tab.active {
        background: #89ab20;
        margin: 5px 0;
        border-radius: 5px;
        padding: 5px 8px;
    }

.tabs-container {
    background: linear-gradient(to bottom, #1e5799 0%, #2989d8 47%, #0086b2 100%, #207cca 100%);
    color: #fff;
    display: flex;
    border-bottom: 1px solid #ccc;
}

.tab:last-child {
    border-right: none;
}


/* Styles for content sections */
.content-container {
    width: 50%;
    float: right;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    height: calc(100vh - 40px);
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-section {
    display: none;
}

    .content-section.active {
        display: block;
    }

/* Add slide-in animation from the right for content sections */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.content-section.active.animated {
    animation: slideInFromRight 0.5s ease-in-out;
}

/*@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.content-section.active.animated {
    animation: slideInFromTop 0.5s ease-in-out;  Apply the new animation 
}*/

/* Add slide-in animation from bottom to top for content sections */
/*@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.content-section.active.animated {
    animation: slideInFromBottom 0.5s ease-in-out;*/ /* Apply the new animation */
/*}*/


/* Image Slider Styles */

.image-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: calc(100vh - 40px);
    /* Adjust this height as needed */
    margin: 45px 0 0 0;
}

    .image-slider img {
        width: 100%;
        height: 100%;
        position: absolute;
        transition: opacity 0.5s ease-in-out;
        opacity: 0;
    }

.image-slider-container {
    width: 50%;
    float: left;
    height: calc(100vh - 40px);
    overflow: hidden;
}

.image-slider img.active {
    opacity: 1;
}


/* Under Line Styles*/

.heading-underline {
    width: 200px;
    margin: 10px auto 25px;
}

    .heading-underline .left {
        width: 90%;
        height: 5px;
        float: left;
        background-color: #0072bb;
    }

    .heading-underline .right {
        width: 10%;
        height: 5px;
        float: left;
        background-color: #d71a25;
    }

/* About Section Styles */

.container-about {
    height: calc(100% - 40px);
    overflow: auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

section.about-section {
    margin: 50px 0 0 0;
}

.about-section h2 {
    font-size: 16px;
    text-align: center;
}

.about-content h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 12px;
    margin-bottom: 10px;
}

.about-content .subtitle {
    color: #08387f;
    font-size: 12px;
    margin: 15px 0 5px 0;
}

.about-content p {
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.content-contact p {
    font-size: 12px;
    color: #000;
    line-height: normal;
    margin-bottom: 5px;
}
/* visitor count */
/*.visitors {
    position: absolute;
    top: auto;
    bottom: 0;
    left: auto;
    right: 15px;
}*/

.btn-visitor {
    background: #0086b2;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    margin: 10px 0 0 0;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
#documentid{
    margin-bottom:10px;
}
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed; 
}
/* Media Queries */
@media (max-width: 768px) {
    /* Adjust styling for screens up to 768px wide */
    .about-content {
        padding: 10px;
    }

    .image-slider-container {
        display: none;
    }

    .content-container {
        width: 100%;
        align-items: baseline;
    }

    .nav-links {
        justify-content: center;
    }

    ul.nav-links-cutom:nth-child(1) {
        float: none;
        justify-content: center;
    }

    section.about-section {
        margin: 60px 0 0 0;
    }
}

/* Media Queries */
@media (max-width: 576px) {
    /* Adjust styling for screens up to 576px wide */

    .about-content {
        padding: 10px;
    }

    .content-scroll {
        max-height: 280px;
    }
}

@media (max-width: 360px) {
    /* Adjust styling for screens up to 576px wide */

    .about-content {
        padding: 10px;
    }

    .content-scroll {
        max-height: 460px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    /* Adjust styling for screens from 577px to 768px wide */
    .about-content {
        padding: 15px;
    }

    .content-scroll {
        max-height: 350px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    /* Adjust styling for screens from 769px to 992px wide */
    .about-content {
        max-width: 600px;
    }
}

/* Add more media queries as needed for other screen sizes */
@media (min-width: 993px) and (max-width: 1200px) {

    /* Adjust styling for screens from 993px to 1200px wide */
    .about-content {
        max-width: 800px;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {

    /* Adjust styling for screens from 1201px to 1400px wide */
    .about-content {
        max-width: 1000px;
    }
}

@media (min-width: 1401px) {

    /* Adjust styling for screens larger than 1400px wide */
    .about-content {
        max-width: 1200px;
    }
}
