* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f5f5f5;
}

/* ================= NAVBAR ================= */
.navbar {
    height: 70px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff3e8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 155%;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 15px;
}

.orange-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s;
}

.orange-btn:hover {
    transform: translateY(-2px);
}

.login-btn {
    background: #2563eb;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

/* ================= BLUE NAVBAR ================= */
.blue-navbar {
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-item {
    color: white;
    padding: 18px 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-decoration: none;
    display: block;
}

.nav-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nav-item::after {
    content: "▼";
    margin-left: 8px;
    font-size: 10px;
    opacity: 0.8;
}

/* ================= MEGA MENU ================= */
.mega-wrapper {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    background: #f5fbfa;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.mega-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-content {
    display: flex;
    gap: 40px;
    padding: 30px;
}

.mega-col {
    min-width: 220px;
}

.mega-col h4 {
    color: #0b6f6d;
    margin-bottom: 10px;
}

.mega-col a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
}

.mega-col a:hover {
    color: #0b6f6d;
}

/* ================= FILTER SECTION ================= */
.filter-section {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: relative;
    z-index: 1000;
    overflow: visible;
    margin-bottom: 0;
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: visible;
}

.filter-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    flex: 1;
    min-width: 0;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-scroll::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background: #fff;
    color: #444;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    background: #f8f9fa;
    border-color: #ccc;
    color: #2563eb;
}

.filter-pill .chevron {
    font-size: 16px;
    color: #888;
    transition: transform 0.25s ease;
}

.filter-pill.all-filter {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
    font-weight: 500;
}

.filter-pill.all-filter:hover {
    background: #dbeafe;
}

.filter-separator {
    width: 1px;
    height: 24px;
    background: #ddd;
    margin: 0 5px;
    flex-shrink: 0;
}

/* ================= FILTER DROPDOWN ================= */
.filter-dropdown-wrap {
    position: relative;
    display: inline-flex;
    z-index: 1001;
}

.filter-dropdown-wrap.active {
    z-index: 9998;
}

.filter-dropdown-wrap.active .filter-pill .chevron {
    transform: rotate(180deg);
}

.filter-dropdown {
    position: fixed;
    min-width: 240px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.filter-dropdown-wrap.active .filter-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    gap: 8px;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2563eb;
}

.filter-option:hover {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0%, transparent 100%);
    color: #2563eb;
}

.filter-option.checked {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-weight: 500;
}

.view-all-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: transparent;
    border: none;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background: #f1f5f9;
    color: #1d4ed8;
}

/* ================= FILTER MODAL ================= */
.filter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.filter-modal.active {
    display: flex;
}

.filter-modal-content {
    background: #fff;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
}

.filter-modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.filter-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s ease;
    padding: 4px;
}

.filter-modal-close:hover {
    color: #1f2937;
}

.filter-modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.filter-modal-sidebar {
    width: 280px;
    border-right: 1px solid #e5e7eb;
    padding: 16px 0;
    overflow-y: auto;
}

.filter-category-btn {
    width: 100%;
    padding: 14px 24px;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 15px;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
    border-left: 3px solid transparent;
}

.filter-category-btn:hover {
    background: #f9fafb;
    color: #1f2937;
}

.filter-category-btn.active {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
    color: #2563eb;
    font-weight: 600;
    border-left-color: #2563eb;
}

.filter-modal-options {
    flex: 1;
    padding: 24px 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.filter-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #f9fafb;
}

.filter-search-box svg {
    color: #9ca3af;
    flex-shrink: 0;
}

.filter-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #1f2937;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.filter-search-box input::placeholder {
    color: #9ca3af;
}

.filter-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    flex: 1;
    overflow-y: auto;
}

.filter-option-modal {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.filter-option-modal:hover {
    border-color: #2563eb;
    background: #f0f7ff;
}

.filter-option-modal input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2563eb;
}

