/* Colleges List Page Styling */
.college-hero {
    background: linear-gradient(135deg, #0B3C5D 0%, #082d46 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.college-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.college-hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.college-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Controls Section */
.listing-controls {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 48px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.filter-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.filter-pills .btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--text-light);
    transition: all 0.3s;
}

.filter-pills .btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.anchor-pill {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anchor-pill:hover {
    background: #f8fafc;
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

/* Adjust column layout for many pills */
@media (min-width: 992px) {
    .listing-controls .col-lg-5 { width: 55%; }
    .listing-controls .col-lg-4 { width: 25%; }
    .listing-controls .col-lg-3 { width: 20%; }
}

.view-toggle {
    display: flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 10px;
}

.view-btn {
    border: none;
    background: transparent;
    padding: 8px 15px;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s;
}

.view-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Grid & Table Layouts */
#colleges-grid {
    padding: 60px 0;
}

/* Fix for anchor links being hidden behind sticky header */
#section-bds, #section-bams, #section-bhms, #section-mdms {
    scroll-margin-top: 200px;
}

.college-list-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.college-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 60, 93, 0.08);
    border-color: var(--accent-color);
}

.type-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-govt { background: #E8F5E9; color: #2E7D32; }
.type-pvt { background: #FFF3E0; color: #E65100; }

.college-list-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0 10px 0;
    line-height: 1.4;
}

.college-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    width: 16px;
    color: var(--accent-color);
}



/* Table View Styling */
.table-responsive-custom {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-custom {
    margin-bottom: 0;
}

.table-custom th {
    background: #f8fafc;
    padding: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-light);
    border-bottom: 2px solid #e2e8f0;
}

.table-custom td {
    padding: 20px;
    vertical-align: middle;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Pagination */
.college-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-link-custom {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.page-link-custom:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-link-custom.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}



/* Responsive */
@media (max-width: 768px) {
    .college-hero h1 { font-size: 2.5rem; }
    .listing-controls { position: static; }
    .filter-pills { flex-wrap: wrap; }
}
