:root {
    --bg: #eff2ff;
    --page: #f8f9ff;
    --surface: #ffffff;
    --surface-2: #eef1ff;
    --text: #1f2a48;
    --muted: #5f6d8f;
    --border: #dfe3f3;
    --accent: #3b54ff;
    --accent-soft: rgba(59, 84, 255, 0.1);
    --shadow: 0 18px 60px rgba(35, 51, 96, 0.08);
    --nav-offset: 104px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    max-width: 1360px;
    margin: 0 auto;
    padding: var(--nav-offset) 20px 70px;
}

.top-panel {
    background:
        radial-gradient(circle at 92% 6%, rgba(59, 84, 255, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(246, 248, 255, 0.98) 0%, rgba(232, 237, 255, 0.94) 100%);
    border-radius: 0 0 34px 34px;
    margin-bottom: 0;
    padding: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.top-panel .container {
    display: block;
    width: 100%;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--muted);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    font-size: 0.7rem;
    opacity: 0.5;
}

.breadcrumb .active {
    color: var(--text);
    font-weight: 600;
}

/* Premium Summary Card */
.summary-card {
    background:
        radial-gradient(circle at 88% 6%, rgba(59, 84, 255, 0.1), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f6f8ff 54%, #eef2ff 100%);
    border-radius: 30px;
    border: 1px solid rgba(225, 231, 249, 0.95);
    box-shadow: 0 30px 80px rgba(59, 84, 255, 0.12);
    overflow: hidden;
    position: relative;
}

.summary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 62%),
        radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.9), transparent 18%);
    pointer-events: none;
}

.card-inner {
    position: relative;
    z-index: 1;
    padding: 42px;
    display: grid;
    gap: 28px;
}

/* Header Content */
.content-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff7ed;
    color: #c2410c;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
    border: 1px solid #ffedd5;
}

.summary-card h1 {
    font-size: clamp(40px, 5.1vw, 60px);
    margin: 0;
    line-height: 1.1;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: 0;
}

.gradient-text {
    background: linear-gradient(90deg, #3b54ff, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Meta Information */
.meta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-item.border-left {
    padding-left: 24px;
    border-left: 1px solid var(--border);
}

.avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b54ff, #6366f1);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(59, 84, 255, 0.2);
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--muted);
}

.meta-item span {
    color: var(--muted);
    font-size: 0.95rem;
}

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

/* Body Content */
.card-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-body p {
    margin: 0;
    line-height: 1.8;
    color: #475569;
    font-size: 1.08rem;
    max-width: 800px;
}

.features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
    background: white;
    padding: 10px 18px;
    border-radius: 13px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
    border: 1px solid var(--border);
}

.feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    width: 100%;
    max-width: none;
}

.content-panel {
    min-width: 0;
    width: 100%;
    max-width: none;
}

.sidebar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 24px;
    align-self: start;
    height: calc(100vh - 48px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 20;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(59, 84, 255, 0.1);
    border-radius: 10px;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.filter-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
}

.clear-btn {
    border: none;
    background: var(--accent-soft);
    color: var(--accent);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.clear-btn:hover {
    background: var(--accent);
    color: white;
}

.filter-block {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.filter-title {
    margin-bottom: 16px;
}

.filter-block h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-search {
    margin-bottom: 16px;
}

.filter-search input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.9rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.filter-search input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.filter-block label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-block label:hover {
    color: var(--accent);
}

.filter-block label input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    margin-right: 12px;
}

.filter-block label div {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-block label span {
    font-size: 0.85rem;
    color: var(--muted);
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
}

/* Content Panel Actions */
.top-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
}

.global-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 14px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.global-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(59, 84, 255, 0.08);
    transform: translateY(-2px);
}

.global-search i {
    color: var(--accent);
    font-size: 1.1rem;
}

.global-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
}

.radio-group {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 14px;
    gap: 4px;
}

