
.header-bg {
    background-color: #074284;
    position: sticky;
    top: 0px;
    z-index: 99;
}


.list-type {
    list-style-type: none;
    color: white;
}
.li-space {
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}
.head-btn-1 {
    background-color: #004081;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid white;
    text-transform: uppercase;
}

.head-btn-2 {
    background-color: #f6b71e;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid white;
    text-transform: uppercase;
}
.head-btn-3 {
    background-color: #ff8700;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid white;
    text-transform: uppercase;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.font__nav {
    color: white;
    font-size: 17px;
    font-weight: 500;
}
.down-arrow {
    font-size: 12px;
}
.drop-position {
    background-color: #004081;
    border-top: 2px solid #4175fc;
}
.header-bg .nav-link:hover {
    color: white !important;
}
/* .header-bg .nav-item{
    padding: 0px 5px;
} */
.dropdown__font {
    background-color: #004081;
    color: white;
    font-size: 18px;
    font-weight: 500;
}
.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}
.border-top-line{
    border-top: 2px solid #4175fc;
}

.bg-color-header {
    background-color: #043c76;
    border-radius: 8px 0px 0px 0px !important;
}
.head-btn-1:hover{
    color: white;
}
.mobile-view-bar{
    display: none;
}
@media (max-width:1024px){
    .header-right{
        display: none;
    }
    .mobile-view-bar{
        display: block;
    }
}
.offcanvas-mobile{
    background-color: #004081;
}
.Read-more-btn{
    background-color: #043368;
    color: white;
}
.Read-more-btn:hover{
    border: 1px solid #043368;
    background-color: white;
    color: #043368;
}
.card-shadow{
box-shadow: 0px 0px 10px 0px #cecece;
}

.color-blue{
   color: #043368; 
}
/* owl carousel code start */
.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}
    .owl-nav button.owl-prev {
        left: 0;
    }

    .owl-nav button.owl-next {
        right: 0;
    }

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

    .owl-dots button.owl-dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        display: inline-block;
        background: #ccc;
        margin: 0 3px;
    }

        .owl-dots button.owl-dot.active {
            background-color: #000;
        }

        .owl-dots button.owl-dot:focus {
            outline: none;
        }

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}


.owl-nav button:focus {
    outline: none;
}

.owl-nav .disabled{
   display: block;
}
.owl-carousel .owl-nav.disabled{
   display: block; 
}


.owl-prev span {
        font-size: 70px;
        position: relative;
        top: -23px;
        right: 40px;
}

.owl-next span {
    font-size: 70px;
    position: relative;
    top: -23px;
    right: -40px;
}
/* owl carousel code end */

.engg-branch{
background-color: #d7e9fd;
border-left: 2px solid #4e9ff9;
border-right: 2px solid #4e9ff9;
border-top: none; 
border-bottom: none; 
}
.bg-blue{
background-color: #043368;
}
/* 12-20-2022 css start */
.bg-event-color{
    background-color: #074284;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.border-bottm-calender{
    border-bottom:1px solid #c9c9c9;
}
.border-div{
    border: 1px solid gray;
}
.bg__date {
    background-color: #b0cff1;
    color: #074284;
    display: flex;
    justify-content: center;
    align-items: center;
}
.border-calender{
    border: 1px solid #c7c7c7;
}
.card-shadow_scroll {
    background: #f8f7f7;
    width: 100%;
    height: 450px;
    overflow: scroll;
    border: 1px solid rgb(204, 203, 203);
    border-radius: unset !important;
}

    .card-shadow_scroll::-webkit-scrollbar {
        display: none;
    }
    .img-width-news{
        width: 100%;
        height: 66px;
    }

    /* modal img code start*/
    .myImg {
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

    .myImg:hover {
        opacity: 0.7;
    }

    .modal-img {
        display: none;
        position: fixed;
        z-index: 999;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .modal-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 600px;
    }

    #caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color: #ccc;
        padding: 10px 0;
        height: 150px;
    }

    .modal-content,
    #caption {
        -webkit-animation-name: zoom;
        -webkit-animation-duration: 0.6s;
        animation-name: zoom;
        animation-duration: 0.6s;
    }

    @-webkit-keyframes zoom {
        from {
            -webkit-transform: scale(0)
        }

        to {
            -webkit-transform: scale(1)
        }
    }

    @keyframes zoom {
        from {
            transform: scale(0)
        }

        to {
            transform: scale(1)
        }
    }

    .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
    }

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

    @media only screen and (max-width: 700px) {
        .modal-content {
            width: 100%;
        }
    }

    .img__height {
        height: 14rem;
    }

    /* modal img code end */
    .btn-apply{
   color: #074284;
   text-decoration: none;
   font-weight: 600;
    }
 

    
