



/* profile pic */

/* input::placeholder,
textarea::placeholder {
    color: var(--accent) !important;
} */


.profile-upload2 {
    position: relative;
    width: 130px;
    height: 130px;
    margin: auto;
}

.profile-preview2 {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid var(--text-primary);
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.profile-preview2 i {
    font-size: 55px;
    color: #bdbdbd;
}

.profile-preview2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-btn2 {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--text-primary);
    color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

/* .upload-btn2:hover {
    background: #a8431f;
} */

/* 3rd stepper css (Profile Information css) */



.profile-upload-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.profile-upload {
    position: relative;
    width: 170px;
    height: 170px;
}

.profile-upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #F8EEE9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.upload-btn {
    position: absolute;
    right: 8px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-primary);
    color: var(--bg-card) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(191, 79, 38, .30);
    transition: .3s;
}

.upload-btn:hover {
    transform: scale(1.08);
    /* background: #a8421d; */
}

.input-block {
    margin-bottom: 25px;
}



.profile-textarea {
    /* height: 140px !important; */
    padding: 15px !important;
    /* resize: none; */
}

/* .btn-next {
    background: #BF4F26 !important;
    border-color: #BF4F26 !important;
}

.btn-next:hover {
    background: #a8421d !important;
    border-color: #a8421d !important;
} */

