/* ═══════════════════════════════════════════════
   GLOBAL / ROOT
   ═══════════════════════════════════════════════ */

:root {
    --primary-deep:  #1e3a8a;
    --primary-light: #3b82f6;
    --accent-cyan:   #67e8f9;
    --primary-blue:  #1e4ed8;
    --secondary-blue:#3b82f6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
    height: 80px;
    z-index: 1000;
}

.nav-link {
    color: #475569 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-light) !important;
}

.nav-link.active {
    color: #3b82f6 !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #3b82f6;
    bottom: -5px;
    left: 0;
}

.btn-signup {
    background: linear-gradient(to right, var(--primary-deep), var(--primary-light));
    color: white !important;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 500;
    border: none;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px;
}

.footer h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #3b82f6;
}

/* ═══════════════════════════════════════════════
   SHARED / GLOBAL UTILITIES
   ═══════════════════════════════════════════════ */

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #64748b;
    margin-bottom: 3rem;
}

.work-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* ═══════════════════════════════════════════════
   STUDENT PAGE  (.student-page)
   ═══════════════════════════════════════════════ */

.student-page .hero {
    background: linear-gradient(135deg, #00A8FF 0%, #0077FF 100%);
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
}

.student-page .section-title {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.student-page .feature-card {
    background: #f0f9ff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e0f2fe;
    height: 100%;
    transition: all 0.3s;
}

.student-page .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.1);
}

.student-page .feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    background: #00A8FF;
    margin-bottom: 20px;
}

.student-page .journey-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.student-page .journey-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.student-page .step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #00A8FF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.student-page .cta-section {
    background: #00A8FF;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.student-page .btn-white {
    background: white;
    color: #00A8FF !important;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 700;
}

.student-page .btn-outline-white {
    border: 2px solid white;
    color: white !important;
    border-radius: 10px;
    padding: 10px 30px;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════
   UNIVERSITY PAGE  (.university-page)
   ═══════════════════════════════════════════════ */

.university-page .hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e4ed8 100%);
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
}

.university-page .section-title {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.university-page .feature-card {
    background: #eff6ff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #dbeafe;
    height: 100%;
    transition: all 0.3s;
}

.university-page .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.1);
}

.university-page .feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    background: #1e3a8a;
    margin-bottom: 20px;
}

.university-page .key-feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s;
}

.university-page .key-feature-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.university-page .key-feature-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: start;
    gap: 10px;
}

.university-page .key-feature-card ul li i {
    margin-top: 4px;
    color: #10b981;
}

.university-page .step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e3a8a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.university-page .journey-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.university-page .journey-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.university-page .cta-section {
    background: #1e3a8a;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.university-page .btn-white {
    background: white;
    color: #1e3a8a !important;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 700;
}

.university-page .btn-outline-white {
    border: 2px solid white;
    color: white !important;
    border-radius: 10px;
    padding: 10px 30px;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════
   CONSULTANT PAGE  (.consultant-page)
   ═══════════════════════════════════════════════ */

.consultant-page .hero {
    background: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
}

.consultant-page .section-title {
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 1rem;
}

.consultant-page .section-subtitle {
    color: #64748b;
    margin-bottom: 3rem;
}

.consultant-page .feature-card {
    background: #f5f3ff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #ede9fe;
    height: 100%;
    transition: all 0.3s;
}

.consultant-page .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.1);
}

.consultant-page .feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    background: #7B2CBF;
    margin-bottom: 20px;
}

.consultant-page .key-feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s;
}

.consultant-page .key-feature-card:hover {
    border-color: #7B2CBF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.consultant-page .key-feature-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: start;
    gap: 10px;
}

.consultant-page .key-feature-card ul li i {
    margin-top: 4px;
    color: #7B2CBF;
}

.consultant-page .stats-section {
    background: #f0f9ff;
    border-radius: 15px;
    padding: 60px 0;
    margin: 40px 0;
}

.consultant-page .stat-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7B2CBF;
    margin-bottom: 5px;
}

.consultant-page .stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.consultant-page .cta-section {
    background: #7B2CBF;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.consultant-page .btn-white {
    background: white;
    color: #7B2CBF !important;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════
   COURSES PAGE  (.courses-page)
   ═══════════════════════════════════════════════ */

.courses-page .hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.courses-page .stats-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.courses-page .search-hero {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 40;
}

.courses-page .filter-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 160px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}

