/*==================================================
GLOBAL
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    color:#222;
}

a{
    text-decoration:none;
}
html,
body{
    overflow-x:hidden;
}

/*==================================================
TOP HEADER
==================================================*/

.top-header{

    background:#fff;
    padding:18px 0;
    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.college-logo{

    max-height:115px;
    transition:.4s;

}

.college-logo:hover{

    transform:scale(1.05);

}

.top-header h1{

    color:#0b4b8c;
    font-weight:800;
    font-size:2.45rem;
    letter-spacing:2px;
    margin-bottom:8px;

}
.header-content h1{
    font-size:34px;
    font-weight:700;
    letter-spacing:1px;
    line-height:1.15;
    white-space:normal;
    word-break:normal;
}

.header-content h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.header-content p{
    font-size: 18px;
    margin-bottom: 5px;
}

.header-content span{
    font-size: 15px;
}
.top-header h5{

    color:#7a1f1f;
    font-weight:600;
    font-size:1.15rem;
    margin-bottom:5px;

}

.top-header p{

    margin:0;
    color:#444;
    font-weight:500;
    font-size:1rem;

}

.top-header span{

    color:#0b4b8c;
    font-weight:600;
    font-size:.95rem;

}

.logo-right{
    max-height:180px;   
    width:auto;
}
/*==================================================
NAVBAR
==================================================*/

.custom-navbar{

    background:#0b4b8c;
    box-shadow:0 8px 18px rgba(0,0,0,.15);

}

.custom-navbar .nav-link{

    color:#fff !important;
    font-size:15px;
    font-weight:500;
    text-transform:uppercase;
    padding:20px 18px !important;
    transition:.35s;
    position:relative;

}

.custom-navbar .nav-link::after{

    content:"";
    position:absolute;
    left:50%;
    bottom:8px;
    width:0;
    height:2px;
    background:#39d98a;
    transition:.35s;

}

.custom-navbar .nav-link:hover::after{

    width:70%;
    left:15%;

}

.custom-navbar .nav-link:hover{

    color:#39d98a !important;

}

.custom-navbar .active{

    color:#39d98a !important;

}

.navbar-toggler{

    margin-left:auto;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.top-header{

padding:15px 0;

}

.top-header h1{

font-size:26px;
letter-spacing:1px;

}

.top-header h5{

font-size:15px;

}

.top-header p{

font-size:14px;

}

.top-header span{

font-size:13px;

}

.college-logo{

max-height:85px;

}
.logo-right{
    max-height:130px;   /* Increase as needed */
    width:auto;
}
.custom-navbar .nav-link{

padding:14px !important;
text-align:center;

}

}


@media(max-width:576px){

.top-header h1{

font-size:18px;

}

.top-header h5{

font-size:12px;

}

.top-header p{

font-size:11px;

}

.top-header span{

display:block;
font-size:10px;
margin-top:3px;

}

.college-logo{

max-height:58px;

}

}


/* ===========================================================
   HERO SLIDER SECTION
=========================================================== */

.hero-section{
    background:#f5f8fc;
}

/*==========================
SLIDER
===========================*/

.carousel-item{
    position: relative;
    background: linear-gradient(135deg, #0b4ea2 0%, #1565c0 45%, #eaf3ff 100%);
    overflow: hidden;
}

/* Soft glowing circles */
.carousel-item::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -120px;
    left: -100px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    filter: blur(20px);
}

.carousel-item::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -120px;
    right: -80px;
    background: rgba(255,255,255,0.10);
    border-radius: 50%;
    filter: blur(15px);
}

.hero-image{
    width: 100%;
    height: 620px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.slider-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(3,24,54,.82),
        rgba(5,43,92,.45),
        rgba(0,0,0,.18)
    );
}

.carousel-caption{

    left:60px;
    right:auto;
    bottom:70px;
    width:75%;
    text-align:left;
    z-index:10;

}

.hero-tag{

    display:inline-block;
    background:#12b886;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:.6px;
    margin-bottom:18px;

}

.carousel-caption h1{

    font-size:3rem;
    font-weight:700;
    color:#fff;
    line-height:1.2;
    margin-bottom:18px;
    text-shadow:0 5px 18px rgba(0,0,0,.35);

}

.carousel-caption p{

    font-size:1.08rem;
    color:#f2f2f2;
    margin-bottom:30px;
    max-width:650px;
    line-height:1.8;

}

.hero-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

.hero-btn{

    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
    font-size:15px;

}

.hero-btn:hover{

    transform:translateY(-4px);

}

.carousel-control-prev,
.carousel-control-next{

    width:55px;
    height:55px;
    background:rgba(255,255,255,.18);
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    margin:0 20px;
    backdrop-filter:blur(6px);

}

.carousel-control-prev:hover,
.carousel-control-next:hover{

    background:#0b4b8c;

}

.carousel-indicators{

    margin-bottom:28px;

}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    background: rgba(255,255,255,.35) !important;
    border: none !important;

    /* Override Bootstrap */
    flex: 0 0 10px !important;
    box-sizing: border-box;
    opacity: 1 !important;
    transition: all .3s ease;
}

