/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* =========================
   LOGIN WRAPPER (FULLSCREEN)
========================= */

.dark-login-wrapper {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    /* full viewport on mobile */
    background: radial-gradient(circle at top, #0f172a 0%, #020617 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    /* prevent scroll bounce */
}


/* =========================
   CARD
========================= */

.dark-login-card {
    width: 100%;
    max-width: 380px;
    background: linear-gradient(180deg, #020617, #020617);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dark-login-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85);
}


/* =========================
   HEADER
========================= */

.dark-login-header {
    text-align: center;
    margin-bottom: 28px;
}

.dark-login-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #f9fafb;
}

.dark-login-header p {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 6px;
}


/* =========================
   FORM GROUP
========================= */

.dark-input-group {
    margin-bottom: 20px;
}

.dark-input-group label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 6px;
}


/* =========================
   INPUTS
========================= */

.dark-input-group input {
    width: 100%;
    background: #030712;
    /* distinguish inputs from card */
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: #f9fafb;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.dark-input-group input::placeholder {
    color: #64748b;
}

.dark-input-group input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}


/* =========================
   MOBILE INPUT BOX
========================= */

.dark-input-box {
    display: flex;
    align-items: center;
    background: #030712;
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.dark-input-box:focus-within {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.dark-input-box span {
    padding: 12px;
    background: #020617;
    color: #94a3b8;
    font-size: 14px;
    border-right: 1px solid #334155;
}

.dark-input-box input {
    border: none;
    background: transparent;
    flex: 1;
}


/* =========================
   LINKS
========================= */

.dark-links {
    text-align: right;
    margin-bottom: 22px;
}

.dark-links a {
    font-size: 13px;
    color: #22c55e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dark-links a:hover {
    color: #16a34a;
    text-decoration: underline;
}


/* =========================
   BUTTON
========================= */

.dark-login-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dark-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(34, 197, 94, 0.6);
}

.dark-login-btn:active {
    transform: scale(0.98);
}


/* =========================
   MOBILE & RESPONSIVE
========================= */

@media (max-width: 400px) {
    .dark-login-card {
        padding: 22px;
    }
    .dark-login-header h2 {
        font-size: 20px;
    }
    .dark-login-header p {
        font-size: 13px;
    }
    .dark-login-btn {
        font-size: 14px;
        padding: 12px;
    }
}


/* OTP Container */

.otp-container {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
}


/* OTP Inputs */

.otp-input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #555;
    background-color: #1e1e1e;
    color: #fff;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}

.otp-input:focus {
    border-color: #00bfff;
    box-shadow: 0 0 5px #00bfff;
}


/* Note below OTP */

.otp-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #aaa;
}


/* Responsive */

@media (max-width: 480px) {
    .otp-input {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
}


/* ===== DARK THEME BASE ===== */

body {
    background: #0f172a;
    color: #e5e7eb;
}


/* ===== HEADER ===== */

.dark-header {
    background: linear-gradient(135deg, #020617, #0f172a);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.dark-header h2 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 700;
}

.dark-header p {
    font-size: 13px;
    opacity: 0.7;
}


/* ===== STATS BOX ===== */

.stat-box {
    position: relative;
    background: #020617;
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 10px 25px rgba(0, 0, 0, 0.5);
}

.stat-box span {
    display: block;
    font-size: 22px;
    margin-top: 4px;
}

.stat-new {
    color: #22c55e;
}

.stat-pending {
    color: #3b82f6;
}

.stat-missed {
    color: #ef4444;
}


/* ===== ACTION GRID ===== */

.dark-card {
    background: #020617;
    border-radius: 18px;
    padding: 18px 10px;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 12px 30px rgba(0, 0, 0, 0.6);
    transition: transform .2s ease;
}

.dark-card:hover {
    transform: translateY(-4px);
}

.dark-card img {
    width: 46px;
    margin-bottom: 10px;
}

.dark-card span {
    display: block;
    font-size: 13px;
    font-weight: 600;
}


/* ===== SECTION TITLE ===== */

.dark-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}


/* ===== MOBILE ===== */

@media(max-width:576px) {
    .dark-header h2 {
        font-size: 18px;
    }
    .stat-box span {
        font-size: 18px;
    }
}


/* DASHBOARD STYLES */


/* ================= ROOT ================= */

.main-section {
    background: linear-gradient(180deg, #020617 0%, #0b1220 100%);
    min-height: 100vh;
    color: #e5e7eb;
    font-family: system-ui, -apple-system;
}


/* ================= HEADER ================= */

.uc-user-header {
    background: linear-gradient(135deg, #020617, #0b1220);
    padding: 22px 20px 26px;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .7);
    position: relative;
}

.uc-user-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
}

.uc-user-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.uc-user-header p {
    font-size: 13px;
    opacity: .75;
}


/* ================= SEARCH ================= */

.uc-search {
    margin-top: 16px;
    background: #111827;
    /* lighter than base */
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .6);
}

