.no-copy {
    -webkit-user-select: none; 
    -moz-user-select: none;    
    -ms-user-select: none;     
    user-select: none; 
}

/* Committees */

.commit-card{
    background-color: #fff;
    border-radius: .3rem;
}
.committe-left {
    display: flex;
    gap: 15px;
}
.commit-card.shadow-lg {
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, .175) !important;
}
.comticon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 50%;
    height: 80px;
    width: 80px;
}
.dwnlbtn_cmt {
    color: #0c3b7f;
    background: #fff;
    border: 1px solid #ccc;
    padding: 0;
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.comtxt {
    width: 80%;
}

.dflexbtwn {
    display: flex;
    justify-content: space-between;
}

.comticon img {
    max-width: 50px;
}
/*.commit-card h5 , .commit-card p{*/
/*    color: #fff !important;    */
/*}*/

/* Skill section */
.skill-card {
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}


.filter-btns .btn {
    background: transparent;
    color: #000;
    border: 1px solid #dddddd;
    border-radius: 10px;
    margin-right: 10px;
}

.filter-btns .btn.active, .filter-btns .btn:hover {
    background: #990e1c;
    color: #fff;
}

.job-card {
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.job-card .tag {
    background: #fdfdfd;
    padding: 4px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #dddddd;
    color: #0c3b7f;
    margin: 3px;
    display: inline-block;
}


.job-card .apply-btn {
    background: #990e1c;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.93rem;
}

.salary-box {
    background: #f2f4f9;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
}

.salary-box h5 span {
    color: #080808;
    font-size: 14px;
}

.jobicon {
    background: #ffe5e7;
    border-radius: 50%;
    padding: 10px;
    min-width: 75px;
    width: 75px;
    height:75px;
    text-align: center;
}

.jobicon.nontech {
    background: #dbeaff;
}



.process-section {
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px 55px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}


.process-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Dotted line */
.process-wrapper::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    border-top: 2px dashed #ddd;
    z-index: 0;
}

.process-section .step {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 20%;
}

.process-section .step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #990e1c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background: #fff;
    font-size: 24px;
}

.process-section .step-number {
    color: #990e1c;
    font-weight: 600;
    margin-top: 10px;
    font-size:20px;
}

.process-section .step-title {
    font-weight: 600;
    margin-top: 5px;
    color:#990e1c;
}
.step-icon img {
    padding: 10px;
}
.process-section .step-desc {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    max-width: 250px;
    margin: 0 auto;
}

.careerleft_box {
    position: sticky;
    top: 200px;
}

.careerleft_box .academics-left {
    position: relative;
    top: 0;
}


.helpbox {
    border: 1px solid #ddd;
    box-shadow: 0px 0px 191px 0px rgba(0, 0, 0, 0.16);
    margin-top: 25px;
    padding: 20px;
}

.helpbox h3.title {
    font-size: 22px;
    margin-top: 0;
}

.helpbox a {
    color: #0c3b7f;
}

.transbtn.contactbtnn {
    border: 2px solid;
    padding: 7px 20px;
    font-weight: 600;
    border-radius: 5px;
    margin: 20px 0;
    transition: all 0.5s;
    display: inline-block;
}

.transbtn.contactbtnn i {
    display: inline-block;
    margin: 0 10px;
}

.transbtn.contactbtnn:hover {
    color: #fff;
    background: #990e1c;
    border-color: #990e1c;
}


.cursor-pointer {
    cursor: pointer;
}

.arrow {
    transition: 0.3s;
    font-size: 18px;
} 

.collapsed .arrow {
    transform: rotate(-90deg);
}


.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s;
}


.category-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(128, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: 0.3s;
}

.category-card:hover .overlay {
    opacity: 1;
}
.category-card:hover {
    transform: translateY(-5px);
}
.category-title {
    padding: 10px;
    font-weight: 600;
    color:#0C3B7F;
}


#sidebarCatgoryview .sidebar, #detailView .sidebar {
    background: white;
    border-radius: 10px;
}

#sidebarCatgoryview .sidebar li, #detailView .sidebar li {
    padding: 20px;
    cursor: pointer;
    border: 1px solid #fff;
    background: #cccccc;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.5s;
    color: #424242;
}

#sidebarCatgoryview .sidebar li.active, #detailView .sidebar li.active {
    background: #990e1c;
    color: #fff;
    font-weight: 700;
}

.newgallery .gallery-item {
    display: block;
}
.newgallery .gallery-img {
    border-radius: 10px;
    transition: all 0.5s;
    height: 270px;
    width: 100%;
    object-fit: cover;
}

.newgallery .gallery-img:hover {
    transform: translateY(-5px);
}
.catg_togglebtn {
    background: transparent;
    color: #000;
    padding: 0 5px;
    line-height: normal;
    height: auto;
    margin-bottom: 6px !important;
}

.catg_togglebtn:focus {
    background: transparent;
    color: #000;
}

