/* [Keep all your existing CSS styles from the original file] */
        .page-banner {
            background: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
                        url('assets/images/banner-bg.jpg') center/cover no-repeat;
            padding: 70px 0 45px;
            color: white;
            min-height: 180px;
            display: flex;
            align-items: center;
        }
        .page-banner h1 {
            font-size: 38px;
            font-weight: 800;
            letter-spacing: 1px;
            margin: 0 0 10px;
        }
        .breadcrumb-item a  { color: #ffc107; text-decoration: none; font-size: 13px; }
        .breadcrumb-item.active { color: #ccc; font-size: 13px; }
        .breadcrumb-item + .breadcrumb-item::before { color: #aaa; content: "›"; }
        .iqac-page { padding: 45px 0 60px; background: #f4f6f9; }
        .iqac-tabs-wrapper {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            overflow: hidden;
            margin-bottom: 30px;
        }
        .iqac-tabs {
            display: flex;
            flex-wrap: wrap;
            border-bottom: 3px solid #e8ecf0;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .iqac-tabs li { margin: 0; }
        .iqac-tabs li a {
            display: block;
            padding: 14px 22px;
            font-size: 13px;
            font-weight: 600;
            color: #444;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            margin-bottom: -3px;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .iqac-tabs li a:hover { color: #1e3c72; background: #f0f4ff; }
        .iqac-tabs li a.active {
            color: white;
            background: #1e3c72;
            border-bottom-color: #1e3c72;
        }
        .tab-panel { display: none; padding: 28px 30px; }
        .tab-panel.active { display: block; }
        .iqac-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .iqac-table thead tr {
            background: #1e3c72;
            color: white;
        }
        .iqac-table th {
            padding: 13px 18px;
            font-weight: 600;
            text-align: left;
        }
        .iqac-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #e8ecf0;
            color: #444;
            vertical-align: middle;
        }
        .iqac-table tr:hover td { background: #f8faff; }
        .iqac-table tr:last-child td { border-bottom: none; }
        .btn-view {
            background: #5a6a82;
            color: white;
            border: none;
            padding: 6px 18px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: background 0.2s;
        }
        .btn-view:hover { background: #1e3c72; color: white; }
        .empty-state {
            text-align: center;
            padding: 50px 20px;
            color: #999;
        }
        .empty-state i { font-size: 40px; margin-bottom: 12px; display: block; }
        .composition-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .composition-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        .composition-card .role {
            display: inline-block;
            background: #1e3c72;
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .composition-card .name { font-size: 15px; font-weight: 700; color: #222; margin: 8px 0 4px; }
        .composition-card .designation { font-size: 12px; color: #777; }
        @media (max-width: 768px) {
            .page-banner h1 { font-size: 26px; }
            .iqac-tabs li a { padding: 10px 14px; font-size: 12px; }
            .tab-panel { padding: 18px 15px; }
            .iqac-table { font-size: 13px; }
        }