.carousel-indicators .active {
    background: #12b886 !important;
    transform: scale(1.15);
}

/*==========================
ANNOUNCEMENT
===========================*/

.announcement-box{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    height:620px;
    display:flex;
    flex-direction:column;

}

.announcement-header{

    background:linear-gradient(135deg,#0b4b8c,#0d67bd);
    color:#fff;
    padding:22px;
    font-size:22px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:12px;

}

.announcement-body{

    overflow-y:auto;
    padding:20px;
    flex:1;

}

/* Custom Scrollbar */

.announcement-body::-webkit-scrollbar{

    width:6px;

}

.announcement-body::-webkit-scrollbar-thumb{

    background:#0b4b8c;
    border-radius:20px;

}

.announcement-item{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    margin-bottom:18px;
    border-radius:16px;
    background:#f8fbff;
    transition:.35s;
    border-left:5px solid transparent;
    text-decoration:none;
    color:#222;

}

.announcement-item:hover{

    transform:translateY(-4px);
    background:#fff;
    border-left:5px solid #12b886;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.announcement-item h6{

    margin:12px 0 6px;
    font-size:16px;
    font-weight:600;
    color:#0b4b8c;

}

.announcement-item small{

    color:#666;
    display:block;

}

.announcement-item i{

    font-size:24px;
    color:#0b4b8c;
    transition:.3s;

}

.announcement-item:hover i{

    transform:translateX(6px);

}


/*==========================
RESPONSIVE
===========================*/

@media(max-width:1200px){

.carousel-caption h1{

font-size:2.4rem;

}

.hero-image{

height:560px;

}

.announcement-box{

height:560px;

}

}

@media(max-width:991px){

.hero-image{

height:500px;

}

.announcement-box{

height:auto;
margin-top:25px;

}

.carousel-caption{

left:35px;
bottom:40px;
width:85%;

}

.carousel-caption h1{

font-size:2rem;

}

.carousel-caption p{

font-size:15px;

}

.hero-btn{

padding:12px 24px;

}

}

@media(max-width:768px){

.hero-image{

height:420px;

}

.carousel-caption{

left:25px;
bottom:28px;

}

.carousel-caption h1{

font-size:1.55rem;

}

.carousel-caption p{

display:none;

}

.hero-tag{

font-size:12px;
padding:7px 14px;

}

.hero-btn{

font-size:14px;
padding:10px 18px;

}

.carousel-control-prev,
.carousel-control-next{

display:none;

}

}

@media(max-width:576px){

.hero-section{
    padding:8px 0;
}

.hero-image{
    width:100%;
    height:220px;
    object-fit:cover;
    object-position:center;
}

.carousel-item{
    min-height:220px;
}

.carousel-caption{
    width:90%;
    left:15px;
    bottom:15px;
}

.carousel-caption h1{
    font-size:1rem;
    line-height:1.3;
}

.carousel-caption p{
    display:none;
}

.hero-tag{
    font-size:10px;
    padding:5px 10px;
    margin-bottom:8px;
}

.hero-buttons{
    gap:8px;
}

.hero-btn{
    width:100%;
    font-size:13px;
    padding:10px;
}

.hero-buttons .btn:last-child{
    display:none;
}

.carousel-indicators{
    bottom:8px;
}

.carousel-indicators button{
    width:8px;
    height:8px;
    margin:0 3px;
}

.carousel-control-prev,
.carousel-control-next{
    display:none;
}

}

/*=========================================
WELCOME SECTION
=========================================*/

.welcome-section{

    background:#fff;
    padding:90px 0;

}

.section-title span{

    color:#a80000;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;

}

.section-title h2{

    color:#0b4b8c;
    font-size:46px;
    font-weight:700;
    margin:15px 0;

}

.section-title p{

    color:#666;
    font-size:17px;

}

.profile-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    text-align:center;

}

.profile-card:hover{

    transform:translateY(-8px);

}

.profile-card img{

    width:100%;
    height:360px;
    object-fit:contain;

}

.profile-content{

    padding:22px;

}

.profile-content h4{

    color:#0b4b8c;
    font-weight:700;
    font-size:22px;

}

.profile-content p{

    margin:8px 0;
    font-size:18px;
    font-weight:500;

}

.profile-content span{

    color:#666;

}

.welcome-content{

    padding:10px;

}

.welcome-content h3{

    color:#0b4b8c;
    font-size:32px;
    margin-bottom:20px;
    font-weight:700;

}

.welcome-content p{

    color:#555;
    line-height:2;
    font-size:17px;
    margin-bottom:18px;

}

.welcome-content .btn{

    border-radius:40px;
    padding:12px 30px;
    font-weight:600;
}

@media(max-width:991px){

.section-title h2{

font-size:34px;

}

.profile-card{

margin-bottom:30px;

}

.profile-card img{

height:300px;

}

.welcome-content{

text-align:center;

}

}

@media(max-width:576px){

.section-title h2{

font-size:28px;

}

.welcome-content h3{

font-size:24px;

}

.welcome-content p{

font-size:15px;
line-height:1.8;

}

.profile-card img{

height:260px;

}

}