/* 20-12 */
.font-18{
    font-size: 18px;
}
.border-top-white{
    border-top: 1px solid white;
}

.h3fb-social {
    text-align: right;
    line-height: 40px;
}
.h3fb-social ul {
    list-style: outside none none;
    padding: 0;
}
.h3fb-social ul li {
    display: inline-block;
    background: white;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 30px;
    line-height: 29px;
}
.h3fb-social ul li a {
    color: black;
    display: block;
    font-size: 14px;
}
.facebook:hover {
    color: skyblue;
}
.twitter:hover {
    color: #1c4ea1;
}
.linked:hover {
    color: #1c4ea1;
}
.whtapp:hover {
    color: #25d366;
}
.instragram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.circle-testi{
    background-color: #004081;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: white;
    border: 1px solid grey;
}
.border-radius-5px{
    border-radius: 5px;
    border: 1px solid #dddddd;
}
.one-line{
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}


/* forgot password */
.position-icon{
    position: relative;

}
.position-abs-pass{
    position: absolute;
    right: 14px;
    top: 44px;
}

/* breadcrum code  */
.breadcrum-img{
    background-image: url('../img/breadcrum-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 114px 50px;
}
/* breadcrum code end */
.text-justify{
    text-align: justify;
}
.height-card{
    height: 17rem;
}
.card-shadow{
    box-shadow: 0px 0px 10px 0px #b1adad;
}
.height-card{
    height: 24rem;
}
.bg-nav-tabs{
    border: 1px solid #074284;
    background-color: #ecf3fb;
}

.border-radius-0{
    border-radius: 0px !important;
    border: 1px solid #074284;
    color: black;
 
}
.nav-pills .border-radius-0.active {
    color: #fff;
    background-color: #074284;
}
.bg-director{
    background-color: #cadbed;
}
.margin-0-auto{
margin: 0 auto;
}
.height-cordinator{
height: 15rem;
}
.bg-blue-cordinate{
    background-color: #074284;  
    height: 8rem;
}
.border-radius-0{
    border-bottom: 1px solid rgb(194 204 215) !important;
}
.label-font {
    font-weight: 500;
    font-size: 18px;
}


/* megha css 26-12-2024 */
.bg-department{
    background-image: url('../img/department-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 114px 50px;
}

.bg-nav-tabs button{
    text-align: start;
}

.circle-depert{
    height: 60px;
    width: 60px;
    background-color: #1F386B;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.border-radius-10{
    border-radius: 10px;
  }
  .card-white{
    background-color: white;
    box-shadow: 4px 0px 30px 0px rgba(0, 0, 0, 0.1);
    padding: 25px 30px 17px;
    border-radius: 10px;
    margin-top: -30px;
  }
  .height-250px{
    height: 260px;
  }
  .height-600{
    height: 600px;
  }
  .height-200{
    height: 200px;
  }
  .style001 {
    color: #993300;
    font-weight: bold;
}

/* Robotics css start */
.height-robotics{
    height: 22rem;
}

/*****newcss****/

.height-view {
    height: 800px;
}

.card-shadow {
    box-shadow: 0px 0px 10px 0px #cccccc;
}

.text-justify-para {
    text-align: justify;
}

.img-alumni {
    height: 10rem;
    width: 100%;
}

@media (max-width: 500px) {
    .img-alumni {
        height: 15rem;
        width: 100%;
    }
}

.read-more-btn {
    background-color: #043368;
    color: white;
    border: 1px solid #043368;
}

    .read-more-btn:hover {
        background-color: white;
        color: #043368;
        border: 1px solid #043368;
    }

.height-readmorepage {
    height: 30rem;
}

.sharebtn {
    background-color: rgb(203 226 253);
    padding: 3px 10px;
}

.height-event {
    height: 8rem;
}

.border-bottom-1px {
    border-bottom: 1px solid rgb(152, 150, 150);
}

.nav-pills .active-btn-tabs {
    color: #074284;
    background-color: white;
    border: 1px solid #7ebafc;
    border-radius: 0px;
}

    .nav-pills .active-btn-tabs.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #074284;
        border-radius: 0px;
    }


.btncontri {
    color: #ffffff;
    background: #4ec64e;
    border-color: #5aca5a;
    border-radius: 20px;
    padding: 9px 60px;
    font-size: 12px;
    width: 80%;
}

.ontribute-later {
    border: 1px solid #e5e8f0;
    color: #666666;
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 12px;
    width: 80%;
}
.img-alumni{
    width: 100% !important;
    height: 15rem !important;
}
.card-bg {
    background-color: #e9f3ff;
}
.view-more-fund {
    color: white;
    background-color: #043368;
    border: 1px solid #043368;
}
    .view-more-fund:hover {
        color: #043368;
        background-color: white;
        border: 1px solid #043368;
    }