.offcanvas-body .list-unstyled li {
    padding: 10px;
    cursor: pointer;
    background: #cccccc;
    border: 1px solid #fff;
    transition: 0.5s;
    font-weight: 700;
    color: #424242;
    font-size: 15px !important;
}
.offcanvas-body .list-unstyled li.active {
    background:#990e1c;
    color:#fff;
}

.tgglebtn {
    background: #990e1c;
    width: 35px;
    cursor:pointer;
    line-height: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    border:0;
    font-weight: 500;
}


.gllrybrdcrmb  {
    /*position: sticky;*/
    /*top: 0;*/
    z-index: 99;
    background: #fff;
    padding: 12px 20px;
    display: flex;
    color:#0c3b7f;
    align-items: center;
    gap: 10px;
}
.marronborder {
    border-bottom: 2px solid #990e1c;
    margin-bottom: 12px;
}


.gallrysearch {
    border-radius: 25px !important;
    height: 40px;
    border-color: #ccc !important;
}

.facltymarg_top {
    margin-top: -350px;
    z-index: 9;
}


.text-rotator {
    overflow: hidden;
    position: relative;
    padding-left: 20px;
}

.text-rotator .slider-track {
    display: flex;
}

.text-rotator .set {
    min-width: 100%;
    list-style: none;
    padding-left: 20px;
}

.text-rotator .set li {
    position: relative;
}

.text-rotator .set li:before {
    content: '\f061';
    font-family: 'FontAwesome';
    transform: rotate(315deg);
    position: absolute;
    left: -20px;
    top: 3px;
}

.text-rotator li {
    margin-bottom: 8px;
}
button:focus {
    box-shadow: none !important;
}
.category-card img {
    height: 270px;
    object-fit: cover;
    width: 100%;
}
#faqAccordion .accordion-button:not(.collapsed) {
    color: #424242;
    background-color: #cccccc;
}

.pdfbtn {
    background: #0c3b7f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
}

.pdfrow {
    display: flex;
    gap: 15px;
    flex-wrap:wrap;
}

.pdfbtn:hover {
    color:#fff;
    background: #990e1c;
}



.filter-btns {
    display: flex;
    flex-wrap: wrap;
}
.joinkmmbtn {
    text-align: center;
}

.search-type-badge {
    background: #ffe9ed;
    padding: 5px 10px;
    border-radius: 5px;
}

.search-description {
    max-width: 80%;
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}

select#designationSelect {
    border: 1px solid #ebebeb;
    border-radius: 4px;
    height: 52px;
}

#jobApplicationForm label.fw-bold {
    font-weight: 600 !important;
    margin-bottom: 10px;
}

#jobApplicationForm label.form-check-label {
    position: relative;
    top: 4px;
}

.ourleaders_row .ldrcard a {
    display: block;
}

.subfounder_title {
    font-weight: 500;
    font-size: 26px;
}

.mfp-title {
    background: #990e1c;
    padding: 8px 36px 8px 10px;
    margin-top: -4px;
}

.mfp-counter {
    top: 4px;
    right: 5px;
}
.mfp-title:empty{
    display: none;
}

.mfp-title:empty + .mfp-counter { top:0; }

select#designationSelect {
    color: #415674;
    font-weight: 600;
    font-size:0.8125rem;
}

.custom-list.prgrmlists li::before {
    color: #990e1c !important;
}

.custom-list.prgrmlists li {
    font-size: 16px;
    margin-bottom: 5px;
    letter-spacing: 0;
    color: #990e1c;
}

/*.custom-list.prgrmlists li:hover::before {*/
/*    color: #07294d!important;*/
/*}*/


.faciltynew_sections .container { max-width:1380px; }

.faciltynew_sections .contenttxt { text-align: justify; }

.bgyellow {
    background: #ffcc00;
}

.nogaprow {
    padding: 50px 0;
}

.contenttxt.bgwhite {
    height: 100%;
    background: #fff;
    text-align: justify;
    padding: 60px 45px;
}

.library-visual img {
    width: 95%!important;
    height: 95% !important;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 20px 20px 0 #1a3a5f;
}

.bggreyy { background:#f9f9f9; }

.twoimg_glslider .slick-slide {
    margin: 0 10px;
}

.fimg, .fimg img {
    width: 100% !important;
    height: 100% !important;
    border-radius:0;
}
.fimg a {
    display:block;
}

.facility-content .bggreyy.container {
    margin-bottom: 70px !important;
}



.swiper-button-next:after {
    content: '→';
}
.swiper-button-prev:after {
    content: '←';
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: 'slick';
}






/* Mobile */
@media(max-width:768px){
    .nogaprow .p-0 {
        padding: 0 14px !important;
    }
    .our_founder_img img {
        margin-top: 0px;
    }
    .subfounder_title {
      font-size: 18px;
    }
    .ldrcard .ldrimg img {
        display: none;
    }
    .process-wrapper {
        flex-direction: column;
    }

    .process-wrapper::before {
        display: none;
    }

    .process-section .step {
        width: 100%;
        margin-bottom: 30px;
    }
    ul#categoryList {
        display: none;
    }
    .gallrysearch {
        width:85% !important;
        padding:8px 15px !important;
        border-radius:7px !important;
    }
    
    .carrerpage .ac-overview {
        margin-top: 35px;
    }
    .filter-btns .btn {
        padding: 0px 10px !important;
        height: 40px;
        font-size: 14px;
        line-height: 40px;
        border-radius: 7px;
        margin-right:5px;
    }
    
    .facility-content  .bgyellow.mb-5 {
        margin-bottom: 55px !important;
    }
    
    .facility-content  .py-4.acad_content_1 {
        padding-top: 10px !important;
        padding-bottom: 0 !important;
    }
    
    .facility-content  .bggreyy.container {
        margin-bottom: 55px !important;
    }
    
    .facility-content .container:last-child {
        margin-bottom: 25px !important;
    }
    .faciltynew_sections.academics-section.py-5 {
        padding-bottom: 0 !important;
        padding-top: 20px !important;
    }
        

}



