/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.main-header.shrink {
    padding: 8px 0;
}

.logo {
    height: 50px;
    transition: all 0.3s;
}

.main-header.shrink .logo {
    height: 35px;
}

body {
    padding-top: 100px;
}

/* Buttons */
.btn-call {
    border: 1px solid #0d6efd;
    color: #0d6efd;
}

.btn-admission {
    background: #0d6efd;
    color: #fff;
}

/* banner */
.hero-banner {
    background: url("assets/img/banner.png") center/cover no-repeat;
    position: relative;
}

.hero-banner .overlay {
    background: rgba(0, 0, 0, 0.6);
    min-height: 100vh;
}

.hero-banner .card {
    max-width: 380px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .hero-banner .card {
        margin-top: 10px;
    }
}

/* lower banner conent */
.program-section {
    background: #f8f9fa;
}

.feature-box {
    background: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* admission */
.admission-section {
    background: #f4f7fb;
}

.admission-section .card {
    border: none;
    border-radius: 10px;
}

/* Faculty */

/* Pills horizontal scroll */
.scrolling-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.scrolling-wrapper::-webkit-scrollbar {
    display: none;
}

.nav-pills .nav-link {
    background: #0d1b2a;
    color: #fff;
    margin-right: 10px;
    border-radius: 8px;
    padding: 10px 18px;
    white-space: nowrap;
    font-size: 14px;
}

.nav-pills .nav-link.active {
    background: #b23a2b;
}

/* Faculty cards */
.faculty-card {
    text-align: center;
}

.faculty-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #eee;
    margin-bottom: 10px;
}

.faculty-card h5 {
    margin-top: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faculty-card img {
        width: 140px;
        height: 140px;
    }
}

/* FAQ */
.faq-section {
    background: #f8f9fa;
}

.accordion-button {
    font-weight: 600;
}