.radio-group label {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-group input {
    display: none;
}

.radio-group label:has(input:checked) {
    background: white;
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.radio-group label:not(:has(input:checked)):hover {
    background: rgba(255, 255, 255, 0.5);
}

.result-heading h2 {
    margin: 0;
    font-size: 1.6rem;
}

.result-heading,
.top-actions,
.pcu-spotlight,
.featured-row,
.college-list {
    width: 100%;
    max-width: none;
}

.pcu-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 0 0 28px;
    padding: 30px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.22), transparent 26%),
        linear-gradient(135deg, #0f1f55 0%, #3147ff 58%, #5c72ff 100%);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(49, 71, 255, 0.25);
    overflow: hidden;
    position: relative;
}

.pcu-spotlight::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.pcu-copy,
.pcu-actions {
    position: relative;
    z-index: 1;
}

.pcu-copy .featured-tag {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
}

.pcu-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.pcu-copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
    line-height: 1.7;
}

.pcu-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pcu-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #0e0d0d;
    font-weight: 800;
    font-size: 0.86rem;
}

.pcu-actions {
    display: grid;
    gap: 12px;
    min-width: 180px;
}

.pcu-actions .btn-explore {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.featured-card,
.featured-promo {
    background: white;
    border: 1px solid #eef2ff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(59, 84, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-card {
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 12%, rgba(59, 84, 255, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(238, 242, 255, 0.75));
    pointer-events: none;
}

.featured-card>* {
    position: relative;
    z-index: 1;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 84, 255, 0.12);
    border-color: var(--accent-soft);
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #2539cc;
    border: 1px solid #dbe4ff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.featured-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.featured-card p {
    margin: 4px 0;
    color: var(--muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-card p i {
    color: var(--accent);
    width: 16px;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    background: #fefce8;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid #fef08a;
    width: fit-content;
}

.rating i {
    color: #eab308;
}

.featured-promo {
    background: linear-gradient(135deg, #3b54ff 0%, #6366f1 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.featured-promo::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.featured-promo span {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 12px;
}

.featured-promo p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.btn-view,
.btn-explore {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-view {
    background: linear-gradient(135deg, #3b54ff 0%, #2539cc 100%);
    color: white;
    box-shadow: 0 14px 28px rgba(59, 84, 255, 0.22);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 84, 255, 0.3);
}

.btn-explore {
    background: white;
    color: var(--accent);
    border: none;
}

.btn-explore:hover {
    transform: scale(1.05);
    background: #f8fafc;
}

/* College List Redesign */
.college-list {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr);
}

.college-card {
    background:
        radial-gradient(circle at top right, rgba(59, 84, 255, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96)),
        #fff;
    border-radius: 18px;
    border: 1px solid rgba(203, 213, 225, 0.86);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.college-card::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #3b54ff, #14b8a6);
    opacity: 0.95;
}

.college-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(37, 57, 204, 0.16);
    border-color: rgba(59, 84, 255, 0.42);
}

.pcu-list-card {
    border: 2px solid rgba(59, 84, 255, 0.5);
    background:
        linear-gradient(135deg, rgba(59, 84, 255, 0.12), rgba(255, 255, 255, 0.94)) border-box,
        #fff;
    box-shadow: 0 24px 60px rgba(59, 84, 255, 0.18);
    position: relative;
}

.pcu-list-card::before {
    content: 'Special Focus';
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: #2539cc;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.college-top {
    padding: 24px 24px 24px 29px;
    display: block;
    position: relative;
    z-index: 1;
}

.card-body {
    padding: 0;
    width: 100%;
    gap: 0;
}

.card-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.card-title h3 {
    margin: 9px 0 0;
    font-size: clamp(1.16rem, 1.55vw, 1.42rem);
    line-height: 1.25;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: 0;
}

.college-degree,
.college-type {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
}

.college-degree {
    padding: 8px 11px;
    background: linear-gradient(135deg, #eef2ff, #e0f2fe);
    color: #2539cc;
    border: 1px solid #dbe4ff;
}

.college-type {
    flex: 0 0 auto;
    padding: 8px 11px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #bbf7d0;
}

.top-data,
.meta-row-two {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}

.top-data span,
.meta-row-two span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 11px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.88);
    color: #475569;
    font-size: 0.84rem;
    font-weight: 700;
    min-height: 36px;
}

.top-data span:first-child {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.top-data i,
.meta-row-two i {
    color: #3b54ff;
}

.top-data span:first-child i {
    color: #f59e0b;
}

.card-fee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 18px 0;
}

.card-fee div {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card-fee div strong {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-fee div span {
    display: block;
    margin-top: 7px;
    font-size: 1rem;
    font-weight: 900;
    color: #0f172a;
    word-break: break-word;
}

.specialty-panel {
    margin-top: 16px;
    background:
        linear-gradient(135deg, rgba(238, 242, 255, 0.78), rgba(240, 253, 250, 0.72));
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(203, 213, 225, 0.82);
    border-left: 4px solid #3b54ff;
}

.specialty-panel strong {
    color: #0f172a;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.specialty-panel p {
    margin: 8px 0 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.shortlist-bar {
    margin-top: 16px;
    background: rgba(238, 242, 255, 0.76);
    border: 1px solid #dbe4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    color: #43516f;
    font-size: 0.9rem;
    font-weight: 700;
}

.shortlist-bar i {
    color: #3b54ff;
}

.actions-row {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.actions-row .btn-link,
.actions-row .btn-primary {
    flex: 1;
    min-width: 180px;
    padding: 13px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-link {
    background: var(--surface-2);
    color: var(--accent);
    border-color: var(--border);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.actions-row .btn-link {
    background: #f8fafc;
    color: #2539cc;
    border-color: #dbe4ff;
    text-align: center;
}

.actions-row .btn-link:hover {
    background: #eef2ff;
    border-color: #b8c7ff;
    transform: translateY(-2px);
}

button.btn-link {
    font-family: inherit;
}

.actions-row .btn-primary {
    background: linear-gradient(135deg, #3b54ff 0%, #2539cc 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(59, 84, 255, 0.22);
}

.actions-row .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 84, 255, 0.28);
}

.registration-open {
    overflow: hidden;
}

.registration-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

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

.registration-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(10px);
}

.registration-dialog {
    position: relative;
    width: min(520px, 100%);
    max-height: min(720px, 92vh);
    overflow-y: auto;
    background:
        radial-gradient(circle at 92% 6%, rgba(59, 84, 255, 0.16), transparent 28%),
        #ffffff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.78);
}

.registration-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 12px;
    background: #eef2ff;
    color: #2539cc;
    cursor: pointer;
}

.registration-head {
    padding-right: 42px;
    margin-bottom: 22px;
}

.registration-head h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 1.65rem;
    line-height: 1.2;
}

.registration-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.registration-form {
    display: grid;
    gap: 15px;
}

.registration-form label {
    display: grid;
    gap: 7px;
    color: #1f2a48;
    font-weight: 800;
    font-size: 0.9rem;
}

.registration-form input,
.registration-form select {
    width: 100%;
    border: 1px solid #dbe4ff;
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    color: #0f172a;
    background: #f8fafc;
    outline: none;
}

.registration-form input:focus,
.registration-form select:focus {
    border-color: #3b54ff;
    box-shadow: 0 0 0 4px rgba(59, 84, 255, 0.12);
    background: #ffffff;
}

.registration-submit {
    margin-top: 6px;
    border: none;
    border-radius: 15px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #3b54ff 0%, #2539cc 100%);
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(59, 84, 255, 0.26);
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    border: none;
    background: #3b54ff;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(59, 84, 255, 0.18);
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 40px 0;
}

.pagination-btn {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eef1ff;
    background: #fff;
    border-radius: 14px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 16px;
}

.pagination-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(59, 84, 255, 0.25);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 1160px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
        height: auto;
        max-height: none;
    }

    .featured-row {
        grid-template-columns: 1fr;
    }

    .pcu-spotlight {
        grid-template-columns: 1fr;
    }

    .pcu-actions {
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .page-shell {
        padding: 16px 16px 60px;
    }

    .top-panel {
        padding: 24px 18px 20px;
    }

    .card-title {
        flex-direction: column;
        gap: 12px;
    }

    .card-fee {
        grid-template-columns: 1fr;
    }

    .college-top {
        padding: 20px 18px 20px 23px;
    }

    .college-type {
        align-self: flex-start;
    }

    .top-data,
    .meta-row-two {
        gap: 8px;
    }

    .top-data span,
    .meta-row-two span {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        line-height: 1.35;
    }

    .specialty-panel,
    .shortlist-bar {
        border-radius: 12px;
    }

    .shortlist-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .pcu-list-card::before {
        position: static;
        display: inline-flex;
        margin: 16px 0 0 23px;
    }

    .top-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .radio-group {
        justify-content: flex-start;
    }

    .actions-row {
        flex-direction: column;
    }

    .actions-row .btn-link,
    .actions-row .btn-primary {
        width: 100%;
        min-width: 0;
    }

    .scroll-top {
        width: 44px;
        height: 44px;
    }
}

/* ============================================================
   NEAR ME SECTION — engneering.html
   ============================================================ */
.engg-nearme {
    background: linear-gradient(135deg, #0A1F44 0%, #0f2d6b 100%);
    padding: 70px 0 80px;
    margin-top: 60px;
}

.engg-nm-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.engg-nm-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.engg-nm-title {
    color: #fff;
}

.engg-nm-title .nm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 138, 0, .15);
    border: 1px solid #FF8A00;
    color: #FF8A00;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.engg-nm-title h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
}

.engg-nm-title h2 span {
    color: #FF8A00;
}

.engg-nm-title p {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
    margin-top: 8px;
}

.engg-nm-locbar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 10px 18px;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    flex-wrap: wrap;
}