@media(max-width:768px) {

    .profile-upload {
        width: 130px;
        height: 130px;
    }

    .upload-btn {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .input-block .form-control {
        height: 50px;
    }

}

/* skills and services work type css */


.skills-services-wrapper {
    margin-top: 20px;
}

.custom-section {
    margin-bottom: 30px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-head h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.add-btn {
    border: none;
    background: none;
    color: #BF4F26;
    font-weight: 600;
    cursor: pointer;
}

.tag-container {
    /* min-height: 120px; */
    border: 1px solid #e8d6cd;
    border-radius: 14px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.custom-tag {
    background: #fff4ef;
    color: #BF4F26;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border: 1px solid #ffddd0;
}

.custom-tag i {
    cursor: pointer;
}

/* WORK TYPE */

.work-type-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



/* My Portfolio Css styling */

.portfolio-wrapper {
    position: relative;
}

/* Tabs */



.tab-btn {
    background: none;
    border: none;
    padding: 12px 5px;
    font-size: 18px;
    font-weight: 600;
    color: #777;
    position: relative;
}

.tab-btn.active {
    color: #BF4F26;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #BF4F26;
}

/* Content */

.portfolio-wrapper .tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Item */

.portfolio-item {
    display: flex;
    gap: 40px;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
}

.portfolio-item img {
    width: 78px;
    height: 78px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-content h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.portfolio-content p {
    margin: 4px 0 0;
    color: #999;
    font-size: 15px;
}

/* Empty */

.empty-state {
    text-align: center;
    padding: 50px 0;
    color: #999;
}

/* Floating */

.portfolio-add-btn {
    position: absolute;
    right: 20px;
    bottom: -50px;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: #BF4F26;
    color: #fff;

    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

/* Mobile */

@media(max-width:768px) {

    .portfolio-tabs {
        overflow-x: auto;
        gap: 20px;
    }

    .tab-btn {
        white-space: nowrap;
        font-size: 16px;
    }

    .portfolio-content h5 {
        font-size: 16px;
    }

    .portfolio-content p {
        font-size: 13px;
    }

    .portfolio-item img {
        width: 70px;
        height: 70px;
    }
}

/* start registration email registration code */


.verification-wrapper {
    /* max-width: 500px; */
    margin: 0 auto;
    padding: 10px 0 20px;
}

.verify-title {
    text-align: center;
    /* font-size: 32px; */
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.verify-subtitle {
    text-align: center;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 35px;
}

.verify-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    margin-bottom: 18px;
    background: var(--bg-sidebar);
    cursor: pointer;
    transition: .3s;
}

.verify-card:hover {
    border: 2px solid var(--text-primary);
    transform: translateY(-2px);
}

.verify-card.active {
    border: 2px solid var(--text-primary);
}

.verify-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.verify-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid #cfcfcf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
}

.verify-card.active .verify-icon {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.verify-left h4 {
    margin: 0;
    /* font-size: 24px; */
    font-weight: 600;
    color: var(--accent);
}

.verify-status {
    background: var(--text-primary);
    color: var(--bg-card);
    font-size: 14px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 6px;
}

.verify-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--accent);
    font-size: 16px;
    line-height: 1.7;
    margin-top: 10px;
}

.verify-note i {
    color: var(--accent);
    margin-top: 4px;
}

.start-verification-btn {
    width: 100%;
    border: none;
    background: #BF4F26;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 16px;
    border-radius: 8px;
    margin-top: 40px;
    transition: .3s;
}

.start-verification-btn:hover,
.verify-email-btn:hover {
    background: #a8431d;
}

@media(max-width:768px) {

    .verify-title {
        font-size: 26px;
    }

    .verify-subtitle {
        font-size: 15px;
    }

    .verify-left h4 {
        font-size: 18px;
    }

    .verify-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .verify-card {
        padding: 15px;
    }

    .start-verification-btn {
        font-size: 18px;
    }
}

@media(max-width:576px) {

    .verify-left {
        gap: 12px;
    }

    .verify-left h4 {
        font-size: 16px;
    }

    .verify-status {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Email Otp Verfication code */

.otp-wrapper {
    max-width: 500px;
    margin: auto;
    padding: 20px;
}

.otp-header {
    position: relative;
    text-align: center;
    /* margin-bottom: 40px; */
}

.otp-header h2 {
    /* font-size:38px; */
    font-weight: 700;
    margin: 0;
}

.otp-back {
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--accent);
}

.otp-image {
    text-align: center;
    margin-bottom: 15px;
}

.mail-box {
    width: 180px;
    height: 180px;
    margin: auto;
    position: relative;
}

.mail-box i.bi-envelope-paper-fill,
.mail-box i.bi-phone-vibrate-fill,
.mail-box i.bi-person-vcard-fill,
.mail-box i.bi-file-earmark-text-fill {
    font-size: 140px;
    color: var(--accent);
}

.mail-check {
    position: absolute;
    right: 10px;
    bottom: 15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff4ec;
    border: 3px solid #f5d7c4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mail-check i {
    color: #BF4F26;
    font-size: 26px;
}

.otp-text {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--accent);
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.otp-box {
    width: 70px;
    height: 70px;
    /* border: 2px solid #BF4F26; */
    border-radius: 8px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    outline: none;
    background-color: var(--bg-sidebar);
    color: var(--accent);
}

.otp-timer {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 35px;
    color: var(--accent);}

.verify-email-btn {
    width: 100%;
    border: none;
    background: #BF4F26;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
}

.otp-resend {
    text-align: center;
    margin-top: 35px;
    font-size: 20px;
    color: var(--accent);
}

.otp-resend a {
    color: #999;
    text-decoration: none;
}

@media(max-width:768px) {

    .otp-header h2 {
        font-size: 28px;
    }

    .otp-box {
        width: 48px;
        height: 58px;
        font-size: 24px;
    }

    .otp-text {
        font-size: 20px;
    }

    .verify-email-btn {
        font-size: 18px;
    }
}

/* id verfication start */

.id-wrapper {
    max-width: 500px;
    margin: auto;
}

.id-desc {
    font-size: 18px;
    color: var(--accent);
}



/* success page css */

.verification-success-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 15px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #119443;
    border-radius: 50%;
    margin: 50px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
}

.success-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.success-subtitle {
    text-align: center;
    color: #444;
    font-size: 24px;
    margin-bottom: 40px;
}

.success-card {
    height: 85px;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    margin-bottom: 18px;
    background: #fff;
}

.success-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.success-item-icon {
    width: 48px;
    height: 48px;
    border: 2px solid #BDBDBD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-item-icon i {
    font-size: 22px;
    color: #666;
}

.success-left h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.success-check2 {
    color: #1EC84B;
    font-size: 24px;
}



@media(max-width:768px) {

    .success-icon {
        width: 85px;
        height: 85px;
    }

    .success-icon i {
        font-size: 50px;
    }

    .success-title {
        font-size: 28px;
    }

    .success-subtitle {
        font-size: 18px;
    }

    .success-card {
        height: 75px;
    }

    .success-left h4 {
        font-size: 16px;
    }


}

/* tab starting csss */

.role-selection {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.choice-card input {
    display: none;
}

.choice-card label {
    width: 100%;
    cursor: pointer;
    display: block;
}

/* first step css */

.card-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 30px 0 30px;
    background: var(--bg-sidebar);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    transition: .3s;
}

.card-content img {
    width: 130px;
    height: auto;
}

.card-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.card-content p {
    font-size: 18px;
    color: var(--accent);
    margin: 0;
    font-weight: 400;
}

.choice-card label:hover .card-content {
    border-color: var(--text-primary);
    transform: translateY(-3px);
    /* box-shadow: 0 15px 35px rgba(191, 79, 38, .15); */
}

.choice-card input:checked+label .card-content {
    border: 2px solid var(--text-primary);
    /* background: #fffaf7; */
    /* box-shadow: 0 20px 40px rgba(191, 79, 38, .20); */
}

/* first step end css */


/* .btn-theme {
            background: #F26A21;
            border: none;
            color: #fff;
            border-radius: 12px;
            padding: 12px 30px;
            font-weight: 600;
            transition: .3s;
        }

        .btn-theme:hover {
            background: #de5b17;
            transform: translateY(-2px);
        } */

/* .btn-light {
            background: #fff;
            border: 2px solid #ddd;
            border-radius: 12px;
            padding: 12px 30px;
        } */

/* second stepo css */

.category-wrapper {
    max-width: 700px;
    margin: auto;
    padding: 40px 20px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 40px;
    border: 2px solid #ececec;
    border-radius: 18px;
    cursor: pointer;
    transition: .3s;
    background: var(--bg-sidebar);
    position: relative;
}

.category-card input {
    display: none;
}

.category-card.active {
    border-color: var(--text-primary);
    /* background: #FFF5EF; */
}

.icon {
    flex-shrink: 0;
}

.icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.category-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-card p {
    font-size: 15px;
    color: var(--accent);
    margin: 0;
}

.check,
.circle {
    margin-left: auto;
    flex-shrink: 0;
}

.check {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    margin-left: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-card);
}

.check i {
    display: none;
}

/* Active card */
.category-card.active .check {
    background: var(--text-primary);
    /* border-color: #BF4F26; */
}

.category-card.active .check i {
    display: block;
}

/* Mobile */
@media(max-width:768px) {

    .category-wrapper {
        padding: 20px 10px;
    }

    .category-card {
        padding: 15px;
    }

    .icon img {
        width: 50px;
        height: 50px;
    }

    .category-card h3 {
        font-size: 20px;
    }

    .category-card p {
        font-size: 13px;
    }

    .check,
    .circle {
        width: 28px;
        height: 28px;
    }
}

/* @media(max-width:480px){

            .category-card{
                align-items:flex-start;
            }

            .category-card h3{
                font-size:18px;
            }

            .category-card p{
                font-size:12px;
                line-height:1.4;
            }

            .icon img{
                width:45px;
                height:45px;
            }
        }    */


/* third step css */

.main-category-wrapper {

    /* max-width: 700px; */
    margin: auto;
    padding: 20px 20px;

}

.category-list2 {
    /* margin: 35px 0; */
    /* border: 1px solid #eee; */
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-sidebar);
}

.category-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    position: relative;
    transition: .3s;
    border-bottom: 1px solid #f0f0f0;
}