@media(min-width:1200px)  {

    .galleryRightTopSlider {
        position: relative;
        left: -20px;
    }
    .galleryRightBottomSlider  .slick-prev {
        left: -20px;
    }
    .galleryRightTopSlider[dir='rtl'] .slick-prev {
        right: -20px;
    
    }

}




@media(max-width:767px)  {

.facltymarg_top {
    margin-top: -200px;
}

.facilityimages {
    flex-wrap: wrap;
}

.committe-left {
    flex-direction: column;
}

.committe-right {
    position: absolute;
    right: 15px;
}

.comtxt {
    width: 100%;
}

.comtxt h5 {
    text-align: left;
}
.mobshowimg.d-none {
    display: block !important;
    margin-bottom: 15px;
}

.col-lg-5.imgsticky.mobhide {
    display: none;
}


.jdd h5 {
    text-align: left;
    font-size: 15px;
}

.jobicon {
    min-width: 47px;
    height: 47px;
    width: 47px;
}

.job-card .align-items-center {
    align-items: flex-start !important;
}

.nonteachcard .align-items-center {
    align-items: center !important;
}

.job-card .tag {
    padding: 2px 5px;
    font-size: 11px;
    border-radius: 6px;
    line-height: 24px;
}

.subj_req {
    display: flex;
    flex-wrap: wrap;
}

.job-card {
    padding: 10px;
}

.job-card ul li {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
}
span.arrow {
    font-size: 14px;
}

.helpbox.mobhide {
    display: none;
}

.helpbox.mobshow {
    display: block !important;
}
.acad_content h3.title {
    font-size: 1.125rem;
}
.facltyrow + .academics-section.py-5 {
    padding: 0 !important;
}
.facltyrow + .academics-section .ac-overview .row {
    padding: 0;
}
.award-card img {
    max-height: 270px;
}

.messagetxt h2.title {
    font-size: 1.25rem;
}
.about-cont.pagecontent h2 {
    text-align: left;
}
.gllrybrdcrmb {
    padding: 12px 7px;
    font-size: 14px;
    width:100%;
    line-height: normal;
}
.marronborder .w-25 {
    width: 100% !important;
}
.category-title {
    font-size: 13px;
}
.tgglebtn {
    width: 30px;
    height: 30px;
    line-height: normal;
}
.gallrysearch {         
    width: 95% !important;
    margin-bottom: 14px !important;
}

.marronborder {
    flex-wrap: wrap;
}

.contenttxt.mt-4 {
    margin-bottom: 30px;
    margin-top: 0 !important;
}

#jobApplicationForm label.fw-bold { display:none; }

#jobApplicationForm input.form-control {
    line-height: 20px;
    padding: 6px 12px;
}

#jobApplicationForm .col-md-6.mb-4 {
    margin-bottom: 12px !important;
}

#jobApplicationForm  .form-check-label {
    font-size: 14px;
}

#jobApplicationForm .form-check-input {
    position: relative;
    top: -1px;
    right: -2px;
}

#jobApplicationForm .col-12.mb-3 {
    margin-bottom: 10px !important;
}

button#submitJobForm {
    height: 40px;
    line-height: 40px;
}

#jobApplicationForm .col-12.mb-4 {
    margin-bottom: 12px !important;
}
select#designationSelect {
    height: 34px;
}

.mob_mb { margin-bottom:10px!important; }
.job-card .apply-btn {
    padding: 6px 20px;
}
.mob-p-0 { padding:0px !important;  }

.mob-col-reverse {
    flex-direction: column-reverse;
}
.ncte_sectn a.pdfbtn {
    margin-bottom: 10px;
}
}




.twoimg_glslider img,
.oneimg_glslider img{
    width:100%;
    height:auto;
    display:block;
}
.twoimg_glslider,
.oneimg_glslider{
    width:100%;
    min-width:0;
}

.slick-list,
.slick-track{
    width:100%;
}

.ncte_sectn table, .ncte_sectn td {
    border: 1px  solid;
    padding: 10px;
    max-width: 100%;
}

.ncte_sectn h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

html,
body {
    overflow-y: auto !important;
    height: auto !important;
}