/*=========================================
 CAMPUS NEWS
=========================================*/

.campus-section{

    background:#f7fafd;

}

.news-card{

    background:#fff;
    border-left:5px solid #0b4b8c;
    padding:28px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    height:100%;

}

.news-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.1);

}

.news-card h4{

    color:#0b4b8c;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;

}

.news-card p{

    color:#555;
    line-height:1.8;

}

.news-card a{

    color:#0b4b8c;
    font-weight:600;
    text-decoration:none;

}

.news-card a:hover{

    color:#12b886;

}

/*=========================================
 FEATURE BOX
=========================================*/

.feature-card{

    background:#edf5ff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    border:1px solid #dbe8ff;
    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);
    background:#0b4b8c;

}

.feature-icon{

    width:85px;
    height:85px;
    border-radius:50%;
    background:#fff;
    color:#0b4b8c;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:34px;
    margin-bottom:20px;
    transition:.35s;

}

.feature-card:hover .feature-icon{

    transform:rotate(8deg) scale(1.08);

}

.feature-card h5{

    font-size:23px;
    font-weight:700;
    margin-bottom:15px;
    color:#0b4b8c;

}

.feature-card:hover h5{

    color:#fff;

}

.feature-card h5 a{

    color:inherit;
    text-decoration:none;

}

.feature-card p{

    color:#555;
    line-height:1.7;
    margin:0;

}

.feature-card:hover p{

    color:#eef5ff;

}

.feature-card h5 a:hover{

    text-decoration:underline;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.feature-card{

padding:30px 20px;

}

.feature-card h5{

font-size:20px;

}

.news-card{

margin-bottom:10px;

}

}

@media(max-width:576px){

.news-card{

padding:22px;

}

.news-card h4{

font-size:20px;

}

.feature-icon{

width:70px;
height:70px;
font-size:28px;

}

.feature-card{

padding:25px 18px;

}

}

.recruiters-section{

    background:#fff;

}

.recruiterSwiper{

    padding:20px 55px;

}

.recruiterSwiper .swiper-slide{

    display:flex;
    justify-content:center;
    align-items:center;
    height:150px;

}

.recruiterSwiper img{

    max-width:180px;
    max-height:80px;
    object-fit:contain;
    transition:.35s;
    filter:grayscale(100%);

}

.recruiterSwiper img:hover{

    filter:grayscale(0);
    transform:scale(1.08);

}

.swiper-button-prev,
.swiper-button-next{
    color:#0b4b8c !important;
    width:45px;
    height:45px;
}

.swiper-button-prev::after,
.swiper-button-next::after{
    font-size:28px !important;
    font-weight:bold;
}

/*=========================================
FOOTER
=========================================*/

.footer{

    background:#0b2d52;
    color:#fff;
    padding-top:70px;

}

.footer-logo{

    height:75px;

}

.footer h4{

    font-weight:700;
    margin-bottom:15px;

}

.footer h5{

    margin-bottom:20px;
    font-weight:600;
    color:#fff;

}

.footer p{

    color:#d6dce5;
    line-height:1.9;

}

.footer ul{

    list-style:none;
    padding:0;
    margin:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#d6dce5;
    text-decoration:none;
    transition:.3s;

}

.footer ul li a:hover{

    color:#12b886;
    padding-left:6px;

}

.footer i{

    margin-right:8px;

}

.footer-social{

    margin-top:20px;

}

.footer-social a{

    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    color:#fff;
    margin-right:8px;
    transition:.3s;

}

.footer-social a:hover{

    background:#12b886;
    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:60px;
    background:#082340;
    padding:18px 0;
    text-align:center;

}

.footer-bottom p{

    margin:0;
    color:#d6dce5;

}

@media(max-width:991px){

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

}

/*==================================================
NAVBAR DROPDOWN
==================================================*/

