/* Fee Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/gallery-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Fee Overview */
.fee-overview {
    padding: 80px 0;
}

.features-list {
    margin: 30px 0;
}

.feature-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-item i {
    margin-right: 10px;
    font-size: 18px;
}

/* Fee Structure Section */
.fee-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fee-table th {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.fee-table td {
    text-align: center;
    vertical-align: middle;
}

.nav-tabs {
    border-bottom: 2px solid var(--secondary-color);
}

.nav-tabs .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    padding: 12px 25px;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: var(--secondary-color);
    background: transparent;
}

.nav-tabs .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--secondary-color);
}

/* Additional Charges Section */
.additional-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.additional-table th {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
}

/* Payment Options Section */
.payment-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.payment-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.payment-card ul {
    padding-left: 20px;
}

.payment-card ul li {
    margin-bottom: 8px;
}

.note-box {
    border-left: 4px solid var(--secondary-color);
}

.note-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Scholarship Section */
.scholarship-details h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.scholarship-details ul {
    padding-left: 20px;
}

.scholarship-details ul li {
    margin-bottom: 8px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .payment-card {
        margin-bottom: 20px;
    }
    
    .table-responsive {
        overflow-x: auto;
    }
}