:root {
    --primary-color: #ffb600;
    --primary-hover-color: #ff8e68;
    --white-color: #fff;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/*Logos*/
.logo {
    /*height: 70px;*/
    /*margin:10px;*/
}

.state-logo {
    position: absolute;
    margin-top: 100px;
    margin-left: 100px;
    z-index: 111;
}

.centre-logo {
    position: absolute;
    margin-top: 100px;
    margin-left: 200px;
    z-index: 111;
}
/*End Logos*/
/* Custom CSS for Bootstrap 5 Navbar */
.navbar-custom {
    /*background-color: var(--primary-color);*/ /* Change navbar background color */
    color: var(--primary-color); /* Change navbar text color */
    min-height: 80px;
    background: transparent;
    padding: 0;
}

.navbar-custom .navbar-brand {
    line-height: 80px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    float: left;
    padding:0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.navbar-custom .navbar-brand em {
    font-style: normal;
    color: #0057b8;
    font-weight: 900;
}

.navbar-custom .logo {
    height: 60px;
    width: 60px;
    float: left;
    margin: 10px;
}

.navbar-custom .navbar-brand:hover {
    color: var(--white-color); /* Change hover text color */
}

    .navbar-custom .navbar-nav .nav-item {
        padding-left: 10px;
    }

    .navbar-custom .navbar-nav {
        float: right;
        margin-right: 0px;
        background-color: transparent;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        position: relative;
        z-index: 999;
    }

        .navbar-custom .navbar-nav .nav-item .nav-link {
            font-size: 0.9619em;
            font-weight: 500;
            /*letter-spacing: 0.09em;*/
            color: var(--white-color); /* Change brand and link text color */
            text-transform: uppercase;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            border: transparent;
            letter-spacing: 1px;
        }

            .navbar-custom .navbar-nav .nav-item .nav-link:hover {
                color: var(--primary-color); /* Change hover text color */
            }

        .navbar-custom .navbar-nav .nav-item .nav-btn {
            font-size: 0.9619em;
            font-weight: 500;
            padding: 9px 17px;
            background-color: var(--primary-hover-color);
            color: var(--white-color); /* Change brand and link text color */
            text-align: center;
            font-weight: 400;
            letter-spacing: 0px;
            text-transform: uppercase;
            transition: all .3s;
            border-radius:5px;
        }

            .navbar-custom .navbar-nav .nav-item .nav-btn:hover {
                color: var(--primary-color); /* Change hover text color */
                background-color: var(--white-color);
            }

.dropdown-menu .dropdown-item {
    font-size: 0.7619em;
    font-weight: 500;
    /*letter-spacing: 0.09em;*/
    color: var(--black-color); /* Change brand and link text color */
}

    .dropdown-menu .dropdown-item:hover {
        background-image: none;
        background-color: var(--primary-color); /* Change this color as needed */
        color: white; /* Optional: Change text color on hover */
    }

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: 0;
        border-radius: 0.25rem;
        display: none;
    }

    .dropdown-submenu:hover .dropdown-menu {
        display: block;
    }

@media (max-width: 767px) {
    .navbar-custom .navbar-brand {
        font-size: 13px;
        margin-right:0px;
    }

        .navbar-custom .navbar-brand .logo {
            height: 50px;
            width: 50px;
        }

    .navbar-custom .navbar-nav {
        float: none;
        width: 100%;
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s;
        margin-left: 0px;
    }

        .navbar-custom .navbar-nav .nav-item {
            width: 100%;
            background: var(--white-color);
            border-bottom: 1px solid #eee;
            text-align: left;
        }

            .navbar-custom .navbar-nav .nav-item .nav-link {
                border: none !important;
                background: #f7f7f7 !important;
                color: #232d39 !important;
                text-align: left;
                padding-left: 10px;
                padding-right: 10px;
            }
            .navbar-custom .navbar-nav .nav-item .nav-btn {
                height: 50px !important;
                line-height: 50px !important;
                border: none !important;
                text-align: left;
                padding-left: 10px;
                padding-right: 10px;
            }
}
/* End Custom NAV*/

/* Custom CSS for Primary Button */
.btn-web-primary {
    background-color: var(--primary-color); /* Change background color */
    border-color: var(--primary-color); /* Change border color */
    color: var(--white-color); /* Change text color */
    border-radius: 5px; /* Change border radius */
}

    .btn-web-primary:hover {
        background-color: var(--primary-hover-color); /* Change hover background color */
        border-color: var(--primary-color); /* Change hover border color */
        color: var(--white-color);
    }

.a-web-primary {
    color: #000; /* Change text color */
}

    .a-web-primary:hover {
        color: var(--primary-color); /* Change text color */
    }

.hr-web-primary {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid var(--primary-color);
    width: 100%;
}
.bg-web-primary {
background-color:var(--primary-color);
color:#fff;
}

/* End Custom CSS for Primary Button */

/*Card Css*/

.card-date {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* End Card Css*/

/*Home Page Css*/
.carousel-inner > .carousel-item > img {
    height: 80vh;
}

.team-img
{
    height:150px;
}

.line-dec {
    border: 3px solid #ffb600;
    width: 30%;
    padding: 0px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.news-card {
    height:500px;
}

    .home-card-img-top {
        height: 220px;
    }

.news-card-img-top {
    height: 300px;
}

.leader-card {
    height: 450px;
}
    .leader-card img {
        border: 1px solid grey;
        object-fit: cover;
        height:350px;
        width:auto;
    }
.home-notifi-card {
    height: 450px;
}

.card-badge {
    background-color: var(--primary-color);
    color: #fff;
    top:-10px;
    left:10px;
    position:absolute;
    font-size:12px;
    width:30%;
    font-weight:100;
}

.card-footer a{
    font-size:13px;
}

.project-card {
    border: 1px solid var(--primary-color);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

    .project-card img {
        border: 1px solid var(--primary-color);
        height:250px;
        width:220px;
    }
/*End Home Page Css*/
/*Owl Scroller Css*/
#owl-Notifications .item {
    margin: 10px;
}

    #owl-Notifications .item .card .card-body {
        height: 250px;
        overflow:hidden;
    }

#owl-Leaders .item {
    margin: 5px;
}

    #owl-Leaders .item .card .card-body {
        height: 180px;
        overflow: hidden;
    }

    #owl-Leaders .item img {
        display: block;
        width: 100%;
        height: 220px;
    }

