body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-black);
    background-color: var(--light-gray);
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

/* Reusing Navbar styles from landing page */
.navbar {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 20px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black) !important;
    display: flex;
    align-items: center;
}

.btn-login,
.btn-signup {
    /* Keep existing styles */
}

/* Dashboard Content Wrapper */
.dashboard-wrapper {
    padding: 40px 0;
}

/* Dashboard Header Area */
.dashboard-header-area {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-profile-info {
    display: flex;
    align-items: center;
}

.verification-badge {
    font-size: 1.5rem;
    margin-right: 15px;
}

.verification-badge .fa-shield-alt.blue {
    color: var(--primary-blue);
}

.verification-badge .fa-check-circle {
    font-size: 0.6em;
    margin-left: -0.5em;
    vertical-align: top;
    color: white;
}

.user-initials {
    width: 45px;
    height: 45px;
    background: var(--primary-black);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
}

/* Vertical Menu Styling */
.vertical-menu-card {
    background: white;
    padding: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.vertical-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vertical-menu a {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 5px solid transparent;
}

.vertical-menu a:hover,
.vertical-menu a.active {
    color: var(--primary-black);
    background: var(--light-gray);
    border-left: 5px solid var(--primary-black);
}

.vertical-menu i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Form Card Styling */
.card-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
    height: 100%;
}

.form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.1);
}

.btn-primary-black {
    background-color: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-black:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: white;
}

/* Stepper Styles for Multi-Step Form */
.stepper-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 10px;
    border-bottom: 1px solid var(--border-gray);
}

.step-item {
    flex: 1;
    text-align: center;
    padding-bottom: 15px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    color: var(--medium-gray);
    transition: color 0.3s;
}

.step-item.active {
    color: var(--primary-black);
    font-weight: 600;
}

.step-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-black);
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--medium-gray);
    margin-right: 8px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.step-item.active .step-circle {
    border-color: var(--primary-black);
    background-color: var(--primary-black);
    color: white;
}

/* Form Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
    margin-top: 30px;
}

.btn-prev {
    background-color: transparent;
    border: 1px solid var(--border-gray);
    color: var(--dark-gray);
}

.btn-prev:hover {
    background-color: var(--light-gray);
}

/* Rating Star Styling */
.rating-stars {
    font-size: 1.5rem;
}

.rating-stars .fa-star {
    color: #ccc;
    transition: color 0.2s;
}

.rating-stars .fa-star.checked {
    color: var(--gold);
}

/* Hide the default radio buttons */
.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    padding: 0 2px;
}

/* Verification-specific styles */
.verification-status-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    margin-bottom: 30px;
}

.status-badge {
    padding: 8px 15px;
    border-radius: 50rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.status-unverified {
    background-color: #fcebeb;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.status-pending {
    background-color: #fff3cd;
    color: #ffc107;
    border: 1px solid #ffc107;
}

.status-level2 {
    background-color: #cfe2ff;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

/* Progress Tracker Stepper (Vertical) */
.progress-stepper {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress-step {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    min-height: 40px;
}

.progress-step:last-child {
    margin-bottom: 0;
}

.progress-step-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 0.7rem;
    color: white;
}

.progress-step-icon-approved {
    background-color: var(--success-green);
}

.progress-step-icon-current {
    background-color: var(--primary-black);
    border: 2px solid white;
    box-shadow: 0 0 0 3px var(--primary-black);
}

.progress-step-icon-pending {
    background-color: #ccc;
}

.progress-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    bottom: -5px;
    width: 2px;
    background-color: #e9ecef;
}

.step-title {
    font-weight: 600;
    color: var(--primary-black);
}

.step-detail {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* ========================================
   RESPONSIVE STYLES FOR MOBILE DEVICES
   ======================================== */

/* Tablet Devices (768px - 991px) */
@media (max-width: 991px) {
    .vertical-menu-card {
        padding: 0;
    }

    .vertical-menu-card .col-lg-3 {
        margin-bottom: 20px;
    }

    .dashboard-header-area {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .user-profile-info {
        margin-top: 1rem;
    }

    .stepper-header {
        padding: 0 5px;
    }

    .step-item {
        font-size: 0.9rem;
    }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
    body {
        font-size: 14px;
        padding-top: 60px;
    }

    /* Navbar adjustments */
    .navbar {
        padding: 0.75rem 0;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
        margin-right: 8px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    /* Dashboard wrapper */
    .dashboard-wrapper {
        padding: 20px 0;
    }

    /* Dashboard header */
    .dashboard-header-area {
        padding: 1rem;
        margin-bottom: 15px;
        border-left-width: 3px;
    }

    .dashboard-header-area h2 {
        font-size: 1.3rem;
    }

    .dashboard-header-area p {
        font-size: 0.85rem;
    }

    .verification-badge {
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .user-initials {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    /* Vertical menu */
    .vertical-menu-card {
        margin-bottom: 15px;
    }

    .vertical-menu a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .vertical-menu i {
        margin-right: 12px;
        font-size: 1rem;
    }

    /* Form cards */
    .card-form {
        padding: 20px 15px;
        font-size: 0.9rem;
    }

    .card-form h3,
    .card-form h4 {
        font-size: 1.1rem;
    }

    .card-form h5 {
        font-size: 1rem;
    }

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    /* Buttons */
    .btn-primary-black {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Stepper */
    .stepper-header {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .step-item {
        font-size: 0.8rem;
        padding-bottom: 10px;
        min-width: 33.33%;
    }

    .step-circle {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        margin-right: 5px;
    }

    /* Form navigation */
    .form-navigation {
        margin-top: 20px;
        padding-top: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .form-navigation .btn {
        font-size: 0.85rem;
    }

    /* Rating stars */
    .rating-stars {
        font-size: 1.2rem;
    }

    /* Verification status */
    .verification-status-card {
        padding: 15px;
        margin-bottom: 20px;
    }

    .status-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Progress stepper */
    .progress-step {
        padding-left: 25px;
        margin-bottom: 20px;
        font-size: 0.85rem;
    }

    .progress-step-icon {
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 0.65rem;
    }

    .progress-step:not(:last-child)::before {
        left: 8px;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-detail {
        font-size: 0.8rem;
    }
}

/* Small Mobile Devices (Below 576px) */
@media (max-width: 575px) {
    body {
        font-size: 13px;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .dashboard-header-area h2 {
        font-size: 1.2rem;
    }

    .card-form {
        padding: 15px 12px;
    }

    .card-form h3,
    .card-form h4 {
        font-size: 1rem;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .form-control,
    .form-select {
        font-size: 0.85rem;
    }

    .btn-primary-black {
        padding: 7px 14px;
        font-size: 0.85rem;
        width: 100%;
    }

    .step-item {
        font-size: 0.7rem;
        padding-bottom: 8px;
    }

    .step-circle {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
        margin-right: 4px;
    }

    .step-item .step-circle {
        display: block;
        margin: 0 auto 5px;
    }

    .form-navigation {
        flex-direction: column;
    }

    .form-navigation .btn {
        width: 100%;
    }

    .vertical-menu a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .verification-status-card {
        padding: 12px;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* Extra Small Devices (Below 400px) */
@media (max-width: 399px) {
    body {
        font-size: 12px;
    }

    .logo-icon {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .dashboard-header-area {
        padding: 0.75rem;
    }

    .dashboard-header-area h2 {
        font-size: 1.1rem;
    }

    .user-initials {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .card-form {
        padding: 12px 10px;
    }

    .form-label {
        font-size: 0.75rem;
    }

    .form-control,
    .form-select {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .step-item {
        font-size: 0.65rem;
    }

    .step-circle {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }
}