body{
font-family: 'Segoe UI', sans-serif;
}


/* Top bar */

.topbar{
background:#0d6efd;
color:white;
padding:5px 0;
font-size:14px;
}


/* Hero */

.hero{
width:100%;
height:400px;
}

.hero-img{
width:100%;
height:400px;
display:block;
}


.hero-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #030303;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(6, 255, 43, 0.6);
}

@media (max-width: 768px) {
    .hero-text {
        margin-top: 100px;
        font-size: 20px;
        line-height: 1.4;
    }
}

.navbar-nav .nav-link{
position:relative;
font-weight:500;
padding:8px 15px;
transition:0.3s;
}

/* Hover highlight */
.navbar-nav .nav-link:hover{
color:#0d6efd;
}

/* Bottom border animation */
.navbar-nav .nav-link::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0;
height:3px;
background:#0d6efd;
transition:0.3s;
}

/* Hover par border show */
.navbar-nav .nav-link:hover::after{
width:100%;
}

/* Facility cards */

.facility-card{
transition:0.3s;
height: 100%;
display: flex;
flex-direction: column;
border:none;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.facility-card:hover{
transform:translateY(-10px);
}


/* Ganga Section */

.ganga-section{
background:#f7f9fc;
}

.section-title{
font-weight:700;
color:#1a3c6d;
margin-bottom:20px;
}

.explore-btn{
padding:10px 25px;
border-radius:6px;
}

.ganga-map{
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}



/* Module Section */

.module-title{
font-weight:700;
color:#1a3c6d;
}

.title-line{
width:80px;
height:3px;
background:#0d6efd;
margin:10px auto 0;
}



/* Cards */

.module-card{

background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;

}

.module-card:hover{

transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);

}

.module-card h5{
font-weight:600;
color:#1a3c6d;
margin-bottom:15px;
min-height:60px;
}

.module-card p{
font-size:14px;
color:#555;
min-height:60px;
}

/* Team */


.page-banner{
background:url('images/team_banners.jpg');
background-size:cover;
background-position:center;
height:380px;

display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.page-banner h1{
font-size:48px;
font-weight:bold;
}

.page-banner p{
font-size:20px;
}

@media (max-width:768px){

.page-banner h1{
font-size:32px;
}

.page-banner p{
font-size:16px;
}

}

.team-card{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
transition:0.3s;
}

.team-card:hover{
transform:translateY(-5px);
}

.team-card img{
width:150px;
height:150px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

/* Facilities */

.facility-card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 0 30px rgba(0,0,0,0.1);
transition:0.8s;
}

.facility-card:hover{
transform:translateY(-5px);
}

.facility-img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
margin-bottom:15px;
}

/* Footer */

.footer{
background:#111;
color:white;
padding:40px 0;
}

.footer a{
color:#ccc;
text-decoration:none;
}