@import url(./global.css);
@import url(./navbar.css);
@import url(./news-scroll.css);

* {
    padding: 0;
    margin: 0;
    font-family: var(--main-font);
}

.top-nav {
    background-color: var(--active-color);
    height: 1.4rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-left: 12%;
    padding-right: 3%;
}

.time {
    display: flex;
    width: 40%;
    flex-direction: row;
    align-items: center;


}

#live-time {
    font-size: 1rem;
    padding: 0 .1rem;
    color: var(--main-color);
    font-weight: bold;
}

.time i {
    display: flex;
    font-size: 1rem;
    color: var(--main-color);
}

.top-links {
    display: flex;
    width: 30%;
    justify-content: space-evenly;
    align-items: center;
    color: var(--main-color);
}

.top-links a {
    text-decoration: none;
    color: var(--main-color);
    font-weight: bold;
}

.top-links a:hover {
    text-decoration: none;
    color: rgb(27, 27, 27);
}

.top-links i {
    margin: 0 5px;
}

.middle-nav {
    height: 6rem;
    position: relative;
    display: flex;
    background-color: var(--main-color);
}

.middle-nav .logo {
    background-color: var(--active-color);
    width: 7rem;
    height: 7rem;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -30%;
    left: 2%;
}

.middle-nav .logo img {
    width: 80%;
    cursor: pointer;
}

.middle-nav h1 {
    color: white;
    font-family: var(--heading-font);
    font-size: 2.2rem;
    margin-left: 10rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.middle-nav h2 {
    color: white;
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-left: 10rem;
    /* margin-top: 0.5rem; */
}

.name {
    width: 70%;
}

.right-logo {
    width:50%;
    /* border: 1px solid; */
    display: flex;
    justify-content: space-evenly;
    /* align-items: center; */
    padding: 0.5rem 0;
}

.right-logo img {
    cursor: pointer;
}

.background-red {
    background-color: var(--main-color);
}

.background-yellow {
    background-color: var(--active-color);
}






.nav-tabs {
    border-bottom: 1px solid var(--main-color) !important;
    border-top: 3px solid var(--main-color) !important;
    border-right: 3px solid var(--main-color) !important;
    border-left: 3px solid var(--main-color) !important;
    background: var(--main-color);
    width: 100% !important;
    display: flex !important;
    /* border-bottom: 1px solid #dee2e6 !important; */
    flex-wrap: nowrap !important;
    align-content: center !important;
    justify-content: space-around !important;
    align-items: center !important;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
    width: 100%;
}

.nav-tabs .nav-link.active {
    color: #000000 !important;
    background-color: var(--active-color) !important;
    border-top-left-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    /* border-color: #dee2e6 #dee2e6 #fff; */
}

.nav-tabs .nav-link {
    text-align: center !important;
    background-color: var(--main-color);
    color: rgb(255, 255, 255) !important;
    border: 0px solid transparent !important;
    border-top-left-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    /* border-left: 3px solid var(--main-color) !important; */
    /* border-right: 3px solid var(--active-color) !important; */
    font-weight: bold;
}

/* .nav-link:last-child{
    border-right: 0px solid var(--active-color) !important;
} */

.tab-content>.tab-pane {
    background: var(--light-background);
    border: 3px solid var(--main-color);
    padding: 0rem;
    height: 407px;
    /* overflow-y: scroll; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    display: none;
}

.custom-ul {
    color: var(--main-color);
    list-style-type: none;
}

.custom-ul li {
    margin-bottom: 0.5em;
    font-weight: bold;
}

.view-all {
    float: right;
    margin-right: 2rem;
    color: #a6192e !important;
}

#customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 85%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin: 30px auto;
    border-radius: 5px;
    overflow: hidden;
}

#customers td,
#customers th {
    border: 1px solid #9a9a9b;
    padding: 10px;
    color: black;
    font-size: 17px;
}

#customers td,
#customers th:first-child {
    /* text-align: center; */
}

#customers tr:nth-child(odd) {
    background-color: #fefde7;
}


#customers tr:hover {
    background-color: #ddd;
    /* cursor: pointer; */
    cursor: pointer;
    transition: .5s;
}

#customers i {
    color: var(--main-color);
}

#customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center !important;
    text-align: left;
    background-color: var(--main-color);
    color: rgb(255, 255, 255);
}






