/********** Template CSS **********/
:root {
    --primary: #FDA12B;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
}

body {
    color: #46413c;
    overflow-x: hidden
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: #011640;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

.Kakori {
    width: 58px;
    height: 68px;
    padding: 6px;

}


#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    padding: 2px 10px !important;
    font-size: 9pt;
    color: #00183f;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    padding: 34px 8px;
    color: #011640;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    font-size: .8rem;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .dropdown-menu {
    padding: 0px;

    box-shadow: 0px 0px 25px rgba(0, 0, 0, .1);
}

.navbar .navbar-nav .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.navbar .navbar-nav .dropdown-menu .nav-link {
    padding: 10px 10px;
    text-transform: capitalize;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: auto;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }

    .leaders ul li {
        width: 100% !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* CUSTOM */
.nav li {
    position: relative;
}

.news-flash {
    background: #011640;
}

/*
.news-flash:before {
    content: "Highlights";
    position: absolute;
    background: #fda12b;
    height: 45px;
    padding: 4px 22px;
    text-transform: uppercase;
    font-size: 12pt;
    z-index: 9;
    line-height: 38px;
}
*/

.news-flash {
    color: #FFF
}

.news-flash a {
    border-right: 1px solid white;
    color: #FFF;
    padding: 0px 15px;
	font-weight: normal;
	font-size: 14px;
}

.news-flash a:hover {
    color: #fda12b;
    text-decoration: underline
}

.news-flash p {
    margin: 0px;
    padding: 10px;
}

.we-do {
    position: relative;
    z-index: 0px;
    background: #f2efea;
}

.we-do .container {
    position: relative;
    z-index: 3px;
    padding-top: 3rem;
    padding-bottom: 12rem;
}

.we-do:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    background-color: #011640;
    height: 60%;
    width: 100%;
}

.map .container {
    background: #fff;
    position: relative;
    z-index: 3;
    border-radius: 20px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .2);
    margin-top: -129px;
    margin-bottom: 50px;
}

#bottom-bar {
    background: #011640;
    color: #fff;
    padding: 25px;
}

#bottom-bar p {
    margin-bottom: 0px;
    font-size: 13px;
}

.experiance {
    background-color: #011640;
}

.map .border-start {
    margin-bottom: 25px;
}

.topnav {
    background-color: #f2efea;
    line-height: 38px;
    color: #00183f;
}

.we-do .service-text {
    min-height: 224px;
    position: relative;
}

.we-do .service-text a.small {
    position: absolute;
    bottom: 22px;
    text-align: center;
    right: 0;
    left: 0;
    margin: 0px auto;
}

.service-text a {
    color: #00183f;
}

.feature-image {
    position: relative;
}

.feature-image img {
    max-width: 100%;
    position: relative;
    z-index: 0;
}

.feature-image h1 {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0px auto;
    top: 40%;
    color: #fff;
    max-width: 80%;
    text-align: center;
}

/*.about-institute{background:#fbf5f0; padding-top:50px; padding-bottom:50px;}*/
.about-institute {
    min-height: 250px;
}

#comon-sec {
  
    position: relative;
}

#comon-sec h4 {
    color: #404040;
}

#comon-sec h2 {
    text-transform: inherit;
    margin-bottom: 18px;
}

#comon-sec.bglight {
    background: #fbf5f0;
}

#comon-sec.bgwhite {
    background: #fff;
}

.checkbullet {
    margin: 0px 0px 20px 0px;
    padding: 0px;
    list-style: none;
}

.checkbullet li {
    position: relative;
    padding: 6px 0px 6px 40px
}

.checkbullet li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0px;
    color: #FDA12B;
    font-size: 1.3em;
}

#comon-sec.bglight .checkbullet li:before {
    color: #011640;
}

.dropdown-menu .has-submenu:after {
    font-family: FontAwesome;
    content: "\f0da";
    position: absolute;
    right: 8px
}

.menu-item-has-children>a:after {
 content: "\f0d7";          /* caret-down */
    margin-left: 6px;
    font-family: FontAwesome;  /* FA 4 */
    font-weight: normal;
}

.table {
    color: inherit;
}

.table-striped>tbody>tr:nth-of-type(2n+1) {
    color: inherit;
}

.table thead {
    background-color: #ed8529;
    color: #fff;
    border-bottom: 2px solid #011640;
}

.table tbody td .btn {
    padding: 0.175rem .75rem;
    border-radius: 5px;
}