.filter-option-modal label {
    flex: 1;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.filter-option-modal.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

.filter-option-modal.selected label {
    color: #2563eb;
    font-weight: 500;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.clear-btn {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.clear-btn:hover {
    color: #dc2626;
}

.filter-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 30px;
    border-top: 1px solid #e5e7eb;
}

.cancel-btn {
    padding: 12px 32px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.cancel-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.apply-btn {
    padding: 12px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.apply-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    transform: translateY(-1px);
}

/* ================= CONTENT ================= */
.colleges-content {
    padding: 50px 0;
    min-height: 50vh;
    background: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
}

.colleges-content > .content-header,
.colleges-content > .colleges-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8%;
    padding-right: 8%;
}

/* ✨ COMPACT HEADER WITH CLOSE BUTTON & ANIMATION ✨ */
.content-header {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.5s ease-out;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close animation */
.content-header.closing {
    animation: slideUp 0.4s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 0;
        transform: translateY(-20px);
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        max-height: 0;
    }
}

.content-header h2 {
    color: #1f2937;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.content-header p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Close Button */
.close-header-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ef4444;
}

.close-header-btn:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.close-header-btn svg {
    width: 16px;
    height: 16px;
}

/* ================= MBA COLLEGES TABLE ================= */
.colleges-section {
    margin-top: 50px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2563eb;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.section-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white;
}

.colleges-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.colleges-table thead {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.colleges-table thead th {
    padding: 18px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #1d4ed8;
}

.colleges-table thead th:first-child {
    border-top-left-radius: 12px;
    text-align: center;
    width: 80px;
}

.colleges-table thead th:last-child {
    border-top-right-radius: 12px;
    text-align: center;
    width: 140px;
}

.colleges-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

.colleges-table tbody tr:hover {
    background: linear-gradient(90deg, #eff6ff 0%, #ffffff 100%);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.colleges-table tbody tr:last-child {
    border-bottom: none;
}

.colleges-table tbody td {
    padding: 20px 16px;
    color: #374151;
    font-size: 14px;
}

.rank-cell {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #2563eb;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #2563eb;
    border-radius: 50%;
    font-weight: 700;
    color: #2563eb;
}

.college-name {
    font-weight: 600;
    color: #1f2937;
    line-height: 1.6;
}

.college-location {
    color: #6b7280;
    font-size: 13px;
    margin-top: 4px;
}

.fee-cell {
    font-weight: 600;
    color: #059669;
}

.placement-cell {
    font-weight: 600;
    color: #7c3aed;
}

.highest-placement-cell {
    font-weight: 600;
    color: #dc2626;
}

.lpa-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.site-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    text-align: center;
}

.site-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

.to-be-verified {
    color: #f59e0b;
    font-size: 12px;
    font-style: italic;
}

/* Top 3 Highlight */
.colleges-table tbody tr:nth-child(1) td:first-child .rank-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #d4af37;
    color: #92400e;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.colleges-table tbody tr:nth-child(2) td:first-child .rank-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    border-color: #a8a8a8;
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}

.colleges-table tbody tr:nth-child(3) td:first-child .rank-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
    border-color: #b8741f;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
}

/* ================= FOOTER ================= */
.site-footer {
    background: #1f2937;
    color: #fff;
    padding: 40px 8%;
    margin-top: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    color: #6b7280;
    padding-top: 10px;
}

/* Scrollbar Styles */
.filter-modal-sidebar::-webkit-scrollbar,
.filter-modal-options::-webkit-scrollbar,
.filter-options-grid::-webkit-scrollbar {
    width: 6px;
}

.filter-modal-sidebar::-webkit-scrollbar-track,
.filter-modal-options::-webkit-scrollbar-track,
.filter-options-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.filter-modal-sidebar::-webkit-scrollbar-thumb,
.filter-modal-options::-webkit-scrollbar-thumb,
.filter-options-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.filter-modal-sidebar::-webkit-scrollbar-thumb:hover,
.filter-modal-options::-webkit-scrollbar-thumb:hover,
.filter-options-grid::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.table-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .filter-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .filter-modal-body {
        flex-direction: column;
    }

    .filter-modal-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        max-height: 200px;
    }

    .filter-options-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .content-header h2 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }

    .colleges-table {
        font-size: 13px;
    }

    .colleges-table thead th,
    .colleges-table tbody td {
        padding: 12px 10px;
    }
}


























































