.custom-navbar .dropdown-menu{

    border:none;
    border-radius:12px;
    padding:10px 0;
    min-width:260px;
    margin-top:0;
    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.custom-navbar .dropdown-item{

    padding:14px 22px;
    font-size:15px;
    font-weight:500;
    color:#222;
    transition:.3s;

}

.custom-navbar .dropdown-item:hover{

    background:#edf5ff;
    color:#0b4b8c;
    padding-left:30px;

}

.custom-navbar .dropdown-toggle::after{

    margin-left:8px;
}

/* Desktop Hover */

@media(min-width:992px){

.custom-navbar .dropdown:hover>.dropdown-menu{

display:block;
animation:dropdownFade .25s ease;

}

}

/* Mobile */

@media(max-width:991px){

.custom-navbar .dropdown-menu{

background:#0b4b8c;
box-shadow:none;
border-radius:10px;
padding:0;
margin-top:8px;

}

.custom-navbar .dropdown-item{

color:#fff;
padding:12px 18px;

}

.custom-navbar .dropdown-item:hover{

background:rgba(255,255,255,.08);
color:#12b886;
padding-left:24px;

}

}

@keyframes dropdownFade{

from{

opacity:0;
transform:translateY(10px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/*=========================================
PAGE BANNER
=========================================*/

.page-banner{

 background: url("../images/banner1.png") center center / cover no-repeat;
padding:70px 0;
text-align:center;
color:#fff;

}

.page-banner h1{

font-size:48px;
font-weight:700;
margin-bottom:12px;
letter-spacing:2px;

}

.page-banner nav{

font-size:15px;

}

.page-banner nav a{

color:#fff;
text-decoration:none;

}

.page-banner nav span{

margin:0 8px;
opacity:.7;

}

.page-banner strong{

color:#fff;

}

/*=========================================
ABOUT PAGE
=========================================*/

.about-page{

background:#f8fbff;

}

.about-image{

overflow:hidden;
border-radius:24px;
box-shadow:0 20px 50px rgba(0,0,0,.1);

}

.about-image img{

width:100%;
transition:.5s;

}

.about-image:hover img{

transform:scale(1.05);

}

.section-badge{

display:inline-block;
background:#12b886;
color:#fff;
padding:8px 18px;
border-radius:40px;
font-size:13px;
letter-spacing:1px;
margin-bottom:20px;

}

.about-content h2{

font-size:42px;
font-weight:700;
color:#0b4b8c;
margin-bottom:25px;

}

.about-content p{

font-size:17px;
line-height:2;
color:#555;
margin-bottom:18px;

}

.about-content .btn{

border-radius:40px;
padding:12px 30px;

}

@media(max-width:991px){

.page-banner{

padding:55px 0;

}

.page-banner h1{

font-size:34px;

}

.about-content{

text-align:center;

}

.about-content h2{

font-size:32px;

}

}

@media(max-width:576px){

.page-banner h1{

font-size:28px;

}

.about-content h2{

font-size:26px;

}

.about-content p{

font-size:15px;

}

}

/*=========================================
VISION & MISSION
=========================================*/

.vision-mission-section{

    background:#f8fbff;

}

.vm-card{

    background:#fff;
    border-radius:24px;
    padding:45px;
    height:100%;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border-top:5px solid #0b4b8c;
    transition:.35s;

}

.vm-card:hover{

    transform:translateY(-10px);

}

.vm-icon{

    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#edf5ff;
    color:#0b4b8c;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;

}

.vm-card h3{

    text-align:center;
    color:#0b4b8c;
    font-weight:700;
    margin-bottom:25px;

}

.vm-card p{

    color:#555;
    line-height:2;
    text-align:justify;

}

.vm-card ul{

    padding-left:18px;
    margin:0;

}

.vm-card li{

    margin-bottom:16px;
    color:#555;
    line-height:1.8;

}

.vm-card li::marker{

    color:#12b886;

}

@media(max-width:991px){

.vm-card{

padding:35px;

}

}

/*=========================================
MESSAGE PAGE
=========================================*/

.message-section{

    background:#f8fbff;

}

.message-profile{

    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.message-profile img{

    width:100%;
    height:500px;
    object-fit:cover;

}

.profile-info{

    padding:25px;
    text-align:center;

}

.profile-info h3{

    color:#0b4b8c;
    font-size:26px;
    font-weight:700;
    margin-bottom:10px;

}

.profile-info p{

    margin:0;
    font-size:18px;
    font-weight:600;

}

.profile-info span{

    color:#666;

}

.message-card{

    background:#fff;
    border-radius:22px;
    padding:45px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    position:relative;

}

.quote-icon{

    width:70px;
    height:70px;
    border-radius:50%;
    background:#edf5ff;
    color:#0b4b8c;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;

}

.message-card h2{

    color:#0b4b8c;
    font-weight:700;
    margin-bottom:25px;

}

.message-card p{

    color:#555;
    line-height:2;
    text-align:justify;
    margin-bottom:20px;

}

.signature{

    margin-top:40px;
    padding-top:20px;
    border-top:2px dashed #d8e7f8;

}

.signature h4{

    color:#0b4b8c;
    font-weight:700;
    margin-bottom:8px;

}

.signature span{

    color:#666;

}

@media(max-width:991px){

.message-card{

padding:30px;

}

.message-profile img{

height:420px;

}

}

@media(max-width:576px){

.message-card{

padding:22px;

}

.message-card p{

font-size:15px;
line-height:1.9;

}

.message-profile img{

height:320px;

}

.profile-info h3{

font-size:22px;

}

}

/*==================================================
DEPARTMENT PAGE
==================================================*/

.department-section{
    background:#f8fbff;
}

.department-image{
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.department-image img{
    width:100%;
    transition:.45s;
}

.department-image:hover img{
    transform:scale(1.05);
}

.department-content{
    padding-left:15px;
}

.department-content h2{
    color:#0b4b8c;
    font-size:40px;
    font-weight:700;
    margin-bottom:22px;
}

.department-content p{
    color:#555;
    font-size:17px;
    line-height:2;
    text-align:justify;
    margin-bottom:18px;
}



/*==================================================
RESEARCH SECTION
==================================================*/

.research-section{
    background:#ffffff;
}

.research-card{

    background:#fff;

    border-radius:18px;

    padding:28px;

    display:flex;

    align-items:center;

    gap:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border-left:5px solid #12b886;

    transition:.35s;

}

.research-card:hover{

    transform:translateY(-8px);

    border-left-color:#0b4b8c;

}

.research-card i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#edf5ff;

    color:#0b4b8c;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.research-card h5{

    margin:0;

    color:#0b4b8c;

    font-size:21px;

    font-weight:600;

}



/*==================================================
FACULTY
==================================================*/

.faculty-section{

    background:#f8fbff;

}

.faculty-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.faculty-card:hover{

    transform:translateY(-10px);

}

.faculty-card img{

    width:100%;

    height:200px;

    object-fit:contain;

}

.faculty-info{

    padding:22px;

    text-align:center;

}

.faculty-info h4{

    color:#0b4b8c;

    font-size:22px;

    font-weight:700;

    margin-bottom:10px;

}

.faculty-info p{

    color:#444;

    margin-bottom:6px;

    font-weight:500;

}

.faculty-info span{

    display:block;

    color:#777;

    margin-bottom:20px;

    font-size:15px;

}

.faculty-info a{

    color:#0b4b8c;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.faculty-info a i{

    transition:.3s;

    margin-left:4px;

}

.faculty-info a:hover{

    color:#12b886;

}

.faculty-info a:hover i{

    transform:translateX(6px);

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.department-content{

padding-left:0;

text-align:center;

}

.department-content h2{

font-size:32px;

}

.department-content p{

font-size:16px;

}

.department-image{

margin-bottom:20px;

}

.faculty-card img{

height:260px;

}

.research-card{

padding:22px;

}

}

@media(max-width:576px){

.department-content h2{

font-size:26px;

}

.department-content p{

font-size:15px;

line-height:1.9;

}

.research-card{

flex-direction:column;

text-align:center;

}

.research-card h5{

font-size:18px;

}

.faculty-card img{

height:230px;

}

.faculty-info{

padding:18px;

}

.faculty-info h4{

font-size:20px;

}

}

/*==================================================
PROGRAM PAGE
==================================================*/

.program-section{

    background:#f8fbff;

}

.program-image{

    overflow:hidden;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.program-image img{

    width:100%;
    transition:.4s;

}

.program-image:hover img{

    transform:scale(1.05);

}

.program-content{

    padding-left:10px;

}

.program-content h2{

    color:#0b4b8c;
    font-size:40px;
    font-weight:700;
    margin-bottom:22px;

}

.program-content p{

    color:#555;
    font-size:17px;
    line-height:2;
    text-align:justify;

}



/*==================================================
PROGRAM DETAILS
==================================================*/

.program-details{

    background:#fff;

}

.detail-card{

    background:#fff;
    border-radius:20px;
    text-align:center;
    padding:35px 20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #0b4b8c;
    height:100%;

}

.detail-card:hover{

    transform:translateY(-10px);

}

.detail-card i{

    font-size:42px;
    color:#0b4b8c;
    margin-bottom:18px;

}

.detail-card h5{

    color:#0b4b8c;
    font-weight:700;
    margin-bottom:10px;

}

.detail-card p{

    color:#555;
    margin:0;
    font-size:17px;
    font-weight:500;

}



/*==================================================
PROGRAM TABLE
==================================================*/

.table{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.table thead th{

    font-weight:700;
    text-align:center;
    vertical-align:middle;
    padding:16px;

}

.table tbody td{

    padding:16px;
    vertical-align:top;
    line-height:1.8;

}

.table tbody tr:hover{

    background:#f8fbff;

}



/*==================================================
CAREER SECTION
==================================================*/

.career-section{

    background:#f8fbff;

}

.career-card{

    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    border-bottom:5px solid transparent;
    height:100%;

}

.career-card:hover{

    transform:translateY(-10px);
    border-bottom:5px solid #12b886;

}

.career-card i{

    width:80px;
    height:80px;
    border-radius:50%;
    background:#edf5ff;
    color:#0b4b8c;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:34px;
    margin-bottom:22px;

}

.career-card h5{

    color:#0b4b8c;
    font-size:22px;
    font-weight:700;
    margin:0;

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.program-content{

text-align:center;
padding-left:0;

}

.program-content h2{

font-size:32px;

}

.program-content p{

font-size:16px;

}

.program-image{

margin-bottom:20px;

}

.detail-card{

padding:28px 18px;

}

.table thead th,
.table tbody td{

font-size:15px;

}

}



@media(max-width:576px){

.program-content h2{

font-size:27px;

}

.program-content p{

font-size:15px;
line-height:1.9;

}

.detail-card{

padding:24px 15px;

}

.detail-card i{

font-size:34px;

}

.detail-card h5{

font-size:18px;

}

.detail-card p{

font-size:15px;

}

.career-card{

padding:25px 18px;

}

.career-card i{

width:65px;
height:65px;
font-size:28px;

}

.career-card h5{

font-size:18px;

}

.table{

font-size:14px;

}

.table thead th,
.table tbody td{

padding:10px;

}

}

/*==================================================
FACILITY PAGE
==================================================*/

.facility-section{

    background:#f8fbff;

}

.section-heading{

    font-size:42px;
    font-weight:700;
    color:#0b4b8c;
    margin:15px 0;

}

.section-subtitle{

    max-width:850px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;

}



/*==================================================
GALLERY SECTION
==================================================*/

.gallery-section{

    margin-top:70px;

}

.gallery-section h3{

    position:relative;
    display:inline-block;
    margin-bottom:35px;
    color:#0b4b8c;
    font-size:28px;
    font-weight:700;
    padding-bottom:12px;
    text-transform:uppercase;
    letter-spacing:1px;

}

.gallery-section h3::after{

    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:4px;
    background:#12b886;
    border-radius:20px;

}



/*==================================================
GALLERY CARD
==================================================*/

.gallery-card{

    background:#fff;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;

}

.gallery-card:hover{

    transform:translateY(-10px);

}

.gallery-card img{

    width:100%;
    height:240px;
    object-fit:contain;
    transition:.45s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}



/*==================================================
OPTIONAL IMAGE TITLE
==================================================*/

.gallery-title{

    padding:18px;
    text-align:center;
    font-weight:600;
    color:#0b4b8c;
    font-size:17px;

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.section-heading{

font-size:34px;

}

.gallery-section{

margin-top:55px;

}

.gallery-section h3{

font-size:24px;

}

.gallery-card img{

height:210px;

}

}



@media(max-width:576px){

.section-heading{

font-size:28px;

}

.section-subtitle{

font-size:15px;

}

.gallery-section{

margin-top:45px;

}

.gallery-section h3{

font-size:20px;

}

.gallery-card{

border-radius:15px;

}

.gallery-card img{

height:220px;

}

}

/*==================================================
COMMITTEE PAGE
==================================================*/

.committee-section{

    background:#f8fbff;

}



/*==================================================
APPROVAL CARD
==================================================*/

.approval-card{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    text-align:center;
    margin-bottom:50px;

}

.approval-card h3{

    font-size:30px;
    font-weight:700;
    color:#0b4b8c;
    margin-bottom:30px;

}

.approval-image{

    width:100%;
    max-width:520px;

    border-radius:15px;

    border:8px solid #f8f9fa;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    transition:.35s;

}

.approval-image:hover{

    transform:scale(1.03);

}



/*==================================================
CONTENT BOX
==================================================*/

.committee-box{

    background:#fff;

    border-radius:20px;

    padding:40px;

    margin-bottom:45px;

    box-shadow:0 12px 30px rgba(0,0,0,.07);

}

.committee-box h3{

    color:#0b4b8c;

    font-weight:700;

    margin-bottom:25px;

    position:relative;

    display:inline-block;

    padding-bottom:10px;

}

.committee-box h3::after{

    content:'';

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:4px;

    background:#17b978;

    border-radius:30px;

}



/*==================================================
OBJECTIVE LIST
==================================================*/

.committee-list{

    list-style:none;

    padding-left:0;

    margin-bottom:0;

}

.committee-list li{

    padding:10px 0;

    font-size:16px;

    color:#444;

    position:relative;

    padding-left:32px;

    line-height:1.7;

}

.committee-list li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#17b978;

    font-weight:bold;

    font-size:18px;

}



/*==================================================
TABLE
==================================================*/

.committee-box table{

    margin-bottom:0;

}

.committee-box thead{

    text-align:center;

}

.committee-box td{

    vertical-align:middle;

}



/*==================================================
BUTTONS
==================================================*/

.approval-card .btn{

    border-radius:30px;

    padding:10px 22px;

    font-weight:600;

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.approval-card{

padding:30px;

}

.committee-box{

padding:30px;

}

.approval-card h3{

font-size:26px;

}

}



@media(max-width:767px){

.approval-card{

padding:20px;

}

.committee-box{

padding:20px;

}

.approval-card h3{

font-size:22px;

}

.approval-image{

max-width:100%;

}

.approval-card .btn{

display:block;

width:100%;

margin:10px 0 !important;

}

.committee-list li{

font-size:15px;

}

}

.payment-preview{

max-width:420px;

width:100%;

border:3px solid #0b4b8c;

transition:.3s;

cursor:pointer;

}

.payment-preview:hover{

transform:scale(1.03);

box-shadow:0 20px 40px rgba(0,0,0,.18);

}

/*=====================================
COLLEGE BROCHURE
=====================================*/

.brochure-card{

background:#fff;

padding:20px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.brochure-image{

width:100%;

border-radius:15px;

transition:.35s;

cursor:pointer;

}

.brochure-image:hover{

transform:scale(1.01);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/*======================================
CONTACT PAGE
======================================*/

.contact-info{

display:flex;

flex-direction:column;

gap:28px;

margin-top:30px;

}

.contact-item{

display:flex;

gap:18px;

align-items:flex-start;

}

.contact-item i{

width:55px;

height:55px;

background:#0b4b8c;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

flex-shrink:0;

}

.contact-item a{

text-decoration:none;

color:#0b4b8c;

font-weight:600;

}

.contact-item a:hover{

text-decoration:underline;

}

.program-link{

color:#0b4b8c;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.program-link:hover{

color:#198754;

text-decoration:underline;

}

.table tbody tr:hover{

background:#f8fbff;

}

/*==================================
ALBUM
==================================*/

.album-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.album-card:hover{

transform:translateY(-8px);

}

.album-card img{

width:100%;

height:230px;

object-fit:cover;

}

.album-content{

padding:25px;

text-align:center;

}

.album-content h4{

margin-bottom:20px;

font-weight:700;

}



/*==================================
GALLERY
==================================*/

.gallery-img{

width:100%;

height:340px;

object-fit:cover;

border-radius:15px;

transition:.35s;

cursor:pointer;

}

.gallery-img:hover{

transform:scale(1.03);

box-shadow:0 15px 35px rgba(0,0,0,.18);

}

/* NSS Accordion */

.accordion-item{

border:0;

margin-bottom:15px;

border-radius:12px;

overflow:hidden;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.accordion-button{

background:#1d86c8;

color:#fff;

font-weight:700;

font-size:18px;

padding:18px 22px;

}

.accordion-button:not(.collapsed){

background:#0b5d73;

color:#fff;

}

.accordion-button:focus{

box-shadow:none;

}

.accordion-body{

background:#fff;

padding:30px;

}

.accordion-body h5{

font-weight:700;

color:#0b5d73;

margin-bottom:20px;

margin-top:10px;

}

.gallery-img{

width:100%;

height:240px;

object-fit:cover;

border-radius:10px;

transition:.3s;

cursor:pointer;

box-shadow:0 5px 15px rgba(0,0,0,.12);

}

.gallery-img:hover{

transform:scale(1.05);

}

/* Multi Level Dropdown */

.dropdown-submenu{

position:relative;

}

.dropdown-submenu>.dropdown-menu{

top:0;

left:100%;

margin-top:-1px;

display:none;

}

.dropdown-submenu:hover>.dropdown-menu{

display:block;

}

.dropdown-submenu>.dropdown-toggle::after{

float:right;

margin-top:8px;

transform:rotate(-90deg);

}

@media(max-width:991px){

.dropdown-submenu>.dropdown-menu{

position:static;

margin-left:15px;

display:block;

box-shadow:none;

}

.dropdown-submenu>.dropdown-toggle::after{

transform:none;

}

}

/* Mobile submenu */

@media (max-width:991px){

.navbar .dropdown-menu{
    background:#fff !important;
    border-radius:8px;
    padding:0;
}

.navbar .dropdown-item{
    color:#222 !important;
    background:#fff !important;
    padding:14px 18px;
    border-bottom:1px solid #eee;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active{
    background:#f5f7fa !important;
    color:#0b4b8c !important;
}

.dropdown-submenu .dropdown-menu{
    background:#fff !important;
    margin-left:12px;
    border-left:3px solid #0b4b8c;
}

.dropdown-submenu .dropdown-item{
    background:#fff !important;
    color:#222 !important;
}

}

/*==================================================
        IICP ADMISSION POPUP
==================================================*/

#iicpPopup{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    z-index:999999;
    padding:20px;
}

/*=============================
        POPUP
=============================*/

#iicpPopup .iicp-popup{

    width:100%;
    max-width:900px;

    max-height:90vh;

    overflow-y:auto;

    background:#fff;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

    position:relative;

    animation:iicpPopup .35s ease;

}

/* Scroll */

#iicpPopup .iicp-popup::-webkit-scrollbar{

    width:8px;

}

#iicpPopup .iicp-popup::-webkit-scrollbar-thumb{

    background:#0B8D8B;

    border-radius:30px;

}

/*=============================
        CLOSE
=============================*/

#iicpPopup .iicp-close{

    position:absolute;

    right:15px;

    top:15px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#163B72;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

    z-index:20;

}

#iicpPopup .iicp-close:hover{

    background:#163B72;

    color:#fff;

    transform:rotate(90deg);

}

/*=============================
        HEADER
=============================*/

#iicpPopup .iicp-header{

    background:linear-gradient(135deg,#163B72,#0B8D8B);

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:22px 30px;

}

#iicpPopup .iicp-logo{

    width:75px;

    text-align:center;

}

#iicpPopup .iicp-logo img{

    width:70px;

    max-width:100%;

}

#iicpPopup .iicp-title{

    flex:1;

    text-align:center;

}