#owl-Leaders1 .item {
    margin: 5px;
}

    #owl-Leaders1 .item .card .card-body {
        height: 130px;
        overflow: hidden;
    }

    #owl-Leaders1 .item img {
        display: block;
        width: 100%;
        height: 200px;
    }

#owl-Partners .item {
    margin: 5px;
    border:1px solid #eee;
}

@media (max-width: 767px) {
    #owl-Leaders .item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: top;
    }

    #owl-Leaders1 .item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: top;
    }

    .leader-card img {
        border: 1px solid grey;
        object-fit: cover;
        height: 300px;
        width: auto;
        object-position: top;
    }

    .project-card, .leader-card {
        margin: 20px;
    }

    .project-card img {
        height: 250px;
        width: 100%;
    }
}

/*End Owl Scroller Css*/

/*section Headings*/
.first-section {
    margin-top: 140px;
    margin-bottom: 30px;
}

.middle-section {
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-section-heading {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 50px;
}

.section-heading {
    text-align: center;
}

    .section-heading h2 {
        font-size: 25px;
        font-weight: 800;
        color: #232d39;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

        .section-heading h2 em {
            font-style: normal;
            /*color: #ffb600;*/
        }

    .section-heading img {
        margin: 20px auto;
    }

/*End section Headings*/


.hide_empty:empty {
    display: none;
}

/*table CSS*/
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

/* End of table CSS*/

/*Horizontally align center*/
.item-center {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
/* End Horizontally align center*/

/*Shadows*/
/*divs, buttons*/
.box-shadow {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}


.image-shadow {
    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
}

/*End Shadows*/


/*Site Loading*/

#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*End Site Loading*/