/*.callout-section{
    background:#f7f9fc;
    padding:80px 0;
}*/
.department-section{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.info-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    display:flex;
    flex-direction:column;
}

.info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.info-img{
    overflow:hidden;
    position:relative;
}

.info-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
}

.info-card:hover .info-img img{
    transform:scale(1.08);
}

.info-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.info-content h3{
    font-size:28px;
    color:rgb(243, 99, 113);
    font-weight:700;
    margin-bottom:18px;
    position:relative;
}

.info-content h3:after{
    content:'';
    width:55px;
    height:3px;
    background:#f59e0b;
    display:block;
    margin-top:10px;
}

.info-content p{
    color:#666;
    line-height:1.9;
    font-size:15px;
    margin-bottom:25px;
    flex:1;
}

.btn-read{
    display:inline-block;
    background-color:rgb(253, 163, 27);
    color:#fff;
   padding: 10px 40px;
   /* border-radius:40px;*/
    font-weight:600;
    text-decoration:none;
    transition:.4s;
    width:fit-content;
}

.btn-read:hover{
    background:linear-gradient(90deg,#f59e0b,#ffb703);
    color:#fff;
    transform:translateY(-3px);
}

@media(max-width:991px){

.info-img img{
    height:220px;
}

.info-content{
    padding:25px;
}

.info-content h3{
    font-size:24px;
}

}

@media(max-width:767px){

.callout-section{
    padding:50px 0;
}

.info-img img{
    height:200px;
}

.info-content{
    padding:20px;
}

.info-content h3{
    font-size:22px;
}

.btn-read{
    width:100%;
    text-align:center;
}

}

.department-section{
    background:#f5f8fc;
	padding:40px;
}

.dept-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.dept-tabs{
    display:flex;
    flex-wrap:wrap;
    background:#f36371;
    gap:10px;
}

.dept-tabs .tab-btn{
    border:none;
	font-size:18px;
    background:transparent;
    color:#fff;
	margin-top: 15px;
    padding:14px 25px;
    border-radius:15px;
    transition:.4s;
    font-weight:500;
}

.dept-tabs .tab-btn:hover{
   transform: translateX(8px);
    color:#FDA31B;
}
.hover-effect{
    cursor: pointer;
    transition: all .3s ease;
}






/*.dept-tabs .active{
    background:#F89C1C;
}*/

.tab-content{
    display:none;
    padding:40px;
    animation:fade .4s;
}

.tab-content.active{
    display:block;
}

.tab-content h3{
    color:#000;
    margin-bottom:20px;
    font-weight:700;
}

.tab-content p{
    line-height:1.9;
    color:#666;
}
.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

.department-sidebar{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:sticky;
    top:20px;
}

.department-sidebar h4 {
    background: #FDA31B;
    color: #fff;
    margin: 0;
    padding: 10px;
    font-size: 18px;
}

.department-sidebar ul{
    margin:0;
    padding:0;
    list-style:none;
}

.department-sidebar li{
    border-bottom:1px solid #eee;
}

.department-sidebar li:last-child{
    border:none;
}

.department-sidebar a {
    display: block;
    padding: 10px 10px;
    color: #333;
    text-decoration: none;
    transition: .3s;
    position: relative;
    font-weight: 500;
}

.department-sidebar a::before{
    content:"➜";
    color:#F89C1C;
    margin-right:10px;
}

.department-sidebar a:hover{
    background:#f36371;
    color:#fff;
    padding-left:30px;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

.dept-tabs{
justify-content:center;
}

.dept-tabs .tab-btn{
width:100%;
}

.tab-content{
padding:25px;
}

.department-sidebar{
margin-top:25px;
}

}



.news-single{
    text-align:center;
    margin-bottom:40px;
}

.faculty-photo{
    width:180px;
    height:180px;
    margin:0 auto 20px;
    border-radius:50%;
    overflow:hidden;
    border:6px solid #fff;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    transition:.4s;
}

.faculty-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    transition:.4s;
}