#iicpPopup .iicp-title h2{

    margin:0;

    color:#fff;

    font-size:28px;

    font-weight:700;

}

#iicpPopup .iicp-title h3{

    margin:8px 0;

    color:#FFD54F;

    font-size:22px;

    font-weight:600;

}

#iicpPopup .iicp-title p{

    margin:0;

    color:#fff;

    font-size:16px;

}

/*=============================
        TOP CARDS
=============================*/

#iicpPopup .iicp-top-links{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    padding:22px;

}

#iicpPopup .iicp-card{

    text-decoration:none;

    text-align:center;

    background:#f8fbff;

    border:2px solid #e3edf5;

    border-radius:15px;

    padding:25px 20px;

    transition:.35s;

    color:#163B72;

}

#iicpPopup .iicp-card:hover{

    transform:translateY(-7px);

    border-color:#0B8D8B;

    box-shadow:0 12px 25px rgba(0,0,0,.12);

}

#iicpPopup .iicp-card i{

    width:65px;

    height:65px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#163B72,#0B8D8B);

    color:#fff;

    font-size:28px;

    margin-bottom:15px;

}

#iicpPopup .iicp-card h4{

    margin:0 0 8px;

    font-size:20px;

    font-weight:700;

}

#iicpPopup .iicp-card span{

    color:#0B8D8B;

    font-weight:600;

}