/* ============================================================ */
/* 🔴 NEW LAYOUT FIX: FULL WIDTH & LESS SPACING */
/* ============================================================ */
.colleges-content > .content-header,
.colleges-content > .colleges-section {
    max-width: 98% !important;  /* Screen ka 98% use karega */
    width: 98% !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px !important; /* Left space kam kiya */
    padding-right: 15px !important; /* Right space kam kiya */
}

/* ✨ COMPACT HEADER WITH CLOSE BUTTON & ANIMATION ✨ */
.content-header {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.5s ease-out;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close animation */
.content-header.closing {
    animation: slideUp 0.4s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 0;
        transform: translateY(-20px);
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        max-height: 0;
    }
}

.content-header h2 {
    color: #1f2937;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.content-header p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Close Button */
.close-header-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ef4444;
}

.close-header-btn:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.close-header-btn svg {
    width: 16px;
    height: 16px;
}

/* ================= MBA COLLEGES TABLE ================= */
.colleges-section {
    margin-top: 50px;
    /* Extra properties to ensure width */
    width: 100%;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2563eb;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.section-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white;
    width: 100%; /* Ensure container takes full width */
}

.colleges-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.colleges-table thead {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.colleges-table thead th {
    padding: 18px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #1d4ed8;
}

.colleges-table thead th:first-child {
    border-top-left-radius: 12px;
    text-align: center;
    width: 80px;
}

.colleges-table thead th:last-child {
    border-top-right-radius: 12px;
    text-align: center;
    width: 140px;
}

.colleges-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

.colleges-table tbody tr:hover {
    background: linear-gradient(90deg, #eff6ff 0%, #ffffff 100%);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.colleges-table tbody tr:last-child {
    border-bottom: none;
}

.colleges-table tbody td {
    padding: 20px 16px;
    color: #374151;
    font-size: 14px;
}

.rank-cell {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #2563eb;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #2563eb;
    border-radius: 50%;
    font-weight: 700;
    color: #2563eb;
}

.college-name {
    font-weight: 600;
    color: #1f2937;
    line-height: 1.6;
}

.college-location {
    color: #6b7280;
    font-size: 13px;
    margin-top: 4px;
}

.fee-cell {
    font-weight: 600;
    color: #059669;
}

.placement-cell {
    font-weight: 600;
    color: #7c3aed;
}

.highest-placement-cell {
    font-weight: 600;
    color: #dc2626;
}

.lpa-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.site-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    text-align: center;
}

.site-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

.to-be-verified {
    color: #f59e0b;
    font-size: 12px;
    font-style: italic;
}

/* Top 3 Highlight */
.colleges-table tbody tr:nth-child(1) td:first-child .rank-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #d4af37;
    color: #92400e;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.colleges-table tbody tr:nth-child(2) td:first-child .rank-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    border-color: #a8a8a8;
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}

.colleges-table tbody tr:nth-child(3) td:first-child .rank-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
    border-color: #b8741f;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
}

/* ================= GLOBAL SEARCH BAR ================= */
.search-section {
    background: linear-gradient(135deg, #fff8f3 0%, #fff3e8 100%);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 12px 24px;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-box:focus-within {
    border-color: #2563eb;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.search-box .search-icon {
    color: #9ca3af;
    flex-shrink: 0;
}

.search-box:focus-within .search-icon {
    color: #2563eb;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #1f2937;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.search-box input::placeholder {
    color: #9ca3af;
}

.search-clear-btn {
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ef4444;
    transition: all 0.2s ease;
}

.search-clear-btn:hover {
    background: #ef4444;
    color: white;
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.search-suggestions.active {
    display: block;
    animation: slideDownSuggestions 0.25s ease;
}

@keyframes slideDownSuggestions {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-category {
    padding: 12px 20px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.suggestion-category:first-child {
    border-radius: 16px 16px 0 0;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: linear-gradient(90deg, #eff6ff 0%, #ffffff 100%);
}

.suggestion-item .suggestion-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.suggestion-item.course-item .suggestion-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.suggestion-item .suggestion-info {
    flex: 1;
    min-width: 0;
}

.suggestion-item .suggestion-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-item .suggestion-meta {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.suggestion-item .suggestion-arrow {
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.suggestion-item:hover .suggestion-arrow {
    transform: translateX(4px);
    color: #2563eb;
}

.search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.search-no-results svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    opacity: 0.5;
}