:root {
    --primary-blue: #1d4ed8;
    --sidebar-gradient: linear-gradient(180deg, #1d4ed8 0%, #3b82f6 100%);
    --bg-light: #f4f8ff;
    --text-main: #334155;
    --border-color: #e2e8f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', sans-serif; }

body { background-color: var(--bg-light); color: var(--text-main); }

.app-container { display: flex; h: 100vh; overflow: hidden; }

/* Sidebar */
.sidebar {
    width: 260px;
    background: var(--sidebar-gradient);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px;
}

.logo { font-size: 24px; font-weight: bold; display: flex; align-items: center; gap: 10px; margin-bottom: 40px; }

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.menu-item.active { background: white; color: var(--primary-blue); font-weight: 600; }

.logout-btn { background: none; border: none; color: white; cursor: pointer; display: flex; align-items: center; gap: 10px; padding: 10px; }

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    position: relative; /* Required for z-index layering */
    
    /* --- Background Image Integration --- */
     background-image: url( "./IMAGE/SevaLink.png") ; /*Ensure the filename matches your saved image */
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain; /* 'contain' ensures the characters aren't cut off */
    background-attachment: local; /* Image scrolls with the content */
    
    /* Fallback background color to match the illustration's sky */
    background-color: #f0f7ff; 
}

/* We need to make the form container slightly translucent 
   so the illustration peeks through without making the form messy */
.form-container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* This adds a "glass" effect to the form sections so they 
   stand out against the background illustration */
.form-section {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.7); /* Translucent white */
    backdrop-filter: blur(5px); /* Blurs the background image slightly behind the form */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Ensure the header stays clean and solid */
.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.user-name { color: var(--primary-blue); font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 20px; }

.get-started {
    background: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.user-profile img { width: 32px; height: 32px; border-radius: 50%; }

/* Form Layout */
.form-container { padding: 40px; max-width: 1200px; margin: 0 auto; }
h1 { margin-bottom: 30px; font-size: 22px; }

.registration-form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.form-section { margin-bottom: 25px; }
.form-section h3 { font-size: 14px; margin-bottom: 12px; font-weight: 600; }
.form-section h3 small { color: #94a3b8; font-weight: 400; }

.input-group {
    position: relative;
    margin-bottom: 10px;
}

.input-group i { position: absolute; left: 12px; top: 12px; color: #94a3b8; }
.input-group input, .standard-input, .custom-select, textarea {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
}

.standard-input, .custom-select { padding-left: 12px; margin-bottom: 10px; }

/* Map and Skills */
.map-box {
    height: 120px;
    background: #dbeafe;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    font-size: 24px;
}

.skills-card {
    background: white;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.highlight { color: #f97316; font-size: 12px; font-weight: 700; margin-bottom: 10px; }

.skills-card label { display: block; font-size: 13px; margin-bottom: 8px; cursor: pointer; }

/* Toggles and Buttons */
.toggle-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 13px; }

.toggle-group { border: 1px solid var(--border-color); border-radius: 6px; overflow: hidden; display: flex; }

.btn-toggle {
    padding: 5px 15px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 12px;
}

.btn-toggle.active { background: var(--primary-blue); color: white; }

textarea { height: 80px; padding-left: 12px; resize: none; }

.upload-btn {
    width: 100%;
    background: #eff6ff;
    border: 1px dashed #bfdbfe;
    color: var(--primary-blue);
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    cursor: pointer;
}

.register-btn {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.2);
}

.footer-note { text-align: center; font-size: 10px; color: #94a3b8; margin-top: 15px; line-height: 1.4; }







        body { background-color: #f0f7ff; }
        .sidebar { background: linear-gradient(180deg, #1d4ed8 0%, #3b82f6 100%); }
        .glass-card { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); }
   