/*=============================
        ANIMATION
=============================*/

@keyframes iicpPopup{

    from{

        opacity:0;

        transform:translateY(35px) scale(.95);

    }

    to{

        opacity:1;

        transform:none;

    }

}
/*=========================================
        PROGRAM SECTIONS
=========================================*/

#iicpPopup .iicp-programs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    padding:0 22px 22px;
}

#iicpPopup .iicp-program{
    background:#fff;
    border:2px solid #e5edf5;
    border-radius:15px;
    transition:.3s;
    overflow:hidden;
}

#iicpPopup .iicp-program:hover{
    border-color:#0B8D8B;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transform:translateY(-4px);
}

#iicpPopup .iicp-program-heading{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 20px;
    background:#f8fbff;
    border-bottom:1px solid #e5edf5;
}

#iicpPopup .iicp-program-heading i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:linear-gradient(135deg,#163B72,#0B8D8B);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

#iicpPopup .iicp-program-heading h3{
    margin:0;
    color:#163B72;
    font-size:22px;
    font-weight:700;
}

#iicpPopup .iicp-program ul{
    margin:0;
    padding:18px;
    list-style:none;
}

#iicpPopup .iicp-program ul li{
    margin-bottom:10px;
}

#iicpPopup .iicp-program ul li:last-child{
    margin-bottom:0;
}