.uc-search input {
    background: transparent;
    border: 0;
    color: #fff;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.uc-search input::placeholder {
    color: rgba(255, 255, 255, .5);
}


/* ================= CATEGORY GRID ================= */

.uc-category {
    background: linear-gradient(180deg, #111827, #020617);
    border-radius: 18px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 14px 35px rgba(0, 0, 0, .75);
    transition: transform .2s ease, box-shadow .2s ease;
}

.uc-category:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), 0 18px 45px rgba(0, 0, 0, .9);
}

.uc-category img {
    width: 44px;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .6));
}

.uc-category span {
    font-size: 13px;
    font-weight: 600;
    display: block;
    letter-spacing: .2px;
}


/* ================= SECTION TITLE ================= */

.uc-section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-left: 2px;
}


/* ================= ONGOING SERVICE ================= */

.uc-service-card {
    background: linear-gradient(180deg, #111827, #020617);
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .75);
}

.uc-service-card strong {
    font-size: 15px;
}

.uc-service-card p {
    opacity: .7;
}


/* ================= BADGE ================= */

.uc-badge {
    background: #22c55e;
    color: #022c22;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .18);
}


/* ================= BUTTON ================= */

.uc-service-card .btn {
    border-radius: 14px;
    font-weight: 600;
    padding: 10px;
}