.category-item:last-child {
    border-bottom: none;
}

/* .category-item:hover {
    background: #fffaf8;
} */

.category-item input {
    display: none;
}

.category-icon {
    width: 54px;
    height: 54px;
    background: var(--text-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.category-icon i {
    color: var(--bg-card);
    font-size: 22px;
}

.category-info {
    flex: 1;
}

.category-info h5 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
}

.category-info p {
    margin: 4px 0 0;
    color: var(--accent);
    font-size: 14px;
}

/* Hide original checkbox */
.category-item input[type="checkbox"] {
    display: none;
}

/* Custom checkbox */
.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #222;
    border-radius: 4px;
    background: #fff;
    position: relative;
    transition: all .25s ease;
    flex-shrink: 0;
}

/* Checked state */
.category-item input[type="checkbox"]:checked + .category-icon + .category-info + .checkmark {
    background: var(--text-primary);
    border-color: var(--text-primary);
}

/* Tick */
.category-item input[type="checkbox"]:checked + .category-icon + .category-info + .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--bg-body);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* Project Information csss */


/*=========================
Project Form
=========================*/

.project-form-wrapper {
    max-width: 700px;
    margin: auto;
    padding: 20px 20px;
}

.project-form-wrapper .form-group {
    margin-bottom: 22px;
}

.project-form-wrapper .form-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 12px;
}

.project-form-wrapper .form-label span {
    font-weight: 500;
    font-size: 15px;
    color: #9b9b9b;
}

/*=========================
Image Upload
=========================*/

.project-image-upload {
    position: relative;
    width: 100%;
    height: 205px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ececec;
    background: #f5f5f5;
}

.project-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.upload-camera {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #BF4F26;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.upload-camera i {
    font-size: 20px;
}

.upload-camera:hover {
    background: #d96530;
    transform: translate(-50%, -50%) scale(1.08);
}




/*=========================
Responsive
=========================*/



@media(max-width:767px) {

    .project-image-upload {

        height: 205px;
    }

    .project-form-wrapper .form-label {

        font-size: 17px;
    }

    .custom-input,
    .custom-select {

        height: 52px;
        font-size: 15px;
    }

    .custom-textarea {

        font-size: 15px;
    }

    .service-type-list {

        gap: 10px;
    }

    .service-box {

        flex: 1;
        min-width: 100px;
        font-size: 14px;
        height: 44px;
    }

    .upload-camera {

        width: 44px;
        height: 44px;
    }

    .upload-camera i {

        font-size: 18px;
    }
}