#iicpPopup .iicp-program ul li a{
    display:block;
    text-decoration:none;
    background:#f9fbfd;
    border:1px solid #dfe8f2;
    border-radius:8px;
    padding:11px 15px;
    color:#444;
    transition:.3s;
}

#iicpPopup .iicp-program ul li a:hover{
    background:#163B72;
    color:#fff;
    padding-left:22px;
}

/*=========================================
            NOTICE
=========================================*/

#iicpPopup .iicp-notice{
    margin:0 22px 22px;
    padding:14px 18px;
    background:#fff7dc;
    border-left:5px solid #f4b400;
    color:#555;
    border-radius:10px;
    font-size:15px;
}

/*=========================================
            FOOTER
=========================================*/

#iicpPopup .iicp-footer{
    background:#163B72;
    color:#fff;
    display:flex;
    justify-content:space-around;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    padding:18px;
}

#iicpPopup .iicp-footer div{
    font-size:15px;
}

#iicpPopup .iicp-footer i{
    color:#FFD54F;
    margin-right:8px;
}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:991px){

#iicpPopup .iicp-top-links{
grid-template-columns:repeat(2,1fr);
}

#iicpPopup .iicp-programs{
grid-template-columns:1fr;
}

}

@media(max-width:767px){

#iicpPopup{
padding:12px;
}