.engg-nm-locbar i {
    color: #FF8A00;
    animation: enmPulse 2s infinite;
}

@keyframes enmPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.engg-nm-detect {
    padding: 9px 18px;
    border-radius: 9px;
    border: none;
    background: #FF8A00;
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
    white-space: nowrap;
}

.engg-nm-detect:hover {
    background: #e07a00;
    transform: translateY(-2px);
}

.engg-nm-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.engg-nm-sel {
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .84rem;
    outline: none;
    cursor: pointer;
    transition: .2s;
}

.engg-nm-sel:focus {
    border-color: #1E5BFF;
}

.engg-nm-sel option {
    background: #0A1F44;
    color: #fff;
}

.engg-nm-grid-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}

.engg-nm-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.engg-nm-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 16px;
}

/* Map box */
.engg-nm-map-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.engg-nm-map-box h4 {
    color: #fff;
    padding: 14px 18px;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin: 0;
    font-weight: 700;
}

.engg-nm-map-box h4 i {
    color: #1E5BFF;
}

#enggNmMap {
    height: 420px;
    width: 100%;
}

.engg-nm-map-legend {
    display: flex;
    gap: 14px;
    padding: 10px 18px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    flex-wrap: wrap;
}

.enm-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.enm-dot.g {
    background: #22C55E;
}