.uc-static-banner {
    background: linear-gradient(135deg, #1e293b, #020617);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .7);
}

.uc-static-banner h4 {
    font-size: 16px;
    font-weight: 700;
    color: #f9fafb;
}

.uc-static-banner p {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

.uc-static-banner .btn {
    border-radius: 14px;
    font-weight: 600;
}

.uc-slider-title {
    font-size: 16px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 10px;
}


/* Horizontal scroll */

.uc-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.uc-slider::-webkit-scrollbar {
    display: none;
}


/* Slide card */

.uc-slide-card {
    min-width: 120px;
    background: linear-gradient(180deg, #111827, #020617);
    border-radius: 18px;
    /* padding: 16px; */
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .7);
}

.uc-slide-card img {
    width: 100%;
    border-radius: 18px 18px 0 0;
    margin-bottom: 8px;
}

.uc-slide-card span {
    font-size: 13px;
    font-weight: 600;
    color: #f3f4f6;
}


/* DASHBOARD STYLES */


/* new project page */

.main-section {
    padding: 16px;
    background: #020617;
    min-height: 100vh;
}

.project-card {
    background: #0b1220;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
}

.project-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.status-chip {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
}

.status-chip.success {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
}

.project-id {
    font-size: 12px;
    color: #64748b;
}

.project-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.project-sub {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 14px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 14px;
}

.project-meta strong {
    display: block;
    color: #fff;
    font-weight: 600;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-date {
    font-size: 12px;
    color: #64748b;
}

.view-btn {
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #334155;
    color: #fff;
    text-decoration: none;
}

.view-btn:hover {
    background: #1e293b;
}

.header-card {
    background: rgba(255, 255, 255, .04);
    border-radius: 14px;
    padding: 14px;
    backdrop-filter: blur(8px);
}

.header-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.header-card p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}


/* new project page */


/* project details page */

.main-section {
    padding: 16px;
    background: #020617;
    min-height: 100vh;
    color: #fff;
}


/* Header */

.details-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.details-header h5 {
    margin: 0;
    font-weight: 600;
}

.back-btn {
    color: #94a3b8;
    font-size: 20px;
    text-decoration: none;
}


/* Cards */

.details-card {
    background: #0b1220;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}


/* Status card */

.status-card h6 {
    margin: 10px 0 4px;
    font-weight: 600;
}

.status-card p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.status-chip {
    display: inline-block;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 999px;
}

.status-chip.success {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
}


/* Info rows */

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}

.info-row span {
    color: #94a3b8;
}

.info-row strong {
    font-weight: 600;
}


/* Timeline */

.section-title {
    font-size: 14px;
    margin-bottom: 12px;
    color: #e5e7eb;
}

.timeline .step {
    font-size: 13px;
    padding: 10px 12px;
    border-left: 3px solid #334155;
    color: #94a3b8;
    margin-bottom: 8px;
}

.timeline .step.done {
    border-color: #22c55e;
    color: #22c55e;
}

.timeline .step.active {
    border-color: #38bdf8;
    color: #38bdf8;
}


/* Help */

.help-card p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.support-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #334155;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.status-chip.warning {
    background: rgba(234, 179, 8, .15);
    color: #eab308;
}

.progress-bar.hold {
    background: linear-gradient(90deg, #eab308, #ca8a04);
}

.project-card {
    margin-bottom: 16px;
}


/* project details page */

.tech-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.tech-info span {
    font-size: 12px;
    color: #94a3b8;
}

.call-btn {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
    font-size: 13px;
    text-decoration: none;
}

.progress-wrap.large {
    height: 8px;
}

.progress-text {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
}

.support-card {
    background: linear-gradient( 135deg, rgba(56, 189, 248, .08), rgba(34, 197, 94, .08));
    border: 1px solid rgba(255, 255, 255, .05);
}

.support-text {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.support-actions {
    display: flex;
    gap: 10px;
}

.support-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.support-btn.call {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
}

.support-btn.chat {
    background: rgba(56, 189, 248, .15);
    color: #38bdf8;
}


/* user profile */

.profile-page {
    padding: 20px;
    max-width: 420px;
    margin: 0 auto;
    color: #fff;
}


/* PROFILE HEADER */

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar-ring {
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.profile-info h6 {
    font-weight: 700;
    font-size: 17px;
}

.profile-info p {
    font-size: 13px;
    color: #94a3b8;
}

.edit-btn {
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.edit-btn:hover {
    background: rgba(56, 189, 248, 0.3);
    transform: scale(1.05);
}


/* QUICK STATS */

.profile-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.stat-item {
    flex: 1;
    background: #0b1220;
    margin: 0 6px;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.stat-item:first-child {
    margin-left: 0;
}

.stat-item:last-child {
    margin-right: 0;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.stat-icon {
    font-size: 20px;
    margin-bottom: 6px;
}

.stat-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 12px;
    color: #94a3b8;
}


/* PROFILE MENU */

.profile-card {
    background: #0b1220;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.profile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #1e293b;
    transition: background 0.2s ease, transform 0.2s ease;
}

.profile-item:last-child {
    border-bottom: none;
}

.profile-item:hover {
    background: #111827;
    transform: translateX(4px);
}

.item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.arrow {
    color: #64748b;
    font-weight: 700;
}


/* LOGOUT BUTTON */

.logout-card {
    margin-bottom: 30px;
}

.logout-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.35);
    transform: scale(1.02);
}


/* RESPONSIVE */

@media(max-width: 400px) {
    .profile-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .profile-info h6 {
        font-size: 16px;
    }
    .profile-stats {
        flex-direction: column;
        gap: 12px;
    }
    .stat-item {
        margin: 0;
    }
}

.profile-header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(135deg, #0b1220, #111827);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 24px;
}

.profile-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar-ring {
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.profile-name h6 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-name p {
    font-size: 13px;
    color: #94a3b8;
}

.edit-btn {
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.edit-btn:hover {
    background: rgba(56, 189, 248, 0.3);
    transform: scale(1.05);
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-item {
    background: linear-gradient(135deg, #0f172a, #111827);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #020617;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.stat-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 12px;
    color: #94a3b8;
}


/* Responsive */

@media(max-width: 400px) {
    .profile-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* user profile */


/* edit profile styles */

.edit-profile-page {
    padding: 16px;
}


/* Header */

.edit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.edit-header h6 {
    margin: 0;
    font-weight: 600;
}

.back-btn,
.save-btn {
    font-size: 14px;
    color: #38bdf8;
    text-decoration: none;
}


/* Avatar */

.edit-avatar {
    text-align: center;
    margin-bottom: 24px;
}

.avatar-ring {
    width: 86px;
    height: 86px;
    margin: 0 auto 10px;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 26px;
}

.change-photo {
    background: transparent;
    border: none;
    font-size: 13px;
    color: #38bdf8;
    cursor: pointer;
}


/* Form */

.edit-form {
    background: #0b1220;
    border-radius: 18px;
    padding: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    background: #020617;
    color: #fff;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #38bdf8;
}

.form-group input:disabled {
    opacity: .6;
}


/* Footer */

.edit-footer {
    margin-top: 24px;
}

.update-btn {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    border: none;
    font-weight: 600;
    color: #020617;
    cursor: pointer;
}

.update-btn:active {
    transform: scale(.98);
}


/* edit profile styles */


/* change password styles */

.change-password-page {
    padding: 16px;
}


/* Header */

.change-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.change-header h6 {
    margin: 0;
    font-weight: 600;
}

.back-btn {
    font-size: 18px;
    color: #38bdf8;
    text-decoration: none;
}


/* Info */

.password-info {
    background: rgba(56, 189, 248, .08);
    border-left: 3px solid #38bdf8;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.password-info p {
    margin: 0;
    font-size: 13px;
    color: #cbd5f5;
}


/* Form */

.password-form {
    background: #0b1220;
    border-radius: 18px;
    padding: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.input-wrap {
    position: relative;
}

.input-wrap input {
    width: 100%;
    padding: 12px 42px 12px 14px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    background: #020617;
    color: #fff;
    font-size: 14px;
}

.input-wrap input:focus {
    outline: none;
    border-color: #38bdf8;
}

.toggle-pass {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
}


/* Footer */

.password-footer {
    margin-top: 24px;
}

.update-btn {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    border: none;
    font-weight: 600;
    color: #020617;
    cursor: pointer;
}

.update-btn:active {
    transform: scale(.98);
}


/* change password styles */


/* enquiries_view */


/* Wrapper */

.dark-leads-wrapper {
    background: #0f1115;
    border-radius: 12px;
    padding: 16px;
}


/* Header */

.dark-header h5 {
    color: #ffffff;
    font-weight: 600;
}

.dark-header p {
    color: #9aa0a6;
}


/* Lead Card */

.lead-card {
    background: #1a1d24;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lead-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}


/* Titles */

.lead-card h6 {
    color: #ffffff;
    font-weight: 600;
}

.lead-card .text-muted {
    color: #9aa0a6 !important;
}


/* Divider */

.dark-divider {
    border-color: #2a2f3a;
    margin: 10px 0;
}


/* Status Badges */

.badge-status {
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-completed {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-cancelled {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}


/* Buttons */

.btn-outline-light {
    border-color: #3a3f4b;
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #000000;
}


/* Price */

.text-success {
    color: #28d17c !important;
}


/* Mobile tweaks */

@media (max-width: 576px) {
    .lead-card {
        padding: 12px;
    }
    .lead-card h6 {
        font-size: 14px;
    }
    .badge-status {
        font-size: 10px;
    }
}

.lead-details-card {
    background: #1a1d24;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.lead-details-card h6 {
    color: #ffffff;
    font-weight: 600;
}

.lead-details-card .text-muted {
    color: #9aa0a6 !important;
}

.lead-details-card .text-white {
    font-size: 14px;
}

.badge-status {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}


/* Status colors */

.badge-new {
    background: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
}

.badge-connected {
    background: rgba(32, 201, 151, 0.15);
    color: #20c997;
}

.badge-qualified {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-completed {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-cancelled {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

.dark-divider {
    border-color: #2a2f3a;
    margin: 12px 0;
}

.dark-leads-wrapper {
    background: #0f1115;
    border-radius: 12px;
    padding: 16px;
}


/* Header */

.dark-header h5 {
    color: #ffffff;
    font-weight: 600;
}

.dark-header p {
    color: #6fd3ff;
}


/* Lead Card */

.lead-card {
    background: #1a1d24;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lead-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}


/* Titles */

.lead-card h6 {
    color: #ffffff;
    font-weight: 600;
}

.lead-card .text-muted {
    color: #9aa0a6 !important;
}

.lead-card .text-white {
    font-size: 14px;
}


/* Status Badges */

.badge-status {
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.badge-new {
    background: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
}

.badge-connected {
    background: rgba(32, 201, 151, 0.15);
    color: #20c997;
}

.badge-qualified {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-completed {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-cancelled {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}


/* Buttons */

.btn-outline-light {
    border-color: #3a3f4b;
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #000000;
}


/* Mobile tweaks */

@media (max-width: 576px) {
    .lead-card {
        padding: 12px;
    }
    .lead-card h6 {
        font-size: 14px;
    }
    .badge-status {
        font-size: 10px;
    }
}

.lead-details-card {
    background: #1a1d24;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.lead-details-card h6 {
    color: #ffffff;
    font-weight: 600;
}

.lead-details-card .text-muted {
    color: #9aa0a6 !important;
}

.lead-details-card .text-white {
    font-size: 14px;
}


/* Status badge */

.badge-status {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.badge-new {
    background: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
}

.badge-connected {
    background: rgba(32, 201, 151, 0.15);
    color: #20c997;
}

.badge-qualified {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-completed {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-cancelled {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

.dark-divider {
    border-color: #2a2f3a;
    margin: 12px 0;
}


/* Quotation Status Colors */

.badge-approved {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-rejected {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}


/* Quotation details card */

.lead-details-card {
    background: #1a1d24;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.lead-details-card h6 {
    color: #ffffff;
    font-weight: 600;
}

.lead-details-card .text-muted {
    color: #9aa0a6 !important;
}

.lead-details-card .text-white {
    font-size: 14px;
}


/* Quotation items */

.quotation-item {
    background: #20242d;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.quotation-item strong {
    color: #ffffff;
}


/* Divider */

.dark-divider {
    border-color: #2a2f3a;
    margin: 12px 0;
}


/* Status badge */

.badge-status {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-approved {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-rejected {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}


/* Dark modal */

.dark-modal {
    background: #1a1d24;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.dark-modal .modal-header,
.dark-modal .modal-footer {
    padding: 12px 16px;
}

.dark-modal .modal-body {
    padding: 20px 18px;
}

.confirm-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto;
}


/* Clean dark modal */

.dark-modal-clean {
    background: #1c1f27;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dark-modal-clean .modal-body {
    padding: 22px 20px 20px;
}

.quote-mini-summary {
    background: #242833;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-mini-summary small {
    line-height: 1.6;
}


/* Minimal dark modal */

.dark-modal-minimal {
    background: #1c1f27;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dark-modal-minimal .modal-body {
    padding: 22px 20px 20px;
}

.badge-completed {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-completed {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-completed {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-inprogress {
    background: rgba(0, 123, 255, 0.15);
    color: #007bff;
}

.badge-resolved {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}


/* enquiries_view */