#iicpPopup .iicp-popup{
max-height:95vh;
}

#iicpPopup .iicp-header{
flex-direction:column;
text-align:center;
}

#iicpPopup .iicp-logo img{
width:60px;
}

#iicpPopup .iicp-title h2{
font-size:22px;
}

#iicpPopup .iicp-title h3{
font-size:18px;
}

#iicpPopup .iicp-title p{
font-size:14px;
}

#iicpPopup .iicp-top-links{
grid-template-columns:1fr;
padding:18px;
}

#iicpPopup .iicp-programs{
grid-template-columns:1fr;
padding:0 18px 18px;
}

#iicpPopup .iicp-notice{
margin:0 18px 18px;
}

#iicpPopup .iicp-footer{
flex-direction:column;
text-align:center;
gap:12px;
}

}
@media (min-width:1400px){
    .container{
        max-width:1500px;
    }
}

/*==================== TOP BAR ====================*/

.top-bar{
    background:#123b73;
    padding:10px 0;
    font-size:14px;
}

.top-left a,
.top-right a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-left a:hover,
.top-right a:hover{
    color:#ffd54f;
}

.apply-btn{
    background:#203c8b;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    color:#fff !important;
}

.apply-btn:hover{
    background:#f7b500;
    color:#000 !important;
}

.social-icon{
    margin-left:12px;
    font-size:16px;
}

.dropdown-menu{
    border-radius:10px;
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}
@media (max-width:768px){

    .top-right{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:center;   /* ya space-between */
        flex-wrap:nowrap;
        gap:10px;
    }

    .apply-btn{
        margin:0 !important;
        padding:6px 14px;
        font-size:14px;
        white-space:nowrap;
    }

    .top-right a{
        white-space:nowrap;
    }
}