.course {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.course li {
    padding: 15px;
    box-sizing: border-box;
    width: 33.3%;
    box-sizing: border-box;
}

.course li a {
    display: block;
    border-radius: 5px;
    background-color: #24375b;
    text-align: center;
    padding: 0px 20px 20px 20px;
    font-weight: 400;
    color: #fff;
    min-height: 242px;
    transition-duration: .3s;
    font-size: 1.3em;
    font-weight: 500;
}

.course li .icon {
    display: block;
    width: 80px;
    /* height: 108px; */
    box-sizing: border-box;
    margin: 25px auto;
    border-radius: 50%;
    padding: 10px;
    position: relative;
    top: 37px;
    margin-bottom: 60px;
}

.course li .icon:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: 18px;
    left: -10px;
    margin: 0px auto;
    top: -10px;
}

.course li .icon svg {
    height: 40px;
}

.course li .icon span {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #fff;
}

.pink {
    background: #f95569;
    background: -moz-linear-gradient(-45deg, #f95569 0%, #f95587 100%);
    background: -webkit-linear-gradient(-45deg, #f95569 0%, #f95587 100%);
    background: linear-gradient(135deg, #f95569 0%, #f95587 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f95569', endColorstr='#f95587', GradientType=1);
}

.pink span svg {
    fill: #f95569;
}

.pink:before {
    border: 1px dashed #f95569;
}

.green {
    background: #87c15b;
    background: -moz-linear-gradient(-45deg, #87c15b 0%, #75b048 100%);
    background: -webkit-linear-gradient(-45deg, #87c15b 0%, #75b048 100%);
    background: linear-gradient(135deg, #87c15b 0%, #75b048 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87c15b', endColorstr='#75b048', GradientType=1);
}

.green span svg {
    fill: #75B048;
}

.green:before {
    border: 1px dashed #75B048;
}

.yellow {
    background: #f7b14f;
    background: -moz-linear-gradient(-45deg, #f7b14f 0%, #da9029 100%);
    background: -webkit-linear-gradient(-45deg, #f7b14f 0%, #da9029 100%);
    background: linear-gradient(135deg, #f7b14f 0%, #da9029 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7b14f', endColorstr='#da9029', GradientType=1);
}

.yellow span svg {
    fill: #DA9029;
}

.yellow:before {
    border: 1px dashed #DA9029;
}

.purple {
    background: #744392;
    background: -moz-linear-gradient(-45deg, #744392 0%, #6e3492 100%);
    background: -webkit-linear-gradient(-45deg, #744392 0%, #6e3492 100%);
    background: linear-gradient(135deg, #744392 0%, #6e3492 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#744392', endColorstr='#6e3492', GradientType=1);
}

.purple span svg {
    fill: #6E3492;
}

.purple:before {
    border: 1px dashed #6E3492;
}

.cyan {
    background: #00a7b7;
    background: -moz-linear-gradient(-45deg, #00a7b7 0%, #1ac3d3 100%);
    background: -webkit-linear-gradient(-45deg, #00a7b7 0%, #1ac3d3 100%);
    background: linear-gradient(135deg, #00a7b7 0%, #1ac3d3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00a7b7', endColorstr='#1ac3d3', GradientType=1);
}

.cyan span svg {
    fill: #00a7b7;
}

.cyan:before {
    border: 1px dashed #00a7b7;
}

.orange {
    background: #fa892d;
    background: -moz-linear-gradient(-45deg, #fa892d 0%, #f17c2a 100%);
    background: -webkit-linear-gradient(-45deg, #fa892d 0%, #f17c2a 100%);
    background: linear-gradient(135deg, #fa892d 0%, #f17c2a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fa892d', endColorstr='#f17c2a', GradientType=1);
}

.orange span svg {
    fill: #F17C2A;
}

.orange:before {
    border: 1px dashed #F17C2A;
}

.blue {
    background: #5e99b7;
    background: -moz-linear-gradient(-45deg, #5e99b7 0%, #4797c0 100%);
    background: -webkit-linear-gradient(-45deg, #5e99b7 0%, #4797c0 100%);
    background: linear-gradient(135deg, #5e99b7 0%, #4797c0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5e99b7', endColorstr='#4797c0', GradientType=1);
}

.blue span svg {
    fill: #4797C0;
}

.blue:before {
    border: 1px dashed #4797C0;
}

.red {
    background: #e14c45;
    background: -moz-linear-gradient(-45deg, #e14c45 0%, #d93730 100%);
    background: -webkit-linear-gradient(-45deg, #e14c45 0%, #d93730 100%);
    background: linear-gradient(135deg, #e14c45 0%, #d93730 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e14c45', endColorstr='#d93730', GradientType=1);
}

.red span svg {
    fill: #e14c45;
}

.red:before {
    border: 1px dashed #e14c45;
}

.course li a:hover {
    background-color: #f08b26;
    color: #fff;
    text-decoration: none;
    position: relative;
    /* top: 8px; */
}

.course li a:hover .icon {
    border: 1px dashed #fff;
}

.course li a:hover .icon::before {
    border: 1px dashed #fff;
}

.address {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.address li {
    position: relative;
    padding: 8px 8px 8px 60px;
    min-height: 65px;
}

.address li .fa {
    position: absolute;
    left: 0;
    background-color: #FDA12B;
    color: #fff;
    line-height: 50px;
    text-align: center;
    width: 50px;
    font-size: 1.2em;
}

.sitemap {
    text-transform: capitalize;
}

.sitemap ul {
    margin: 0;
    padding: 0 5px 4px 10px;
    background: url(../images/site_map_ul.gif) repeat-y 10px -5px;
    position: relative;
    list-style-type: none;
}

.sitemap ul li {
    background: url(../images/site_map_list.gif) no-repeat 0px -5px;
    line-height: 16px;
    padding: 0px 4px 0px 16px;
    margin: 10px 0px;
}

.sitemap ul li a {
    color: #0c3156;
    display: inline-block;
    padding: .5rem 1rem;
}

.sitemap ul>li>a {
    font-weight: 500;
}

.sitemap ul li ul {
    padding-bottom: 1px;
    display: block;
    border: 0px;
}

.sitemap ul li ul li {
    font-weight: 300;
}

.sitemap .caret {
    display: none;
}

.sitemap ul li.menu-item-has-children>a:after {
    display: none;
}

.pagination {
    float: right;
}

.pagination li {
    padding: 3px;
}

.pagination li a {
    display: block;
    padding: 3px 10px;
    border: 1px solid #ccc;
    color: #000;
    border-radius: 4px;
}

.pagination li.active a {
    color: #fff;
    background-color: #eb7b0b;
    border-color: #eb7b0b;
}

.table td a {
    color: #6a3004
}

.table td a.btn {
    color: #fff;
}




.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination a.active {
    background-color: #4CAF50;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}


.accordion-flush .accordion-item .accordion-button {
    margin-bottom: 1px;
    background: #ed8529;
    color: #fff;
    padding: 8px;
    border-radius: 2px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    font-size: 24px !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f107";
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
    fill: #fff;
    background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: "\f106";
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    font-size: 24px !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
    fill: #fff;
    background-image: none !important;
    transform: none;
}

.img-responsive {
    width: 100%;
}

.login-section {
    background: #fda12b;
    color: #fff;
    padding: 7px !important;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: normal;
}

.login-section:hover {
    background: #d3831d;
    color: #fff;
    padding: 7px !important;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: normal;
}

.dataTables_wrapper {
    background: #f4f4f4;
    padding: 10px;
}

#datatable-tabletools_filter {
    float: right
}

.dataTables_length {
    float: left
}

#categoryFilter {
    width: auto !important;
    display: inline-block;
}

.dataTables_filter input {
    border: 1px solid #CCC;
    padding: 5px;
    border-radius: 5px;
    margin: 0px 10px;
}

#datatable-tabletools_length select {
    border: 1px solid #CCC;
    padding: 8px;
    border-radius: 5px;
    margin: 0px 10px;
    background: white;
}

.catBox {
    border: 1px solid #bdbdbd;
    padding: 7px;
    border-radius: 5px;
    background: #fff8f8;
    font-size: 10pt;
}

.dataTables_paginate a {
    border: 1px solid #cccbca;
    margin: 5px 3px;
    padding: 2px;
    color: #717171;
    font-size: 10pt;
    cursor: pointer
}





.nup-box {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;

}

.nup-box>li {

    list-style: none;
    gap: 20px;
    background: #fda12b;
    width: 40%;
    text-align: center;
    padding: 20px;
}

.nup-box>li>a {
    color: #970909;
    text-transform: uppercase;

    font-size: 18px;
}

#orderfrm {
    position: relative;
    left: 220px;
    top: 46px;
    width: 40%;
    padding: 0px 5px;
    border-radius: 5px;
}

#orderfrm select {
    border: 1px solid #ccc;
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    margin: 0px 10px;
}


#orderfrm input[type=submit] {
    border: 1px solid #a86b4d;
    border-radius: 5px;
    padding: 5px 10px;
    background: #ed8529;
    color: #fff;
}

.leaders ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.leaders ul li {
    width: 33.3%;
    box-sizing: border-box;
    padding: 10px;
}

.leaders ul li .profile {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .2);
    padding: 10px;
    margin-top: 15px;
}

.leaders ul li .profile .pro-pic {
    width: 25%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.28);
    height: 87px;
}

.leaders ul li .profile .pro-pic img {
    max-width: 100%;
    border-radius: 50%;
}

.leaders ul li .profile .pro-details {
    width: 66%;
    padding-left: 15px;
    padding-top: 10px;
}

.leaders ul li .profile .pro-details h4 {
    font-size: 16px;
}

.leaders ul li .profile .pro-details p {
    font-size: 15px;
}

.blink_me {
    animation: blinker 1s linear infinite;
    color: #fda12b !important;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}



.serialnew {
    counter-reset: Serial
}

.serialnew tr td:first-child {
    text-align: center
}

.serialnew tr td:first-child::before {
    content: "" counter(Serial, decimal);
    counter-increment: Serial
}



.login_section {
    background-color: #011640;
    padding: 2em 0;
}


.login_section ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.login_section li {
    padding: 9px;
    box-sizing: border-box;
    width: 33.3%;
    box-sizing: border-box;
}

.login_section li a {
    display: flex;
    border-radius: 5px;
    text-align: left;
    padding: 10px;
    color: #fff;
    transition-duration: .3s;
    border: 1px dashed #ffffff4f;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    min-height: 70px;
    padding-left: 5em;
	font-size:14px;
}

.login_section li a:hover {
    background: #ffffff4f;
}

.login_section li .active {
    background: #ffffff4f;
}

.login_section li a.active:hover {
    background: #ffffff;
    color: #011640;
    border-color: #fff0;
}

.login_section li .icon {
    display: block;
    width: 65px;
    height: 70px;
    box-sizing: border-box;
    left: -1px;
    line-height: 66px;
    padding: 0;
    position: absolute;
    text-align: center;
    top: -1px;
    border-radius: 5px 0 0 5px;
    bottom: ;
}


.login_section li .icon svg {
    height: 40px;
    width: 40px;
}

.login_section li .icon span {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 50%;
}

.we-do .service-text p {
    margin: 0;
}

.impotnews {
    font-weight: 900;
}

@media (max-width: 767px) {

    .login_section li {

        width: 100%;
    }
	.hilight h3 {
    margin: 0;
    padding: 12px 10px !important;
	}
}

.impotnews .ndate{display:none;
}
.impotnews ul{margin-bottom: 0px;
margin-bottom: 0px;
    list-style: none;
}


.impotnews ul li{display: inline-block;padding: 0px;}
.is-new {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.is-new
Specificity: (0,1,0)
 {
    display: inline-block;
    width: 45px;
    position: relative;
    left: -5px;
}

.feature-img-otpl-01 .breadcumb-banner{
text-align: center;
    margin: 0 auto;
    height: 223px;
    overflow: hidden;
}
.feature-img-otpl-01{
    position: relative;

}
.feature-img-otpl-01 .container{
    position: absolute;
    top: 0px;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    right: 0px;
    left: 0px;
    bottom: 0px;
    padding: 90px;
}

.breadcumb-title{
	
	    color: #fff;
}

.breadcumb-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;   /* center align */
    align-items: center;
}

.breadcumb-menu li {
    color: #fff;              /* white text */
    font-size: 14px;
}

.breadcumb-menu li a {
    color: #fff;              /* white link */
    text-decoration: none;
}

.breadcumb-menu li + li::before {
    content: " / ";
    color: #fff;
    padding: 0 8px;
}
/* ===== BASE ===== */
.menu-item-has-children {
    position: relative;
}


/* ===== HOVER OPEN ===== */
.menu-item-has-children:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== DROPDOWN LINKS ===== */
.dropdown-menu li a {
    padding: 10px 16px;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

/* ===== MOBILE : CLICK SUPPORT (Bootstrap adds .show) ===== */
@media (max-width: 991px) {
    .menu-item-has-children > .dropdown-menu {
        position: static;
        transform: none;
    }

    .menu-item-has-children.show > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}


/* Banner Wrapper */
.ws-title-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    );
    text-align: center;
    z-index: 5;
}

/* Main Title */
.ws-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 1px;
    animation: novaFadeUp 1.2s ease forwards;
}

/* Subtitle */
.ws-title div {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 400;
    color: #f1f1f1;
    opacity: 0.9;
}

/* Optional CMS modifier */
.otpl-cms2 {
    padding: 20px 30px;
    border-left: 5px solid #ffb400;
}

/* Animation */
@keyframes novaFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ws-title {
        font-size: 32px;
    }
    .ws-title div {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ws-title {
        font-size: 26px;
    }
}


/* Main Content Section */
.contentarea {
      background: #e3e3e3;
    padding: 30px 0;
}

/* Inner Content Box */
.incontent {
  background: #ffffff;
  padding: 30px 15px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

}

/* Headings */
.incontent h1,
.incontent h2,
.incontent h3 {
  font-weight: 700;

  color: #0b2c5d;
}

/* Paragraph */
.incontent p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}
/* Pagination wrapper */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

/* Pagination buttons */
.pagination .paginate_button {
  display: inline-block;
}

/* Links */
.pagination .paginate_button a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #0d6efd;
  background: #ffffff;
  border: 1px solid #d0d7e2;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.pagination .paginate_button:not(.disabled):not(.active) a:hover {
  background: #0d6efd;
  co


/* Links */
.incontent a {
  color: #0d6efd;
  font-weight: 600;
  text-decoration: none;
}

.incontent a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .incontent {
    padding: 25px;
  }

  .contentarea {
    padding: 40px 0;
  }
}

	
	table.dataTable thead th.sorting,
table.dataTable thead th.sorting_asc,
table.dataTable thead th.sorting_desc {
    font-family: 'Poppins', sans-serif !important;
}
	
	}
.institutelist-btn {
    text-transform: uppercase;
}
.institutelist-btn {
    position: fixed;
    right: -40px;
    bottom: 46%;
    color: #fff !important;
    z-index: 1000;
    transform: rotate(-90deg);
    padding: 7px 11px;
    border-radius: 4px 4px 0px 0px;
    font-weight: bold;
}

.news-flash p {
                margin: 0px;
                padding: 10px;
                display: inline-block !important;
            }

            .institutelist-btn {
                position: fixed;
                right: -80px;
                bottom: 46%;
                color: #fff !important;
                z-index: 1000;
                transform: rotate(-90deg);
                padding: 7px 11px;
                border-radius: 4px 4px 0px 0px;
                font-weight: bold;
            }

  .institutelist-btn-hi {
                position: fixed;
                right: -40px;
                bottom: 46%;
                color: #fff !important;
                z-index: 1000;
                transform: rotate(-90deg);
                padding: 7px 11px;
                border-radius: 4px 4px 0px 0px;
                font-weight: bold;
            }

            .institutelist-btn {
                text-transform: uppercase;
            }

            .quadrat {
                -webkit-animation: NAME-YOUR-ANIMATION 1s infinite;
                -moz-animation: NAME-YOUR-ANIMATION 1s infinite;
                -o-animation: NAME-YOUR-ANIMATION 1s infinite;
                animation: NAME-YOUR-ANIMATION 1s infinite;
            }

            @-webkit-keyframes NAME-YOUR-ANIMATION {
                0%, 49% {
                    background-color: #06950b;
                }

                50%, 100% {
                    background-color: #e50000;
                }
            }

            @keyframes blinker2 {
                50% {
                    opacity: 0;
                    color: #fff;
                }
            }




	

/* ===== TOP NAV BASE ===== */
.topnav {
    background: #f2efea;
    /* color: #fff; */
    font-size: 13px;
}

.topnav a {
    color: #00183f !important;
    text-decoration: none;
}

/* Left info */
.topnav-left {
    display: flex;
    align-items: center;
    padding: 0px 12px;
    gap: 12px;
}

.topnav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 10px;
}

.topnav-item:last-child {
    border-right: none;
}

/* Right links */
.topnav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px 10px;
}

.topnav-link {
    padding: 0px 13px;
    border-left: 1px solid rgba(255,255,255,0.3);
    white-space: nowrap;
}

.topnav-link:hover {
    background: rgba(255,255,255,0.15);
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 991px) {

    .topnav-left,
    .topnav-right {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .topnav-item {
        border-right: none;
        padding: 4px 8px;
    }

    .topnav-link {
        border-left: none;
        border: 1px solid rgb(103 101 101 / 58%);
        margin: 3px;
        border-radius: -1px;
        padding: 5px 8px;
        height: 30px;
        line-height: 22px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 576px) {

    .topnav {
        font-size: 12px;
    }

    .topnav-link {
        font-size: 11px;
        padding: 4px 6px;
    }
}

@media (max-width: 767px) {

    /* Main wrapper */
    .breadcumb-wrapper {
        position: relative;
        padding: 0px 0 0px;
        overflow: hidden;
        height: 159px;
    }
	.feature-img-otpl-01 .container{
		
padding: 15px 20px;
		
height: 179px;
		
overflow: hidden;
	}
.breadcumb-menu li

 {
    color: #fff;
    font-size: 12px;
}
    /* Banner image */
    .breadcumb-banner img.feature-img-otpl {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    /* Overlay for readability */
    .breadcumb-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
        overflow: hidden;
        /* height: 160px; */
    }

    /* Content positioning */
    .breadcumb-content {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 8px 12px;
        top: 28px;
    }

    /* Page title */
    .breadcumb-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 6px;
        color: #fff;
    }

    /* Breadcrumb menu */
    .breadcumb-menu {
        display: flex;
        justify-content: center;
        font-size: 13px;
    }

    .breadcumb-menu li {
        margin: 0 4px;
        color: #fff;
    }

    .breadcumb-menu a {
        color: #fff;
        font-size: 13px;
    }
}
/* MOBILE ALIGNMENT */
@media (max-width: 991px) {

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 12px;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        margin-right: auto;
        padding: 0;
    }

    .navbar-brand img.logo {
        max-height: 42px;
        width: auto;
    }

    .navbar-toggler {
        margin-left: auto;
        padding: 8px 10px;
    }

    .navbar-collapse {
        width: 100%;
    }

    /* hide right image on mobile */
    .Kakori {
        display: none;
    }
}
/* DESKTOP HOVER DROPDOWN */
@media (min-width: 992px) {

    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
        margin-top: 0;
    }

    .menu-item-has-children:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* BASE */
.topnav {
    position: relative;
    /* color: #fff; */
}

/* Close button (hidden on desktop) */
.topnav-close {
    display: none;
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 22px;
    line-height: 1;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* MOBILE VIEW */
@media (max-width: 991px) {

    .topnav {
        padding-top: 32px;
    }

    .topnav-close {
        display: block;
    }

    .topnav-left,
    .topnav-right {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .topnav-link {
        display: inline-block;
        margin: 3px;
        font-size: 12px;
    }

    /* COLLAPSE STATE */
    .topnav.closed {
        display: none;
    }
}


.anguage-box-otpl{
background: none;
    border: none;
    font-size: 15px;
    margin-right: 7px;
    color: #fff;
}

.breadcrumb {
  list-style: none;
  padding: 12px 20px;
  background: #2c2c2c;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.breadcrumb li {
  color: #fff;
  font-size: 15px;
}

.breadcrumb li + li:before {
  content: "/";
  padding: 0 10px;
  color: #aaa;
}

.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: #ffc107;
}

.breadcrumb i {
  margin-right: 6px;
  color: #ffc107;   /* icon color */
}

.breadcrumb .active {
  color: #ffc107;
  font-weight: 600;
}
.accordion-collapse{
	
	background: #f2f2f2;
}

.topnav-close{
	
	    background: #ff000087;
    top: 2px;
}

.dataTables_length{
	
	margin-bottom: 10px;
}

.navbar{padding:0px 15px;}

/* Highlight wrapper */
.hilight {
  background: linear-gradient(90deg, #011640, #011640);
  /* padding: 10px 15px; */
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  /* margin: 15px 0; */
  overflow: hidden;
  display: flex;
}

/* Highlight title */
.hilight h3 {
  margin: 0;
  padding: 12px 36px;
  display: inline-block;
  background: #fda12b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  /* border-radius: 4px; */
  display: inline-block;
  float: left;
  /* width: 40px; */
}

/* Marquee area */
.hilight marquee {
  margin-top: 8px;
}

/* Remove default ul style */
.hilight ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

/* List items */
.hilight li {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  font-size: 14px;
  white-space: nowrap;
}

/* Links */
.hilight li a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.hilight li a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

/* NEW icon */
.hilight img.is-new {
  width: 56px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Date style */
.hilight .ndate {
  margin-left: 10px;
  font-size: 12px;
  color: #dfefff;
  opacity: 0.9;
}


.swiper-slide .animated-image{
	
	opacity:1 !important;
}


.pos-clode{
	    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
}