.news-single:hover .faculty-photo{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.news-single:hover .faculty-photo img{
    transform:scale(1.08);
}

.faculty-content h4{
    margin:10px 0 5px;
    font-size:18px;
    font-weight:600;
}

.faculty-content h4 a{
    color:#222;
    text-decoration:none;
}

.faculty-content h4 a:hover{
    color:#c40000;
}

.faculty-content span{
    display:block;
    color:#777;
    font-size:15px;
    margin-top:5px;
}

@media(max-width:991px){
    .faculty-photo{
        width:160px;
        height:160px;
    }
}

@media(max-width:576px){
    .faculty-photo{
        width:140px;
        height:140px;
    }
}


.facility-details{
    background:#f5f8fc;
}

.facility-content-card{
    background:#fff;
    padding:40px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.facility-title{
    font-size:34px;
    font-weight:700;
    color:#0d3b66;
    margin-bottom:10px;
}

.title-line{
    width:80px;
    height:4px;
    background:#188e00;
    margin-bottom:30px;
    border-radius:20px;
}

.facility-content{
    font-size:17px;
    line-height:1.9;
    color:#555;
}

.facility-content p{
    margin-bottom:20px;
}

.facility-content h2,
.facility-content h3,
.facility-content h4{
    color:#0d3b66;
    margin-top:30px;
    margin-bottom:15px;
    font-weight:600;
}

.facility-content ul{
    margin-left:25px;
    margin-bottom:20px;
}

.facility-content ul li{
    margin-bottom:10px;
}

.facility-content img{
    max-width:100%;
    height:auto;
    border-radius:10px;
    margin:25px 0;
}

/* Sidebar */

.facility-sidebar{
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;
    position:sticky;
	top:100px;
}

.facility-sidebar h3{
    background:#FDA31B;
    color:#fff;
    padding:18px;
    font-size:18px;
    margin:0;
}

.facility-menu{
    margin:0;
    padding:0;
    list-style:none;
}

.facility-menu li{
    border-bottom:1px solid #ececec;
}

.facility-menu li:last-child{
    border-bottom:none;
}

.facility-menu li a{
    display:block;
    padding:10px 15px;
    color:#000;
    text-decoration:none;
    transition:.3s;
    position:relative;
    font-size:15px;
}

.facility-menu li a:before{
    content:"➜";
    color:#f36371;
    margin-right:10px;
}

.facility-menu li a:hover{
    background:#f36371;
    color:#fff;
    padding-left:30px;
}

.facility-menu li a:hover:before{
    color:#fff;
}

@media(max-width:991px){

.facility-content-card{
    padding:25px;
}

.facility-sidebar{
    margin-top:30px;
    position:relative;
    top:0;
}

.facility-title{
    font-size:28px;
}

}


.about-page{
    padding:80px 0;
    background:#f8f9fa;
}

.about-sidebar{
   width: 80%;
    background: #fff;
    padding: 30px 10px;
    border-radius: 5px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.about-sidebar h4{
    margin-bottom:20px;
    color:#003366;
    font-weight:700;
}

.about-sidebar ul{
    padding:0;
    list-style:none;
}

.about-sidebar li{
    margin-bottom:10px;
}

.about-sidebar a{
    border-radius: 0px;
    padding: 1px 10px;
    text-transform: none;
    border-left: 2px solid #e9c50a;
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;
	font-size:15px;
}

.about-sidebar a:hover{
    background:#f36371;
    color:#fff;
    text-decoration:none;
}

.content-block{
    background:#fff;
	display:none;
    padding:35px;
    margin-bottom:30px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.content-block.active{
    display:block;
}


.info-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.info-box i{
    font-size:42px;
    color:#005baa;
}

.mission-box{
    background:#f4f7fb;
    padding:25px;
    text-align:center;
    border-radius:10px;
    margin-bottom:20px;
}

.mission-box i{
    font-size:40px;
    color:#005baa;
    margin-bottom:15px;
}

.highlight-card{
    background:#005baa;
    color:#fff;
    padding:30px;
    text-align:center;
    border-radius:10px;
    margin-bottom:20px;
}

.highlight-card h4{
    font-size:36px;
    margin-bottom:10px;
    color:#fff;
}

.infra-list{
    columns:2;
}

.infra-list li{
    margin-bottom:12px;
}

html{
    scroll-behavior:smooth;
}

app-list li{
	color:#000;
}

/* Content Card */
.about-content{
	width:95%;
    background: #ffffff;
   /* padding: 35px;*/
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border: 1px solid #ececec;
    min-height: 500px;
}

/* Hide all content by default */
.about-pane{
    display: none;
}

/* Show active content */
.about-pane.active{
    display: block;
}

/* Heading */
.about-pane h3{
    color: #0b4f8a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FDA31C;
}

/* Paragraph */
.about-pane p{
    color: #555;
    line-height: 30px;
    font-size: 16px;
    text-align: justify;
}

/*.chairman-section{
    padding:80px 0;
    background:#f5f8fc;
}*/

.chairman-card{
    background: #fff;
    width: 100%;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
   padding: 20px 25px;
    position:relative;
	max-width: 950px;      /* Reduce card width */
  
}

.chairman-card:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:#FDA31C;
}

.chairman-image{
    text-align:center;
	  width: 220px;
    height: 220px;
}

.chairman-image img{
    width:280px;
    height:280px;
    object-fit:cover;
    border-radius:50%;
    border:8px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.designation{
    display:inline-block;
    background:#FDA31C;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.chairman-content h2{
    font-size:34px;
    color:#0B3C78;
    font-weight:700;
    margin-bottom:8px;
}

.chairman-content h5{
    color:#666;
    margin-bottom:20px;
    font-size:18px;
    font-weight:500;
}

.title-line{
    width:80px;
    height:4px;
    background:#FDA31C;
    margin-bottom:25px;
    border-radius:5px;
}

.chairman-content p{
    color:#555;
    font-size:16px;
    line-height:30px;
    text-align:justify;
}

.chairman-btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 30px;
    background:#0B3C78;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
}

.chairman-btn:hover{
    background:#FDA31C;
    color:#fff;
    text-decoration:none;
}

@media(max-width:991px){

.chairman-card{
    padding:30px;
    text-align:center;
}

.chairman-image img{
    width:220px;
    height:220px;
    margin-bottom:30px;
}

.title-line{
    margin:20px auto;
}

}

.cart-table{
    width:100% !important;
    border-collapse:collapse !important;
    table-layout:fixed;
}

.cart-table th,
.cart-table td{
    padding:15px 20px !important;
    text-align:left !important;
    vertical-align:middle !important;
    border:1px solid #e5e5e5;
    word-wrap:break-word;
}

.cart-table th{
    background:#FDA31B;
    color:#fff !important;
    font-weight:600;
}

.cart-table th:first-child,
.cart-table td:first-child{
    width:50%;
}

.cart-table th:last-child,
.cart-table td:last-child{
    width:50%;
}

.cart-table tbody tr:nth-child(even){
    background:#f8f9fa;
}

.cart-table tbody tr:hover{
    background:#f3f8ff;
}
.app-list li{
	line-height:2 !important;
}


