*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#444;
}

.navbar{
    background:#0B4F8C;
}

.nav-link{
    color:#fff!important;
    margin-left:15px;
    font-weight:500;
}

.hero{
padding:50px 0;
background:linear-gradient(135deg,#0B4F8C,#3A8DFF);
color:#fff;

}

.hero h1{
font-size:3rem;
font-weight:700;
margin-bottom:20px;

}

.hero p{
font-size:18px;
margin-bottom:30px;
}

.btn-primary{
background:#ff9800;
border:none;
padding:12px 35px;
border-radius:50px;
}

.btn-primary:hover{
background:#ff7700;
}

.feature-card{
padding:40px;
text-align:center;
background:#fff;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
margin-bottom:25px;
}

.feature-card:hover{
transform:translateY(-10px);
}

.feature-card i{
font-size:50px;
color:#0B4F8C;
margin-bottom:20px;
}

.footer{
background:#0B4F8C;
color:#fff;
padding:40px 0;
margin-top:50px;
}

@media(max-width:768px){
.hero{
text-align:center;
padding:70px 0;
}

.hero h1{
font-size:2.2rem;
}
}

.footerLink
{
  color: White;
}

.footerLink a
{
  color: Yellow;
}

/* Page Banner */
.page-banner{
    background:linear-gradient(rgba(11,79,140,.85),rgba(11,79,140,.85)),
    url('../images/banner.jpg') center center/cover;
    color:#fff;
    padding:70px 0;
    text-align:center;
}

.page-banner h1{
    font-size:42px;
    font-weight:700;
}

.page-banner p{
    margin-top:10px;
}

.page-banner a{
    color:#fff;
    text-decoration:none;
}

.section-padding{
    padding:30px 0;
}

.info-box{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    text-align:center;
    height:100%;
}

.info-box i{
    font-size:45px;
    color:#0B4F8C;
    margin-bottom:20px;
}

.stats-section{
    background:#0B4F8C;
    color:#fff;
    padding:70px 0;
}

.stats-section h2{
    font-size:42px;
    font-weight:700;
}

.stats-section p{
    font-size:18px;
    margin-bottom:0;
}


/* Faculty Grid */
.faculty-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:40px;
}

/* Faculty Card */
.faculty-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.4s ease;
    cursor:pointer;
    animation:fadeUp .8s ease;
}

.faculty-card img{
    width:100%;
    display:block;
    transition:.5s ease;
}

/* Hover Effects */
.faculty-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.2);
}

.faculty-card:hover img{
    transform:scale(1.08);
}

/* Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.faculty-details{
    display:none;
    margin-top:40px;
    padding:25px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

/* Mobile */
@media(max-width:768px){
    .faculty-grid{
        gap:20px;
    }
}


.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
    z-index:9999;
    animation:fadeIn .3s;
}

.modal-content{
    position:relative;
    animation:zoomIn .3s;
}

.modal-content img{
    max-width:90vw;
    max-height:90vh;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.close{
    position:absolute;
    top:15px;
    right:25px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

.close:hover{
    color:#ddd;
}

@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

@keyframes zoomIn{
    from{transform:scale(.8);}
    to{transform:scale(1);}
}

/* Facilities Styles */
.facility-card{
    background:#fff;
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.facility-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.facility-card i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:20px;
}

.facility-card h5{
    font-size:18px;
    font-weight:600;
}

.practice-box{
    background:#0d6efd;
    color:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(13,110,253,.3);
}

.practice-box h4{
    margin-bottom:15px;
}

.practice-box i{
    margin-right:10px;
}

.practice-box p{
    margin:0;
    font-size:17px;
}

/* Gallery Grid */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

/* Gallery Item */

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition:.4s;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Modal */

.gallery-modal{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.gallery-modal-image{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
    animation:zoom .3s ease;
}

.gallery-close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:50px;
    cursor:pointer;
}

.gallery-close:hover{
    color:#ddd;
}

@keyframes zoom{

    from{
        transform:scale(.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}


.feature-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.feature-link:hover{
    text-decoration:none;
    color:inherit;
}

.feature-card{
    transition:all .3s ease;
    cursor:pointer;
}

.feature-card:hover{
    transform:translateY(-8px);
}