.enm-dot.p {
    background: #FF8A00;
}

.enm-dot.u {
    background: #1E5BFF;
}

/* College Cards */
.enm-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}

.enm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
    border-color: rgba(255, 138, 0, .3);
}

.enm-card-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    position: relative;
}

.enm-dist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    padding: 3px 9px;
    border-radius: 7px;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.enm-type {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 9px;
    border-radius: 7px;
    font-size: .7rem;
    font-weight: 800;
}

.enm-type.govt {
    background: rgba(34, 197, 94, .2);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, .3);
}

.enm-type.pvt {
    background: rgba(255, 138, 0, .2);
    color: #FF8A00;
    border: 1px solid rgba(255, 138, 0, .3);
}

.enm-type.pub {
    background: rgba(30, 91, 255, .2);
    color: #6ea8ff;
    border: 1px solid rgba(30, 91, 255, .3);
}

.enm-body {
    padding: 14px;
}

.enm-name {
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.enm-loc {
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.enm-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
}

.enm-meta-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.enm-meta-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .4);
    font-weight: 700;
}

.enm-meta-val {
    font-size: .83rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
}

.enm-stars {
    color: #fbbf24;
    font-size: .8rem;
}

.enm-footer {
    display: flex;
    gap: 8px;
}

.enm-btn-view {
    flex: 1;
    padding: 9px;
    border-radius: 9px;
    border: none;
    background: #1E5BFF;
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.enm-btn-view:hover {
    background: #1649e0;
}

.enm-btn-dir {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: .2s;
}

.enm-btn-dir:hover {
    border-color: #22C55E;
    color: #22C55E;
}

/* Empty & Skeleton */
.enm-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, .4);
}