/*edted two things My Profile CSSS */

/* Portfolio Item */

/* .portfolio-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:15px 0;
    border-bottom:1px solid #ececec;
} */

/* .portfolio-item img{
    width:78px;
    height:58px;
    border-radius:6px;
    object-fit:cover;
    flex-shrink:0;
} */

.portfolio-content {
    flex: 1;
}

.portfolio-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222;
}

.portfolio-content p {
    margin: 0;
    font-size: 16px;
    color: #8a8a8a;
}

/* Right Buttons */

.portfolio-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 6px;
    background: #FFE7DD;
    color: #BF4F26;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

/* .action-btn:hover{
    background:#F37B43;
    color:#fff;
} */

/* Add Portfolio */

.add-portfolio-btn {
    width: 250px;
    /* ya 280px */
    height: 52px;
    background: #fff7f2;
    border: 1px dashed #BF4F26;
    color: #BF4F26;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0;
    transition: .3s;
}

.add-portfolio-wrap {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

/* .add-portfolio-btn:hover{
    background:#F37B43;
    color:#fff;
} */


/*=========================
Service Type
=========================*/





.section-head2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.skill-input-box input {
    height: 48px;
}

.btn-add-skill {
    /* border: 1px solid #BF4F26; */
    color: var(--bg-card);
    background: var(--text-primary);
    border-radius: 8px;
    padding: 10px 20px;
}

/* .btn-add-skill:hover {
    background: #BF4F26;
    color: #fff;
} */


.input-group {
    display: flex;
    align-items: stretch;
}

.input-group-text2 {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: var(--bg-sidebar);
    color: var(--accent);
    border: 1px solid #dcdcdc;
    border-right: 1px solid #CED4E6 !important;
    border-radius: 8px 0 0 8px;

    white-space: nowrap;
}

.input-group .form-control {
    /* border-left: 1px solid var(--accent); */
    border-radius: 0 8px 8px 0;
}

/* underreview section css */

.review-wrapper {
    position: relative;
    min-height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-top {
    margin-top: 40px;
}

.review-title {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 12px;
}

.review-subtitle {
    font-size: 17px;
    color: #8b8b8b;
    margin: 0;
}

.review-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 20px;
}

.review-image img {
    max-width: 340px;
    width: 100%;
}

.review-content2 {
    padding: 0 20px 40px;
}

.review-content2 h3 {
    font-size: 34px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 15px;
}

.review-content2 p {
    color: #8f8f8f;
    font-size: 20px;
    line-height: 32px;
}

.review-footer {
    width: 100%;
}



@media(max-width:991px) {

    .review-title {
        font-size: 24px;
    }

    .review-subtitle {
        font-size: 16px;
    }

    .review-content2 h3 {
        font-size: 28px;
    }

    .review-content2 p {
        font-size: 18px;
        line-height: 28px;
    }

    .review-image img {
        max-width: 270px;
    }

}

@media(max-width:767px) {

    .review-top {
        margin-top: 30px;
    }

    .review-title {
        font-size: 22px;
    }

    .review-subtitle {
        font-size: 15px;
    }

    .review-image {
        padding: 20px;
    }

    .review-image img {
        max-width: 220px;
    }

    .review-content2 h3 {
        font-size: 18px;
    }

    .review-content2 p {
        font-size: 15px;
        line-height: 24px;
    }

    /* .btn-primary-custom{
    height:55px;
    font-size:17px;
} */

}


/* video preview section */


/* Video Preview Styles */
.video-item {
    position: relative;
    display: inline-block;
    width: 160px;
    margin: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    /* overflow: hidden; */
    background: #f9f9f9;
    vertical-align: top;
}

.video-thumb-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    background: #000;
    overflow: hidden;
    border-radius: 7px;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c2c2c;
    color: #fff;
    font-size: 40px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.4);
}

.video-play-icon {
    font-size: 40px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    opacity: 0.9;
}

.video-duration-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.video-info {
    padding: 8px 10px;
    background: #fff;
    border-radius: 12px;
}

.video-info .file-name {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-info .file-size {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

 .video-item .remove-btn {

    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: var(--bg-card);
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 14px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5); */
    transition: all 0.2s ease;
    z-index: 9999 !important;
    line-height: 1;
    padding: 0;
    overflow: visible !important;
 
}

/* .video-item .remove-btn:hover {
    background: #ff0000;
    transform: scale(1.1);
}  */

/* Preview Grid */
.preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}
