    body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-soft);
            color: #1e293b;
            padding-top: 80px; /* Space for fixed navbar */
        }
        
        /* Hero Section */
        .page-header {
            padding: 160px 0 100px;
            background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent),
                        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent);
            text-align: center;
        }

        /* Content Sections */
        .section-padding {
            padding: 80px 0;
        }

        .highlight-text {
            color: var(--brand-primary);
            font-weight: 700;
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .icon-box {
            width: 60px; height: 60px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .icon-blue { background: rgba(37, 99, 235, 0.1); color: var(--brand-primary); }
        .icon-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
        .icon-purple { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
        .icon-orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }

        /* Scientific Context Box */
        .science-box {
            background: var(--brand-dark);
            color: white;
            border-radius: 24px;
            padding: 50px;
            position: relative;
        }
        
        .science-box h3 { font-weight: 700; margin-bottom: 20px; }
        .science-box p { opacity: 0.8; font-size: 1.1rem; }
        
        
        
        /* Header */
        .assessment-header {
            text-align: center;
            padding: 120px 0 40px;
            background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
        }

        /* Question Cards */
        .quiz-container {
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .question-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            border: 1px solid rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .question-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        /* Custom Radio Buttons */
        .option-group {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .btn-check:checked + .btn-outline-custom {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
        }

        .btn-outline-custom {
            border: 2px solid #e2e8f0;
            color: #64748b;
            border-radius: 10px;
            padding: 10px 25px;
            font-weight: 600;
            width: 100%;
            transition: 0.2s;
        }

        .btn-outline-custom:hover {
            background-color: var(--bg-soft);
            border-color: #cbd5e1;
        }

        /* Result Box */
        #resultContainer {
            display: none;
            animation: slideUp 0.5s ease;
        }

        .result-card {
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            color: white;
        }

        .bg-low { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
        .bg-mod { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
        .bg-high { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }

        @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* Progress Bar */
        .progress-sticky {
            position: sticky;
            top: 70px;
            z-index: 99;
            background: var(--bg-soft);
            padding-bottom: 10px;
        }
        
        
        /* Hero Header */
        .contact-hero {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            padding: 180px 0 120px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::after {
            content: '';
            position: absolute;
            bottom: -50px; left: 0; right: 0;
            height: 100px;
            background: var(--bg-light);
            transform: skewY(-2deg);
        }

        /* Floating Card Container */
        .main-content {
            margin-top: -80px;
            position: relative;
            z-index: 10;
        }

        .contact-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        /* Left Side: Info */
        .info-panel {
            background: #f8fafc;
            padding: 50px;
            height: 100%;
        }

        .info-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
        }

        .icon-circle {
            width: 50px; height: 50px;
            background: rgba(37, 99, 235, 0.1);
            color: var(--brand-primary);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        /* Right Side: Form */
        .form-panel {
            padding: 50px;
        }

        .form-floating > .form-control {
            border-radius: 10px;
            border: 1px solid #e2e8f0;
        }

        .form-floating > .form-control:focus {
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        .btn-send {
            background: var(--brand-primary);
            color: white;
            padding: 15px 30px;
            border-radius: 12px;
            font-weight: 600;
            width: 100%;
            border: none;
            transition: 0.3s;
        }

        .btn-send:hover {
            background: #1e40af;
            transform: translateY(-2px);
        }

        /* Map styling */
        #map {
            height: 250px;
            width: 100%;
            border-radius: 16px;
            margin-top: 20px;
        }
        
           :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --secondary: #64748b;
            --bg-soft: #f8fafc;
            --surface: #ffffff;
        }

    
        .text-center{
            text-align: left;
        }

        /* --- Navbar (Matches Assessment Page) --- */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 15px 0;
        }

        .nav-link {
            font-weight: 500;
            color: #475569;
            margin: 0 10px;
            transition: 0.3s;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }

        .btn-nav-cta {
            background-color: var(--primary);
            color: white !important;
            border-radius: 50px;
            padding: 8px 25px;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
        }

        .btn-nav-cta:hover {
            transform: translateY(-2px);
            background-color: var(--primary-dark);
        }

        /* --- Hero Section --- */
        .hero-section {
            background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
            padding: 80px 0 60px;
            text-align: center;
        }

        .hero-badge {
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 20px;
        }

        /* --- Info Cards & Grid --- */
        .info-card {
            background: white;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            overflow: hidden;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* --- Images within cards --- */
        .card-img-wrapper {
            height: 160px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 15px;
            background-color: #e2e8f0; /* Placeholder color */
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .info-card:hover .card-img-wrapper img {
            transform: scale(1.05);
        }

        /* --- Symptom List --- */
        .symptom-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 10px;
            background-color: var(--bg-soft);
        }

        .symptom-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 15px;
        }

        /* --- Footer (Matches Assessment Page) --- */
        .site-footer {
            background-color: white;
            padding: 60px 0 30px;
            border-top: 1px solid #e2e8f0;
            margin-top: 80px;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 20px;
            color: #0f172a;
        }

        .footer-links a {
            display: block;
            color: #64748b;
            text-decoration: none;
            margin-bottom: 10px;
            font-size: 0.95rem;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
           /* Main Dashboard Layout */
        .dashboard-container {
            display: flex;
            flex: 1;
            margin-top: 72px; /* Navbar height */
        }

        /* Left Sidebar */
        .search-sidebar {
            width: 380px;
            background: white;
            border-right: 1px solid #e2e8f0;
            padding: 25px;
            display: flex;
            flex-direction: column;
            z-index: 1040;
            box-shadow: 10px 0 30px rgba(0,0,0,0.02);
        }

        /* Map Container */
        #map {
            flex: 1;
            z-index: 1;
        }

        /* Modern Input Styling */
        .search-input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .search-input-group input {
            padding-left: 40px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            height: 50px;
        }

        .search-input-group i {
            position: absolute;
            left: 15px;
            top: 17px;
            color: var(--brand-primary);
        }

        /* Weather Floating Widget */
        .weather-widget {
            position: absolute;
            top: 90px;
            right: 20px;
            background: white;
            padding: 15px 25px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            z-index: 1000;
            border: 1px solid rgba(0,0,0,0.05);
            display: none;
            animation: slideIn 0.4s ease-out;
        }

        @keyframes slideIn {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Mobile View Fixes */
        @media (max-width: 991px) {
            body { overflow-y: auto; height: auto; }
            .dashboard-container { flex-direction: column; }
            .search-sidebar { width: 100%; height: auto; border-right: none; border-bottom: 1px solid #eee; }
            #map { height: 400px; width: 100%; }
            .weather-widget { top: auto; bottom: 20px; right: 10px; left: 10px; text-align: center; }
        }

        .btn-route {
            background: var(--brand-primary);
            color: white;
            border-radius: 8px;
            padding: 5px 15px;
            font-size: 0.85rem;
            border: none;
            margin-top: 8px;
        }

        /* Leaflet Routing Machine overrides */
        .leaflet-routing-container {
            background: white;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
            font-size: 13px;
        }
        
          /* Main Dashboard Layout */
        .dashboard-container {
            display: flex;
            flex: 1;
            margin-top: 72px; /* Navbar height */
        }
        .section-padding {
    padding: 50px 15px;
    
}
.page-header {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent),
                        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent);
    text-align: center;
}
.search-input-group {
    position: relative;
    margin-bottom: 20px;
}
.search-input-group input {
    padding-left: 10px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: 45px;
    width: 52%;
}

div#results {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card.mb-3.shadow-sm {
    width: 31%;
}


@media (max-width: 767px){

div#results {
    flex-direction: column;
}
.card.mb-3.shadow-sm {
    width: 100%;
}

}
    
    
        .navbar {
            backdrop-filter: blur(15px);
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);a
            z-index: 1000;
        }

        .nav-link {
            font-weight: 500;
            color: #334155;
            margin-right: 10px;
        }

        .nav-link.active {
            color: var(--brand-primary);
            font-weight: 700;
        }

        .dropdown-item {
            padding: 10px 20px;
            font-size: 0.95rem;
        }

        .btn-nav-cta {
            background-color: var(--brand-primary);
            color: white !important;
            padding: 8px 20px;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background-color: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }

        .prediction-wrapper {
            padding: 120px 0 60px;
            flex: 1;
        }

        .glass-panel {
            background: #ffffff;
            border-radius: 24px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
            overflow: hidden;
        }

        .input-sidebar {
            background: #fdfdfd;
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            padding: 40px;
        }

        .results-area {
            padding: 40px;
            background: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 500px;
        }

        .form-control-modern {
            border-radius: 12px;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            background: #fff;
            transition: 0.3s;
        }

        .form-control-modern:focus {
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
            border-color: var(--brand-primary);
        }

        #loadingOverlay {
            display: none;
            text-align: center;
        }

        #predictionBox {
            display: none;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .data-card {
            background: var(--bg-soft);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            border: 1px solid transparent;
            transition: 0.3s;
            height: 100%;
        }

        .risk-badge {
            font-size: 1.5rem;
            font-weight: 800;
            padding: 15px;
            border-radius: 12px;
            display: inline-block;
            width: 100%;
            text-align: center;
        }

        .btn-predict {
            background: var(--brand-primary);
            color: white;
            font-weight: 700;
            padding: 15px;
            border-radius: 12px;
            border: none;
            transition: 0.3s;
        }

        .btn-predict:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            .input-sidebar {
                border-right: none;
                border-bottom: 1px solid #eee;
            }

            .btn-nav-cta {
                margin-top: 10px;
                display: inline-block;
            }
        }
        
        
        
         .team-hero {
            padding: 140px 0 60px;
            background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
            text-align: center;
        }

        /* Card Styling */
        .profile-card {
            background: white;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: 0.3s;
            height: 100%;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }

        .profile-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
            border-color: var(--brand-primary);
        }

        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid #f1f5f9;
        }

        .mentor-card {
            border-top: 5px solid var(--gold-accent);
        }

        .dev-card {
            border-top: 5px solid var(--brand-primary);
        }

        .role-badge {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            color: #64748b;
            margin-bottom: 5px;
            display: block;
        }

        .academic-links a {
            color: #64748b;
            margin: 0 5px;
            font-size: 1.1rem;
            transition: 0.3s;
        }

        .academic-links a:hover { color: var(--brand-primary); }

        /* Contact Box */
        .contact-box {
            background: #0f172a;
            color: white;
            border-radius: 24px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        .contact-icon {
            width: 50px; height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-right: 15px;
        }