.enm-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 14px;
    opacity: .4;
}

.enm-skeleton {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    overflow: hidden;
}

.enm-sk-img {
    height: 120px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .04) 25%, rgba(255, 255, 255, .09) 50%, rgba(255, 255, 255, .04) 75%);
    background-size: 200% 100%;
    animation: enmShimmer 1.5s infinite;
}

.enm-sk-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.enm-sk-line {
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .04) 25%, rgba(255, 255, 255, .09) 50%, rgba(255, 255, 255, .04) 75%);
    background-size: 200% 100%;
    animation: enmShimmer 1.5s infinite;
}

@keyframes enmShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* View All button */
.enm-view-all {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.enm-btn-all {
    padding: 13px 36px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 138, 0, .5);
    background: transparent;
    color: #FF8A00;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.enm-btn-all:hover {
    background: #FF8A00;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 138, 0, .35);
}

/* Responsive */
@media (max-width: 1024px) {
    .engg-nm-grid-layout {
        grid-template-columns: 1fr;
    }

    .engg-nm-map-box {
        position: static;
    }
}

@media (max-width: 640px) {
    .engg-nm-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .engg-nm-cards {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .content-panel {
        grid-column: auto;
    }

    .sidebar {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
        max-height: none;
    }

    .featured-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-shell {
        padding: 100px 15px 40px;
        /* Adjust for fixed navbar */
    }

    .card-inner {
        padding: 24px;
    }

    .summary-card h1 {
        font-size: 2.2rem;
    }

    .pcu-spotlight {
        padding: 24px;
    }

    .meta-row {
        gap: 16px;
    }

    .meta-item.border-left {
        padding-left: 0;
        border-left: none;
    }

    .featured-row {
        grid-template-columns: 1fr;
    }

    .featured-promo {
        order: -1;
    }

    .top-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .college-card {
        border-radius: 15px;
    }

    .college-top {
        padding: 18px 15px 18px 20px;
    }

    .card-title {
        padding-bottom: 14px;
    }

    .card-fee {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .actions-row {
        flex-direction: column;
    }

    .college-card h3 {
        font-size: 1.15rem;
    }

    .college-degree,
    .college-type {
        font-size: 0.7rem;
    }

    .specialty-panel p {
        font-size: 0.9rem;
    }

    .pcu-list-card::before {
        margin-left: 20px;
    }
}

@media (min-width: 1025px) {
    .layout {
        grid-template-columns: 280px minmax(0, 1fr);
        align-items: stretch;
        width: 100%;
        max-width: none;
        height: calc(100vh - 48px);
        overflow: hidden;
    }

    .content-panel {
        grid-column: 2;
        width: 100%;
        max-width: none;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 0;
    }

    .sidebar {
        position: relative;
        top: 0;
        align-self: stretch;
        width: 100%;
        height: 100%;
        max-height: 100%;
        overflow-y: auto;
    }
}