.card {
    /* background:  */
    /* --main-color: #000;
    --submain-color: #78858f;
    --bg-color: #f2faff; */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    position: relative;
    width: 300px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0px !important;
    overflow: hidden;
    border: 1px solid var(--main-color) !important;
    background: var(--light-background) !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card__img {
    height: 125px;
    width: 100%;
}

.card__avatar {
    position: absolute;
    width: 130px;
    height: 130px;
    background: #f7f7f7;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: calc(43% - 140px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.card__avatar img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
}

.card__title {
    margin-top: 55px;
    font-weight: 500;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--main-color);
}

.card__subtitle {
    margin-top: 5px;
    font-weight: 400;
    font-size: 1rem;
    font-style: italic;
    color: rgb(102 21 21);
}

.card__wrapper {
    margin-top: 10px;
    display: flex;
    width: 100%;
    /* border: 1px solid; */
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 2%;
}

.card__wrapper a {
    text-decoration: none;
    border: 1px solid #bb7c86;
    padding: 0.2rem 0.5rem;
    color: black;
    margin: 5px 0;

    background-color: var(--active-color);
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    width: 50%;
    flex-direction: row;
    align-items: center;
}

.card__wrapper i {
    background: var(--main-color);
    color: white;
    padding: 7px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.card__wrapper a:hover {
    color: rgb(20, 20, 20);
    background: #e7aa05;
    text-decoration: none;
}

.description-p {
    font-size: .9rem;
    padding: 10px;
    line-height: 1rem;
    text-indent: 50px;
    text-align: justify;
}

.icons-shorts {
    width: 100%;
    /* border: 1px solid; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    flex-wrap: wrap;
}

.main-box {
    width: calc(50% - 20px);
    margin-top: 8rem;
    /* border: 1px solid red; */
    position: relative;
    transition: .3s;
}

.main-box a {
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    /* border: 1px solid red; */

}

.main-box img {
    width: 35%;
    bottom: 0;
    position: absolute;
    left: 0;
    z-index: 2;
}

.main-box p {
    font-size: .9rem;
    display: flex;
    width: 80%;
    text-align: center;
    padding: 0.7rem 2rem 0.7rem 4rem;
    color: white;
    border-radius: 900px;
    z-index: 1;
    /* font-weight: bold; */
    left: 20%;
    position: absolute;
    bottom: 0%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.main-box:hover {
    scale: 1.05;
    transition: .3s;
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
}

.main-box:hover p {

    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.main-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: var;
    color: var(--main-color);
    /* background: var(--active-color); */
    padding: 0.3rem 0;
    /* width: 17%; */
    border-radius: 0px;
    /* border: 1px solid #d1d1d1; */
    position: relative;
    width: fit-content;
}

.main-heading::after {
    content: " ";
    top: 90%;
    bottom: 0;
    left: 0;
    right: 70%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    z-index: 5;
    background-color: var(--active-color);
    position: absolute;
}

.inner-page-heading {
    font-size: 1.2rem;
    color: #C64000;
    font-weight: bold;
}

.main-vsn {
    text-align: justify;
    text-indent: 80px;
    position: relative;
}

.main-box:nth-child(-n+2) {
    margin-top: 6.2rem;
}

.back-img {
    top: 8%;
    left: 28%;
    width: 50%;
    z-index: -9;
    opacity: 0.1;
    position: absolute;
}

.arcives {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px;
    /* margin-bottom: 500rem !important; */
}

.arcives::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../image/building.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.arcives::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: black;
    opacity: 0.7;
}

.main-box-a {
    z-index: 1;
    position: absolute;
    width: 97%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.single-box-a {
    width: 20%;
}

.single-box-a img {
    width: 6rem;
    margin: auto;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    height: 6rem;
    background: white;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.single-box-a .numbers {
    color: white;
    font-weight: bolder;
    width: 100%;
    padding-top: 0.2rem;
    text-align: center;
    /* border: 1px solid red; */
}

.single-box-a .name-a {
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.main-f {
    /* border: 1px solid red; */
    padding: 0.3rem 0;
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.single-f {
    text-decoration: none;
    width: 30%;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
    background-color: var(--light-background);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.4s ease;
}

.single-f img {
    width: 100%;
    height: 7rem;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #cdcdcd;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.single-f h2 {
    margin-top: 0.7rem;
    /* font-weight: bold; */
    text-align: center;
    font-size: 1rem;
    color: var(--main-color);
    /* font-family: var(--heading-font); */
}


.single-f:hover {
    text-decoration: none;
    scale: 1.05;
    transition: 0.4s ease;
    cursor: pointer;
}

.single-f::after {
    content: "+";
    z-index: 999;
    color: rgba(255, 255, 255, 0.658);
    font-size: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    transform: scale(0);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s ease;
    transform-origin: center;
    background-color: rgba(0, 0, 0, 0.503);
}

.single-f:hover::after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s, transform 0.5s ease;
}

.csd {
    height: 26.3rem !important;
    border: 2px solid var(--main-color);
    background-color: var(--light-background);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.csd .carousel-item {
    height: 100% !important;
    width: 100% !important;
}

.csd .carousel-item img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

.carousel-caption {
    /* right: 0 !important;
    left: 0 !important; */
    /* width: fit-content; */
    background-color: #a6192ea3;
    backdrop-filter: blur(2px);
    padding: 1rem 2rem;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.carousel-caption p {
    font-style: italic;
    color: white;
    opacity: .9;
}

.footer-main {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.sect {
    width: 30%;
}

.left-s {
    display: flex;
    background-color: rgb(255, 255, 255, .2);
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.left-s img {
    padding: 1rem;
    width: 30%;
}

.left-s h1 {
    padding: 0 0.3em;
    text-align: center;
    font-size: 1.4rem;
    color: white;
}

.left-s p {
    text-align: center;
    color: white;
    padding: 0.5rem 2rem;
    font-size: .98rem;
}

.contacts-f {
    border-top: 1px solid #ffffffab;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.contacts-f p {
    margin: 0;
    padding: 1rem 0 0.5rem 0;
    cursor: pointer;
    font-size: .98rem;
    transition: .3s;
}

.contacts-f p:hover {
    scale: 1.02;
    transition: .3s;
}

.contacts-f i {
    margin-right: .3rem;
}

.middle-f {
    width: 20% !important;
    padding: 1rem;
    /* border: 1px solid; */
}

.cstm-ul {
    list-style: none;
}

.cstm-ul li {
    margin: 0.5rem 0rem;
}


.cstm-ul a {
    color: white;
    /* margin: 1rem; */
    transition: .3s ease;
}

.cstm-ul a:hover {
    margin-left: .6rem;
    text-decoration: none;
    color: var(--active-color);
    transition: .3s ease-in;
    /* margin: 1rem; */
}



.right-f {
    width: 40%;
    padding: 1rem;
}

.social-m {
    width: 100%;
    border-top: 1px solid #f1f1f1;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.social-m a {
    width: 3rem;
    height: 3rem;
    display: flex;
    text-decoration: none;
    align-items: center;
    background: white;
    border-radius: 50%;
    justify-content: center;
    color: var(--main-color);
    transition: .3s;
    border: 2px solid white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.social-m a:hover {
    background-color: var(--main-color);
    text-decoration: none;
    color: white;
    transition: .3s;
}


.real-footer {
    /* background-image:linear-gradient(120deg, #A41034 59%, #1D1D24 45%) !important ; */

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.real-footer p {
    margin: 0;
    /* color: black; */
    font-size: .852rem;
    padding: 0 3rem;
    font-weight: bold;
}

.real-footer a {
    color: var(--main-color);
    font-size: .852rem;
}




ul.timeline {
    list-style-type: none;
    position: relative;
    margin-bottom: 0px;
    /* padding-right: 30px; */
}

ul.timeline>li {
    /* margin: 1rem 0; */
    display: flex;
    /* padding-left: 35px; */
    padding: .4rem .7rem;
    border-bottom: 1px solid lightgray;
    transition: .3s;
}


ul.timeline>li:nth-child(even) {
    background-color: white;
}

/* ul.timeline>li:last-child  {
    border: none;
  } */
ul.timeline>li:hover {
    background-color: #dcdcdd !important;
    transition: .3s;
}

.timeline-date {
    display: grid;
    background: var(--main-color);
    /* border-radius: 0px 10px 10px 0px; */
    text-align: center;
    color: #fff;
    font-weight: 700;
    margin-right: 10px;
    align-self: end;
    box-shadow: 0px -2px 0px 0px #cacee6;
    font-size: 16px;
    min-width: 63px;
}

.timeline li span {
    color: var(--main-color);
    background: var(--active-color);
    letter-spacing: 0.5px;
    font-weight: 700;
    text-align: center;
    padding: 2px 8px;
    /* font-size: 11px; */
    font-size: .7rem;
    font-weight: bold;
}

.timeline li a {
    color: #000000;
    align-self: flex-start;
    height: 3rem;
    width: 100%;
    /* border: 1px solid red; */
    position: relative;
    display: flex;
    /* margin-top: -7px; */
    align-items: center;
    justify-content: flex-start;
}

.timeline li a:hover {
    text-decoration: none;
    color: var(--main-color);
    align-self: flex-start;
    position: relative;
    /* margin-top: -7px; */
}

.faculty {
    /* border: 1px solid red; */
    width: 90%;
    margin: auto;
}

.faculty-grid {
    margin: 25px;
    display: grid;
    grid-template-columns: repeat(4, 230px);
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.faculty-grid .faculty-grid-box {
    /* background-image: url(./asset/image/5333978.jpg); */
    background: #ffffff80;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    /* border: 1px solid red; */
    padding: 10px;
    height: 22rem;
}

.faculty-grid .faculty-grid-box img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 10px;
    text-align: center;
}

.faculty-grid .faculty-grid-box h3 {
    text-align: center;
    color: var(--main-color);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-size: bold;
    font-weight: bold;
}

.faculty-grid .faculty-grid-box h4 {
    text-align: center;
    color: #082c63;
    font-style: italic;
    font-size: 1rem;
    margin: 10px;
}

.faculty-grid .faculty-grid-box a {
    text-align: center;
    text-decoration: none;
    border: 1px solid #bb7c86;
    padding: 0.2rem 0.5rem;
    color: black;
    font-style: normal;
    margin: 5px 0;
    background-color: var(--active-color);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: bold;
    /* display: flex; */
    /* flex-wrap: nowrap; */
    width: 50%;
    flex-direction: row;
    align-items: center;
}

.main-profile {
    background: #f9f9f8a3;
    padding: 1rem;
    backdrop-filter: blur(2px);
    margin: 2rem 10rem;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.image-profile {
    width: 20%;
    border: 2px solid #a7a5a5;
    margin-right: 2rem;
    padding: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.image-profile img {
    width: 100%;
}

.main-sectionss {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.data-table {
    width: 65%;
}

.glry-grid {
    /* border: 1px solid red; */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.item {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    background: #a6192e;
    transition: .3s;
    border: 2px solid #a6192e;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.item img {
    width: 100%;
    transition: .3s;
}

.item:hover img {
    scale: 1.1;
    transition: .3s;
}

.glry-grid a {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    width: 24%;
    height: 207px;
    border-radius: 10px;
    overflow: hidden;
}

.glry-grid img {
    height: 210px;
    object-fit: cover;
    width: 100%;
}

.box_10 {
    text-align: center;
    color: var(--active-color);
    font-size: 1.2rem;
    font-weight: bolder;
    padding-top: 0.3rem;
    /* background: red; */
}

.navbar.sticky {
    background: #a6192ea6;
}

.short-banner {
    position: relative;
    width: 100%;
}

.banner-short {
    width: 100%;
    border-bottom: 2px solid var(--main-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.short-banner p {
    position: absolute;
    z-index: 2;
    font-size: 1.5rem;
    top: 40%;
    font-weight: bold;
    color: var(--main-color);
    left: 53%;
    font-family: var(--heading-font);
    /* right: 34%; */
}

.short-banner a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--main-color);
    font-family: var(--heading-font);
}

.short-banner a:hover {
    text-decoration: none;
    color: #5d0d19;
}

.main-contacts {
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-around;
}

.office-adress {
    background: #fff7e0;
    width: 30rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #ffdce1;
    border-radius: 10px;
    padding: 10px;
    position: relative;
}

.office-adress img {
    position: absolute;
    top: -25%;
    width: 30%;
    right: -8%;
}

#download-btns {
    width: 10%;
    font-size: 1.4rem;
    color: #a6192e;
}
#download-btns:hover {
   
    color: #500d17;
}