.courses-page .filter-section::-webkit-scrollbar {
    width: 4px;
}

.courses-page .filter-section::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.courses-page .course-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.courses-page .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.courses-page .tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
}

.courses-page .apply-btn {
    border: 2px solid #2563eb;
    color: #2563eb;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
    width: 100%;
    transition: all 0.2s;
    background: transparent;
}

.courses-page .apply-btn:hover {
    background: #eff6ff;
}

.courses-page .view-btn {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
    width: 100%;
    border: none;
    transition: all 0.2s;
}

.courses-page .ranking-box {
    background: linear-gradient(135deg, #fefce8 0%, #fff7ed 100%);
    border: 1px solid #fef08a;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

/* ═══════════════════════════════════════════════
   EVENTS PAGE  (.events-page)
   ═══════════════════════════════════════════════ */

.events-page .hero-section {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #db2777 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.events-page .hero-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.events-page .search-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    padding: 6px 6px 6px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.events-page .search-input {
    border: none;
    padding: 12px 12px;
    flex-grow: 1;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: #1e293b;
    min-width: 0;
}

.events-page .filter-btn {
    background: linear-gradient(to right, #f97316, #ef4444);
    color: white;
    border: none;
    border-radius: 44px;
    padding: 12px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
}

.events-page .filter-btn:hover {
    opacity: 0.92;
}

.events-page .sticky-filters {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 100;
    padding: 15px 0;
}

.events-page .filter-pill {
    padding: 10px 24px;
    border-radius: 30px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.events-page .filter-pill:hover {
    background: #e2e8f0;
}

.events-page .filter-pill.active {
    background: #ea580c;
    color: white;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.events-page .event-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 24px;
}

.events-page .event-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.events-page .featured-event {
    border: 2px solid #fdba74;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
    position: relative;
}

.events-page .featured-event .event-badge {
    background: linear-gradient(to right, #f97316, #ef4444);
    color: white;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.events-page .event-content {
    padding: 24px;
}

.events-page .event-type-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.events-page .type-virtual  { background: #f3e8ff; color: #9333ea; }
.events-page .type-inperson { background: #dcfce7; color: #16a34a; }
.events-page .type-webinar  { background: #dbeafe; color: #2563eb; }
.events-page .type-workshop { background: #ffedd5; color: #ea580c; }

.events-page .event-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.events-page .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.events-page .meta-item i {
    color: #f97316;
    width: 16px;
    text-align: center;
}

.events-page .participant-list {
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: 12px;
    padding: 12px;
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.events-page .participant-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #475569;
}

.events-page .participant-item i {
    color: #f97316;
}

.events-page .widget-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    margin-bottom: 24px;
}

.events-page .summary-widget {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #db2777 100%);
    color: white;
    border: none;
}

.events-page .stat-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.events-page .stat-item:last-child {
    border-bottom: none;
}

.events-page .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.events-page .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.events-page .workshop-preview {
    padding: 16px;
    background: linear-gradient(to bottom right, #fff7ed, #fff1f2);
    border-radius: 16px;
    border: 1px solid #ffedd5;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.events-page .workshop-preview:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .events-page .event-meta         { grid-template-columns: 1fr; }
    .events-page .participant-list   { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   HOME PAGE  (.home-page)
   ═══════════════════════════════════════════════ */

.home-page .hero-section {
    background: radial-gradient(ellipse at 30% 40%, #0d2347 0%, #0a1628 60%, #050e1a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -100px;
}


.home-page .stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-page .star {
    position: absolute;
    border-radius: 50%;
    background: white;
    animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
    from { opacity: 0.2; }
    to   { opacity: 0.8; }
}

.home-page .hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.home-page .hero-desc {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

/* Globe */
.home-page .globe-wrapper {
    position: relative;
    margin: 0 auto;
    width: 650px;
    height: 650px;
    pointer-events: none;
    z-index: 10;
}

.home-page #globeCanvas {
    width: 100%;
    height: 100%;
    cursor: grab;
    pointer-events: auto;
    border-radius: 50%;
    display: block;
}

.home-page #globeCanvas:active {
    cursor: grabbing;
}

/* Popup Card */
.home-page .popup-card {
    position: absolute;
    width: 230px;
    background: rgba(8, 18, 42, 0.97);
    border-radius: 14px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
    z-index: 100;
    display: none;
    text-align: left;
    pointer-events: auto;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.home-page .popup-card.show { display: block; }

.home-page .popup-header {
    padding: 12px 14px 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.home-page .popup-code  { font-size: 20px; font-weight: 900; color: white; letter-spacing: 2px; }
.home-page .popup-name  { font-size: 13px; font-weight: 700; color: white; line-height: 1.3; margin-top: 3px; }
.home-page .popup-city  { font-size: 11px; color: #94a3b8; margin-top: 3px; }

.home-page .popup-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    padding: 2px 4px;
    transition: color 0.2s;
}

.home-page .popup-close:hover { color: white; }

.home-page .popup-body { padding: 0 10px 10px; }

.home-page .stat-row {
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-page .stat-label { font-size: 11px; color: #cbd5e1; }
.home-page .stat-value { font-size: 14px; font-weight: 800; }

.home-page .stat-blue   { background: rgba(56,189,248,0.12); }
.home-page .stat-blue   .stat-value { color: white; }
.home-page .stat-teal   { background: rgba(20,184,166,0.12); }
.home-page .stat-teal   .stat-value { color: #2dd4bf; }
.home-page .stat-purple { background: rgba(139,92,246,0.12); }
.home-page .stat-purple .stat-value { color: #c084fc; }

.home-page .rank-box {
    background: rgba(50,50,50,0.5);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    margin-bottom: 10px;
}

.home-page .rank-label { font-size: 10px; color: #94a3b8; margin-bottom: 2px; }
.home-page .rank-value { font-size: 22px; font-weight: 900; color: #f59e0b; }

.home-page .explore-btn {
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 8px;
    padding: 9px 12px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: white;
    border: none;
    width: 100%;
    transition: opacity 0.2s;
}

.home-page .explore-btn:hover { opacity: 0.85; }

.home-page .loading-spinner {
    display: none;
    text-align: center;
    padding: 20px;
    color: #94a3b8;
    font-size: 12px;
}

/* Search Bar */
.home-page .search-area {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
}

.home-page .search-area input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    outline: none;
    font-size: 16px;
    border-radius: 12px;
    background: transparent;
    color: #1e293b;
}

.home-page .search-area input::placeholder { color: #64748b; }

.home-page .btn-search {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 12px 35px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    transition: all 0.3s;
}

.home-page .btn-search:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    transform: translateY(-1px);
}

/* Role Buttons */
.home-page .role-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.home-page .btn-role {
    border-radius: 16px;
    padding: 18px 35px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white !important;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.home-page .btn-role:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.7);
}

.home-page .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    pointer-events: none;
}

.home-page .hero-content * { pointer-events: auto; }

.home-page 
.step-num { 
    width: 32px; 
    height: 32px; 
    background: #3b82f6; 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 14px; 
    font-weight: 700; 
    flex-shrink: 0; 
}


/* ═══════════════════════════════════════════════
   SEARCH PAGE (.search-page)
   ═══════════════════════════════════════════════ */

    .search-wrapper {
        background: white;
        border-radius: 60px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        padding: 0.3rem 0.3rem 0.3rem 1.5rem;
        border: 1px solid #e2e8f0;
        transition: all 0.2s;
    }
    .search-wrapper:focus-within {
        border-color: #3b82f6;
        box-shadow: 0 4px 12px rgba(59,130,246,0.1);
    }
    .search-wrapper input {
        flex: 1;
        border: none;
        padding: 0.9rem 0;
        font-size: 1rem;
        background: transparent;
        outline: none;
    }
    .search-wrapper button {
        background: #2563eb;
        border: none;
        color: white;
        font-weight: 600;
        padding: 0.7rem 1.6rem;
        border-radius: 40px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: background 0.2s;
    }
    .search-wrapper button:hover {
        background: #1d4ed8;
    }
    .no-results {
        background: #fff;
        border-radius: 12px;
        padding: 3rem 2rem;
        text-align: center;
        color: #666;
        border: 1px solid #e2e8f0;
    }
    .course-card {
        transition: all 0.2s;
    }
    .course-card.hide {
        display: none;
    }

/** Feature University **/

/* Add this to your existing CSS */
.uni-card {
    border: 1.5px solid #f1f5f9 !important;
    transition: all 0.25s ease;
    cursor: pointer;
}

.uni-card:hover {
    border: 1.5px solid #bfdbfe !important;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12) !important;
    transform: translateY(-4px);
}


