
body {
    font-family: 'Inter', sans-serif;
}

.icon-box {
    background-color: #f8f5ff;
    border-radius: 12px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.group:hover .icon-box {
    background-color: #ece5ff;
}

.btn-dark-custom {
    background-color: #2b0a53;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #ffffff;
}

.btn-dark-custom:hover {
    background-color: #1a0535;
    transform: translateY(-2px);
}





/* dashboard */
.dashboard-main {
    background: #f7f7f7;
    position: relative;
}

.dashboard {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cccccccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.dashboard-head img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.dashboard-head p {
    color: #9e9e9e;
    margin: 0;
}

.dashboard-head h4 {
    color: #39004E;
    font-size: 20px;
}

.dashboard-head .add-property-btn {
    background: #39004E;
    padding: 10px 15px;
    color: #ffffff;
    border-radius: 5px;
}

.d-mobile-btn {
    background: #39004E;
    padding: 4px 10px;
    color: #ffffff;
    border-radius: 5px;
    display: none;
}

.d-mobile-btn:hover {
    background: #39004ee5;
}

.d-mobile-btn i {
    font-size: 22px;
}

.dashboard-head .add-property-btn:hover {
    background: #39004ee5;
}

.dashboard-sidnav {
    background: #EDF8FF;
    padding: 20px;
    border-radius: 10px;
    position: sticky;
    top: 110px;
    z-index: 2;
}

.dashboard-sidnav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dashboard-sidnav ul li a {
    display: flex;
    padding: 5px 10px;
    text-decoration: none;
    color: #9e9e9e;
}

.dashboard-sidnav ul li a:hover {
    color: #39004E;
}


.dashboard-body {
    background: #EDF8FF;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.submenu{
    margin-left: 25px !important;
    margin-top: 5px !important;
}

.d-submenu {
    padding-top: 5px;
}

.d-submenu a {
    display: flex;
    padding: 5px 0;
    align-items: center;
    gap: 5px;
}

.dashboard-sidnav>ul>li {
    padding: 10px 0;
}

.d-submenu {
    padding-left: 15px;
    display: none;
}

.d-submenu i {
    font-size: 10px;
    padding: 3px;
    padding-top: 0;
}

.d-submenu.mm-active {
    display: block;
}

.dashboard-sidnav ul li a.mm-active {
    color: #39004E;
    font-weight: 500;
}

.d-subbtn.mm-active>a {
    color: #39004E;
    font-weight: 500;
}

.d-submenu.mm-active>.mm-active {
    color: #39004E;
    font-weight: 500;
}

.dashboard-card {
    display: flex;
    align-items: start;
    gap: 15px;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.dashboard-card i {
    font-size: 40px;
}

.dashboard-sidnav .d-mobile-close {
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 8px;
    display: none;
}

.dashboard-sidnav .d-mobile-close i {
    font-size: 25px;
}

@media(max-width:991px) {
    .d-mobile-menu {
        position: absolute;
        width: 250px;
        left: -260px;
        top: 0;
        height: 100%;
        transition: .4s;
        display: none;
    }

    .d-mobile-menu .dashboard-sidnav {
        height: 100%;
        border-right: 1px solid #ffffff;
    }

    .d-mobile-menu.active {
        display: block;
        left: 0px;
    }

    .d-mobile-btn {
        display: block;
    }

    .dashboard-sidnav .d-mobile-close {
        display: block;
    }

    .sm-ul {
        margin-top: 15px;
    }
}



.user-profile-img img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0 auto;
}

.user-profile-img>div {
    width: 150px;
}

.user-profile-img .image-upload-wrapper {
    height: 150px;
}

.user-profile-img .image-upload-preview {
    border-radius: 50%;
}

.profile-information p {
    margin: 0;
    font-size: 18px;
    padding: 2px 0;
}

.custom-card.card {
    background: #ffffff;
    border: none;
    border: 1px solid #f2faff;
}

.custom-card.card .card-body {
    background: #ffffff;
}

.custom-card.card .card-footer {
    background: #ffffff;
    border-top: 1px solid #f2faff;
}

.table {
    border: 1px solid #39004e19;
}

.table>:not(caption)>*>* {
    background: none;
}

.custom-card.card .card-header {
    background: #ffffff;
    border-bottom: 1px solid #39004e19;
}

.card {
    overflow: hidden;
}


.card-footer.pagination-card-footer {
    background: inherit;
    border-top: none;
    border-top: 1px solid #e6e6e6;
}



.card-footer.pagination-card-footer .pagination {
    float: right;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.card-footer.pagination-card-footer .pagination .page-item .page-link {
    border-radius: 20px;
    margin: 0 5px 5px 0;
    outline: none;
    box-shadow: none;
    min-height: 38px;
    min-width: 38px;
    text-align: center;
}

.card-body .card-list {
    display: flex;
    padding: 8px;
    flex-wrap: nowrap;
    border-bottom: 1px solid #f1f1f1;
    justify-content: space-between;

}

.card-body .card-list:last-child {
    border-bottom: none;
}

/* dashboard end*/



/*============================ resume ============================*/

.resume-right{
    border-radius: 5px;
    overflow: hidden;
}


.resume-right .resume-small-body{
    padding: 10px;
}
.resume-dashboard-right .resume-dashboard-body{
    padding: 10px;
}

.resume-right .resume-head{
    background: var(--sc);
    padding: 10px 20px;
    color: var(--wc);
}
.resume-dashboard-right .resume-head{
    background: var(--sc);
    padding: 10px 20px;
    color: var(--wc);
}
.resume-right .resume-head span{
    font-weight: 600;
    font-size: 15px;
    padding-left: 8px;
}
.resume-view-box a{
    color: var(--pc);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.resume-view-box a:hover{
    color: var(--sc);
}
.resume-view-box .btn{
    box-shadow: none !important;
}
.resume-view-box{
    background: #f2f2f2;
    padding: 15px;
    border-radius: 10px;
}
.resume-top h4{
    font-size: 20px;
    color: var(--sc);
    padding-bottom: 10px;
}
.resume-top p{
    font-size: 13px;
    margin: 6px 0;
}
.resume-top img{
    width: 120px;
    padding: 10px;
    background: #e2e2e2;
}
.resume-top {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.resume-right .resume-title{
    margin: 0;
    background: #e2e2e2;
    padding: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
    color: var(--pc);
}
.resume-right p{
    font-size: 13px;
    margin: 0;
    padding: 3px 0;
}
.resume-exprienct li{
    list-style: decimal;
}
.academic-qualification-table table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
    text-align: center;
    font-size: 13px;
    padding: 3px;
}
.academic-qualification-table table{
    width: 100%;
}
.carrer-application-table table{
    width: 100%;
}
.carrer-application-table table td{
    border: none;
    text-align: left;
    padding: 4px 0;
}
.carrer-application-table table{
    width: 100%;
}
.carrer-application-table table tr td:first-child{
    width: 220px;
    text-align: left;
}
.specialize-table table{
    width: 100%;
}
.specialize-table table tr td{
    text-align: left;
}
.specialize-table table tr td ul li{
    padding: 5px 0;
}
.resume-right .some-difficult ul li {
    padding: 4px 0;
}
.small-resume-left h4{
    font-size: 18px;
    color: var(--bc);
    margin-top: 15px;
    padding: 5px 0;
}
.small-resume-contact i{
    height: 22px;
    width: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: var(--sc);
    color: var(--wc);
    font-size: 12px;
    margin-right: 10px;
}
.small-resume-contact span{
    width: 100%;
}
.small-resume-title i{
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background: var(--sc);
    color: var(--wc);
    font-size: 13px;
    margin-right: 10px;
}
.small-resume-title span{
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    color: var(--sc);
}
.resume-small-main p{
    font-size: 14px;
    margin: 0;
}
.resume-small-main b{
    font-size: 14px;
}
.resume-small-main h6{
    font-size: 16px;
    color: var(--bc);
    margin: 0;
}


/*small resume*/
.resume-small-main{
    border: 1px solid #cccccc;
}
.small-resume-left{
    background: #f7f7f7;
    padding: 15px;
}
.resume-small-photo img{
    width: 120px;
}
/*resume dashboard*/
.resume-dashboard-body h6{
    font-size: 15px;
    color: var(--bc);
}
.resume-dashboard-body p{
    font-size: 15px;
}
.resume-activities{
    border: 1px solid #cccccc;
    padding: 20px;
    margin-top: 20px;
}
.resume-activities button.nav-link{
    font-size: 14px;
    font-weight: 600;
}
.resume-activite-single{
    border: 1px solid #cccccc;
    height: 100%;
    padding: 10px;
}
.resume-activite-single h6{
    font-size: 14px;
    font-weight: 500;
}
.resume-activite-box a{
    font-weight: 600;
    font-size: 14px;
    color: var(--sc);
}


.resume-view-btn a{
    border: 1px solid #3D0087;
    padding: 3px 20px;
    border-radius: 5px;
}
.resume-view-btn .active-btn{
    background: #3D0087;
    color: var(--wc);
}
.resume-view-btn .active-btn:hover{
    color: var(--wc);
}
.resume-view-btn a:first-child{
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.resume-view-btn a:last-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


/*resume form*/
.edit-resume-option{
    background: #f7f7f7;
}
.edit-resume-option-single{
    text-align: center;
    margin: 0 2px;
}
.edit-resume-option-single i{
    color: var(--pc);
    font-size: 25px;
}
.edit-resume-option-single p{
    font-weight: 600;
    margin: 0;
}
.edit-resume-option-single{
    width: 100%;
    padding: 12px 0;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
}
.edit-resume-option-single:hover{
    background: #e6e6e6;
}
.edit-resume-option-single.active-resume{
    background: var(--pc);
}
.edit-resume-option-single.active-resume i{
    color: var(--wc);
}
.edit-resume-option-single.active-resume p{
    color: var(--wc);
}
.edit-resume-option-single span{
    position: absolute;
    height: 30px;
    width: 30px;
    background: var(--pc);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: none;
}
.edit-resume-option-single.active-resume span{
    display: block;
}
.resume-edit-acc .accordion-item .accordion-button{
    background: #f7f7f7;
    margin: 10px 0;
    padding: 12px;
    border-radius: 2px;
}
.resume-info-view .resume-info-edit-btn a{
    color: #3D0087;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 2px;
}
.resume-info-view .resume-info-edit-btn a i{
    margin: 0;
    padding: 0;
}
.resume-info-view .resume-info-edit-btn a:hover{
    background: #cccccc;

}
.resume-info-view{
    font-size: 13px;
}
.resume-info-view p{
    font-size: 13px;
}
.resume-info-view .hilight{
    background: #ebebeb;
    padding: 2px 5px;
    margin: 3px;
    border-radius: 2px;
    display: inline-block;
}
.resume-info-edit-form label span{
    color: red;
}
.resume-info-edit-form label{
    font-weight: 600;
    padding-bottom: 2px;
}
.resume-info-edit-form{
    font-size: 14px;
}
.resume-info-edit-form.change-password{
    max-width: 500px;
    margin: 0 auto;
    background: var(--wc);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
    padding: 30px;
    border-radius: 5px;
}
.resume-info-edit-form.change-password .form-control{
    box-shadow: none;
    padding: 6px;
    border-left: none;
}
.resume-info-edit-form.change-password .form-control:focus{
    border: 1px solid var(--pc);
    border-left: none;
}
.resume-info-edit-form.change-password span.input-group-text{
    border: 1px solid var(--pc);
    border-right: none!important;
}
.resume-info-edit-form input{
    display: block;
    width: 100%;
    border-radius: 5px;
    outline: none;
    border: 1px solid var(--pc);
    padding: 4px;
}

.resume-info-edit-form select{
    display: block;
    width: 100%;
    border-radius: 5px;
    outline: none;
    border: 1px solid var(--pc);
    padding: 4px;
    margin: 0;
}
.resume-info-edit-form textarea{
    display: block;
    width: 100%;
    border-radius: 5px;
    outline: none;
    border: 1px solid var(--pc);
    padding: 4px;
    margin: 0;
    height: 100px;
}
.resume-info-edit-form input.checkbox{
    width: inherit;
}
.resume-info-edit-form .cancel-data{
    border: none;
    background: red;
    color: var(--wc);
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 5px;
    margin: 0 10px;
}
.resume-info-edit-form .save-data{
    border: none;
    background: var(--sc);
    color: var(--wc);
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 5px;
}
.resume-info-edit-form .save-data .spinner-border{
    height: 15px;
    width: 15px;
}
.resume-info-edit-form .cat-box{
    height: 200px;
    width: 100%;
    border: 1px solid var(--pc);
    overflow: auto;
    padding: 5px;
}
.cat-box .checkbox{
    margin-right: 8px;
}
.selectd-option span{
    background: #ededed;
    padding: 2px 5px;
    display: inline-block;
    margin: 3px;
}
.resume-edit-acc .add-requir a{
    padding: 5px 10px;
    border: 2px solid #3D0087;
    color: #3D0087;
    font-weight: 600;
    border-radius: 3px;
    display: inline-block;
    float: right;
}
.resume-info-edit-form .ex-delete-btn{

    background: red;
    color: var(--wc) !important;
    display: inline-block !important;
    width: 25px;
    text-align: center;
    margin-left: 20px;
    border-radius: 5px;
    height: 33px;
}
.resume-info-edit-form .ex-delete-btn i{
    padding-right: 0 !important;
    font-size: 16px;
}
.resume-info-edit-form a.month{
    border: 1px solid var(--pc);
    outline: none;
    border-left: none;
    padding: 5px 10px;
    font-weight: 600;
    background: #ededed;
}
.photograph-image{
    text-align: center;
}
.photograph-image img{
    width: 150px;
}
.photograph-change .change{
    padding: 7px 20px;
    background: #3D0087;
    color: var(--wc);
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
     margin: 0 5px;
}
.photograph-change{
    text-align: center;

}
.photograph-change .delete{
    padding: 7px 20px;
    background: red;
    color: var(--wc);
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
     margin: 0 5px;
}

.resume-view-btn a{
    border: 1px solid #3D0087;
    padding: 3px 20px;
    border-radius: 5px;
}
.resume-view-btn .active-btn{
    background: #3D0087;
    color: var(--wc);
}
.resume-view-btn .active-btn:hover{
    color: var(--wc);
}
.resume-view-btn a:first-child{
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.resume-view-btn a:last-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.mr-15{
    margin-right: 15px;
}
.mr-5{
    margin-right: 5px;
}
.ml-5{
    margin-left: 5px;
}
/*RESUME END*/

/*empowerment page*/
.rehabilitation-image img {
    width: 100%;
}

.rehabilitation-text p {
    line-height: 28px;
}

.target-group {
    background: #F3F3F3;
}

.target-group-box {
    background: var(--wc);
    border-radius: 10px;
    padding: 20px 15px;
    display: block;
    text-decoration: none;
    transition: .2s;
    height: 100%;
}

.target-group-box img {
    width: 60px;
    margin-bottom: 15px;
}

.target-group-box h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #3A3A3A;
    transition: .2s;
}

.target-group-box:hover {
    background: #00A550;
}

.target-group-box:hover h6 {
    color: var(--wc);
}

.partner-section .partner-box {
    background-image: url(../images/photo/partner.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    display: block;
    width: 100%;
    height: 190px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;


}

.partner-box h6 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    width: 100%;
    text-align: center;
    color: var(--wc);
    transition: .2s;
}

.partner-box .partner-img {
    max-width: 180px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .2s;
}

.partner-box:hover {
    background: #00A550;
}

.partner-box:hover h6 {
    opacity: 0;
}

.partner-box:hover .partner-img {
    opacity: 1;
}

.traning-section {
    background: #353535;
}

.traning-box {
    background: #515050;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.traning-box .traning-text span {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--wc);
}

.traning-box .traning-text a {
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    line-height: 27px;
    color: var(--wc);
    margin: 0;
    padding-top: 10px;
    display: block;
    text-align: center;
}

.traning-box img {
    width: 100%;
}

.special-course-icon {
    background: linear-gradient(132.13deg, #D7EDEC 0%, #F4FFFE 96.95%);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    text-align: center;
    padding: 20px 0;
    transition: .2s;
}

.special-course-icon img {
    width: 80%;
}
.special-course-box h6{
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    margin: 0;
    padding: 15px 0;
    text-align: center;
}
.special-course-box:hover .special-course-icon{
    background:
#00A550;
}
.special-course-box:hover .special-course-icon i{
    color: var(--wc);
}
.special-course-box{
    position: relative;
    height: 100%;
}
.acquired-title h2{
    font-weight: 700;
    font-size: 35px;
    line-height: 42px;
}
.acq-list ul{
    padding: 0;
    margin: 0;
}
.acq-list ul li{
    list-style: none;
    position: relative;
    padding: 10px 0;
    padding-left: 35px;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    color: #555555;
    max-width: 790px;

}
.acq-list ul li img{
    position: absolute;
    left: 0;
    top: 18px;
    width: 18px;
}
.submission-image img{
    width: 100%;
}
.submission-text a{
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    background: #00A550;
    color: var(--wc);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 30px;
    display: inline-block;
}


.slider-width-control .slick-dots li{
    height: 10px;
    width: 10px;
    background: #999999;
    border-radius: 50%;
}

.slider-width-control .slick-dots li.slick-active{
    background: #00A550;
}
.slider-width-control .slick-dots{
    bottom: -60px;
}


.resume-activities{
    border: 1px solid #cccccc !important;
    margin-top: 20px;
}

.resume-activities .nav-tabs{
    border-bottom: 1px solid #cccccc !important;
}

.resume-activities .nav-tabs .nav-link{
    border: none !important;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    background: transparent !important;
    padding: 5px 10px !important;
}


.resume-activities .nav-tabs .nav-link.active{
    background: #00A550 !important;
    color: #ffffff !important;
}

.resume-activities .nav-tabs .nav-link{
    font-size: 14px;
    font-weight: 600;
}

.resume-activities .nav-tabs .nav-link::after{
    display: none;
}

.resume-activite-single{
    border: 1px solid #cccccc;
    height: 100%;
    padding: 10px;
}
.resume-activite-single h6{
    font-size: 14px;
    font-weight: 500;
}
.resume-activite-box a{
    font-weight: 600;
    font-size: 14px;
    color: var(--sc);
}
.account-setting .setting-box{
    text-decoration: none;
    border: 1px solid #cccccc;
    padding: 5px;
    border-radius: 5px;
}
.account-setting .setting-box i{
    font-size: 25px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    color: var(--wc);
    border-radius: 50%;
    margin-right: 10px;
}
.account-setting .setting-box h4{
    font-size: 16px;
    color: var(--pc);
}
