/* --- General Body and Typography --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* ADDED: Sabhi pages ke liye fixed background image */
    background-image: url('images/blub2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Page titles ko background par saaf dikhane ke liye style */
.container > h1,
.container > h2 {
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* --- Navigation Bar --- */
.navbar-brand img {
    height: 35px;
    width: auto;
    border-radius: 8px;
}
.navbar-nav .nav-link {
    font-size: 1.1rem;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #ffc107 !important;
}

/* --- Footer --- */
footer {
    font-size: 0.9rem;
}
footer a {
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: #ffc107 !important;
}
footer .list-inline-item a {
    font-size: 1.5rem;
    margin: 0 8px;
}

/* --- Page Specific Styles --- */

/* index.html */
.carousel-item img {
    max-height: 75vh;
    object-fit: cover;
}

/* about.html */
.vision-mission {
    background-color: #0c0d0d;
    color: #f0f0f0;
    padding: 50px 0;
}
.feature-icon {
    color: #0d6efd; /* Primary color */
}
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-10px);
}

/* courses.html */
.course-table thead {
    background-color: #0d6efd;
    color: white;
}
.accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #000;
}
.course-details h5 {
    font-weight: bold;
    color: #0d6efd;
}

/* facility.html */
.facility-card {
    margin-bottom: 30px;
    overflow: hidden;
}
.facility-card .card-body {
    background-color: #ffffff;
}

/* hostel.html */
.hostel-intro {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.hostel-intro ul {
    list-style-type: '✔️ ';
    padding-left: 1.5rem;
}
.hostel-intro ul li {
    margin-bottom: 10px;
}

/* result.html */
.result-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}