.main-resume-builder-form-bg {
    background-color: #a0cfef !important;
}

.resume-section-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* wrapper */

.resume-help-tooltip {
    position: relative;
    display: inline-block;
}

/* icon */

.resume-help-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid var(--heading-color);
    font-size: 12px;
    font-weight: bold;

    background: #e2dc44;
    color: var(--heading-color);

    cursor: help;
    flex-shrink: 0;
}

/* tooltip hidden by default */

.resume-tooltip-box {
    display: none;

    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);

    width: 260px;
    max-width: calc(100vw - 30px);

    background: var(--heading-color);
    color: #fff;

    padding: 12px;
    font-size: 11px;
    border-radius: 8px;

    z-index: 9999;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    line-height: 1.6;
}

/* show on hover */

.resume-help-tooltip:hover .resume-tooltip-box {
    display: block;
}

/* ================================= */
/* MOBILE VIEW */
/* ================================= */

@media (max-width: 576px) {

    .resume-section-heading-wrapper {
        position: relative;
    }

    .resume-help-tooltip {
        position: static;
    }

    .resume-tooltip-box {

        position: fixed;

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        width: 90%;
        max-width: 320px;

        font-size: 12px;

        border-radius: 10px;

        padding: 14px;

        z-index: 99999;
    }

}

/* ================================= */
/* Resume Tips Box */
/* ================================= */

.resume-note-box {
    position: relative;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-left: 4px solid var(--heading-color);
    border-radius: 14px;
    padding: 18px 20px;
    margin-top: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.resume-note-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* Title */

.resume-note-title {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

/* Icon */

.resume-note-title i {
    color: #ffc107;
    font-size: 18px;
}

/* List */

.resume-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */

.resume-note-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: #495057;
    line-height: 1.7;
    font-size: 14px;
}

/* Last Item */

.resume-note-list li:last-child {
    margin-bottom: 0;
}

/* Custom Tick */

.resume-note-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ================================= */
/* SAMPLE RESUMES SECTION */
/* ================================= */

.sample-resume-box {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* Header */

.sample-resume-header {
    margin-bottom: 18px;
}

.sample-resume-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sample-resume-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sample-resume-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
}

.sample-resume-desc {
    margin: 4px 0 0;
    font-size: 14px;
    color: #6c757d;
}

/* Resume List */

.sample-resume-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Resume Item */

.sample-resume-item {
    border: 1px solid #edf0f2;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: 0.3s ease;
}

.sample-resume-item:hover {
    border-color: var(--heading-color);
    background: rgba(0, 0, 0, 0.01);
}

/* Resume Name */

.resume-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 2px;
}

/* Resume Meta */

.resume-meta {
    font-size: 13px;
    color: #6c757d;
}

/* Download Button */

.sample-resume-btn {
    background: var(--accent-color);
    ;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;

}

.sample-resume-btn:hover {
    opacity: 0.8;
    color: #fff;
    background: var(--accent-color);
    ;
}

/* Mobile */

@media (max-width: 576px) {

    .sample-resume-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .sample-resume-btn {
        width: 100%;
    }
}

.resume-form textarea{
    white-space: pre-wrap;
}

.resume-form textarea.bullet-textarea{
    overflow-y: auto;
}

.resume-helper-text{
    margin-top:8px;
    padding:10px 14px;
    background:#f4f8ff;
    border:1px solid #d6e4ff;
    border-left:4px solid #0d6efd;
    border-radius:8px;
    color:#355070;
    font-size:13px;
    line-height:1.5;
    font-weight:500;
}