:root{
    --bg-color:#111111;
    --Primary:#45e77b;
    --Black: #000000;
    --White: #ffffff;
    --body-text: #666666;
    --Secondary: #266f5d;
    --Text-light: #fff;
    --Text-primary: #121212;
    --Text-secondary: #616161;
    --Text-muted: #a6a7ae;
    --Bg-light: #f8f7f4;
    --Line: #e5e7eb;
    --Bg-linear: linear-gradient(123.51deg, rgba(204, 235, 235, 0.01) -61.8%, rgba(215, 237, 237, 0.1) 100%);
    --Bg-linear-2: linear-gradient(123.51deg, rgba(215, 237, 237, 0.1) -61.8%, rgba(204, 235, 235, 0.01) 100%);
}
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--main-text-color);
    font-family: "Sora", sans-serif;
}
a, a:hover, button, button:hover {
    transition: 0.3s ease all;
}
a, a:hover {
    text-decoration: none;
}
/* --wrapper-- */
.mask-container{
    background-color: var(--bg-color);
    position: relative;
}
.body-overlay{
    position: fixed;
    object-fit: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: -1;
}
.bg-shape{
    pointer-events: none;
    mask: url('../images/bg-shape.svg') no-repeat center;
    width: 100%;
    height: 100%;
    background: var(--Primary);
    mask-size: cover;
}



/* --header-css-- */

.header-section {
    width: 100%;
    z-index: 999;
    top: 15px;
    transition: 0.3s ease all;
}
.header-section.scrolled{
    top: 2px;
}
.header-row-main{
    background: linear-gradient(123.51deg, rgba(215, 237, 237, 0.1) -61.8%, rgba(204, 235, 235, 0.01) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 160px;
    padding: 12px 20px 12px 12px;
    position: relative;
    z-index: 9999;
    transition: 0.3s ease all;
}
.scrolled .header-row-main{
    background-color: #000000;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.header-logo {
    display: block;
}
.nav-item-list > li > a {
    font-size: 16px;
    line-height: 68px;
    display: inline-block;
    color: #858792;
    position: relative;
    padding: 0 15px;
}

.hover-class-green:hover{
    cursor: pointer;
    transition: 0.2s ease-in;
    color: var(--Primary);
}
.hover-class-white:hover{
    cursor: pointer;
    transition: 0.2s ease-in;
    color: var(--White);
}

.nav-item-list > li > a:hover,
.nav-item-list > li > a.active {
    color: var(--Primary);
}
.btn.common-btn {
    font-size: 15px;
    text-align: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
    color: #fff;
    padding:0 40px;
    height: 65px;
    border-radius: 32.5px;
    line-height: 60px;
    border: 1px solid #3b3d49;
    transition: all .5s ease;
    font-size: 18px;
}
.btn.common-btn i {
    padding-left: 10px;
}
.btn.common-btn:hover {
    border: 1px solid #2e303d;
    color: #fff;
}
.btn.common-btn::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(.8);
    width: 100%;
    height: 100%;
    background: 0 0;
    transition: all .5s ease;
    z-index: -1;
}
.btn.common-btn:hover::after {
    transform: translate(-50%, -50%) scaleX(1.2);
    background: #2e303d;
}


/* first-section */
.main-content{
    padding-top: 150px;
    padding-bottom: 60px;
}
.candidate-details{
    position: fixed;
    left: 60px;
    top: 140px;
    width: 330px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--Bg-linear-2);
}
.candidate-img{
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 16px;
    height: 270px;
}
.candidate-img img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.candidate-details-inner h4{
    font-size: 36px;
    line-height: 36px;
    color: var(--Text-light);
    margin-bottom: 1px;
}
.candidate-details-inner h6{
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 1.1px;
    color: var(--Primary);
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
}
.candidate-details-inner a{
    font-size: 18px;
    line-height: 30px;
    color: var(--Text-light);
    margin-bottom: 4px;
}
.candidate-details-inner p{
    font-size: 12px;
    line-height: 20px;
    color: var(--Text-secondary);
    margin-bottom: 0;
}
.candidate-details-inner ul {
    margin-top: 10px;
}
.candidate-details-inner ul li a{
    height: 48px;
    width: 48px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--Text-light);
    background: linear-gradient(123.51deg, rgba(215, 237, 237, 0.1) -61.8%, rgba(204, 235, 235, 0.01) 100%);
}
.candidate-details-inner ul li a:hover{
    background-color: var(--Text-light);
    color: var(--Text-primary);
}
h6.title-heading{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--Text-muted);
    padding-left: 10px;
    margin-bottom: 30px;
}
h6.title-heading::before{
    content: "";
    position: relative;
    height: 8px;
    width: 8px;
    background-color: var(--Primary);
    border-radius: 50%;
    animation: flickerAnimation 0.8s infinite;
}
.first-banner-details h5{
    font-size: 32px;
    line-height: 40px;
    text-rendering: optimizeLegibility;
    font-weight: 500;
    color: var(--Text-light);
    margin-bottom: 30px;
}
.first-banner-details h5 span{
    color: var(--Primary);
}
.first-banner-details h1{
    font-size: 80px;
    line-height: 88px;
    color: var(--Text-light);
    margin-bottom: 30px;
}
.first-banner-details p{
    color: var(--Text-muted);
    margin-bottom: 43px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.counter-item{
    padding: 16px 14px;
    border-radius: 16px;
    border: 1px solid transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--Bg-linear-2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.counter-item h4{
    font-size: 56px;
    line-height: 68px;
    margin-bottom: 7px;
    color: var(--Text-light);
}
.counter-item p{
    color: var(--Text-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}



.resume-details-row{
    padding-top: 80px;
}
.resume-details-row h3{
    font-weight: 500;
    color: var(--Text-light);
    font-size: 44px;
    line-height: 60px;
    margin-bottom: 45px;
}
.education-exp-card{
    align-items: center;
    justify-content: space-between;
    padding: 20px 8px 20px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.education-exp-card.service-card{
    border-color: transparent;
    padding: 40px 8px;
}
.education-exp-card:hover{
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
}

.head-withcompany h5{
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: var(--Text-light);
}
.service-card .head-withcompany h5{
    font-size: 28px;
    line-height: 38px;
}
.head-withcompany h5 a{
    color: var(--Text-light);
}
.education-exp-card:hover .head-withcompany h5 a{
    color: var(--Primary);
}
.head-withcompany p{
    font-size: 14px;
    line-height: 28px;
    color: var(--body-text);
    transition: 0.3s ease all;
    padding-bottom: 16px;
}
.education-exp-card:hover .head-withcompany p{
    color: var(--White);
}
.time-duration{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--Bg-linear-2);
    height: 38px;
    padding: 0 16px;
    border-radius: 40px;
    white-space: nowrap;
    transition: all 0.3s ease;
    color: var(--Text-light);
    font-size: 14px;
    line-height: 22px;
}
.point{
    display: block;
    height: 16px;
    width: 16px;
    background-color: var(--Text-primary);
    border-radius: 50%;
    border: 3px solid var(--Primary);
    position: absolute;
    top: 26px;
    left: 13.52px;
    z-index: 1;
    padding: 0;
}
.btn.view-btn{
    color: var(--Text-light);
}
.btn.view-btn:hover{
    color: var(--Primary);
}
.portfolio-row{
    padding: 30px 18px;
    background: var(--Bg-linear-2);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    transition: 0.3s ease all;
    margin-bottom: 24px;
}
.portfolio-img-div{
    margin-bottom: 24px;
}
.portfolio-img-div img{
    border-radius: 20px;
    box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1);
    height: 237px;
    width: 100%;
}
.tag-portfolio{
    display: flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    background-color: var(--Primary);
    position: absolute;
    left: 20px;
    color: var(--Text-primary);
    bottom: 20px;
    border-radius: 24px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
}
.portfolio-heading h5{
    font-size: 20px;
    font-weight: 500;
    color: var(--Text-light);
}
.portfolio-heading h5 a, 
.portfolio-heading p,
.portfolio-heading h6,
.portfolio-heading ul li{
    color: var(--Text-light);
}
.portfolio-heading ul li{
    border: 1px solid var(--Text-light);
    border-radius: 50px;
    padding: 4px 15px;
}
.portfolio-heading p{
    color: var(--Text-light);
}
.portfolio-row:hover .portfolio-heading h5 a{
    color: var(--Primary);
}
.award-img{
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}
.other-details{
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
}
.award-class, .level, .rank{
    color: var(--Text-light);
    padding: 8px;
}
.award-class, .level{
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.preview-btn.btn{
    color: var(--Text-light);
    border: 1px solid var(--Text-light);
    border-radius: 25px;
    margin-top: 10px;
    font-size: 12px;
}
.preview-btn.btn:hover{
    border-color: var(--Primary);
    background-color: var(--Primary);
    color: var(--Text-primary);
}
.contact-form-custom{
    padding: 40px 48px;
    background: var(--Bg-linear-2);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    margin-top: 45px;
}
.contact-form-custom .form-item{
    margin-bottom: 24px;
}
.contact-form-custom .form-item .form-control{
    outline: 0;
    box-shadow: none;
    width: 100%;
    padding: 12px 0 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    background-color: transparent;
    border: unset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--Text-light);
    border-radius: 0;
}
.contact-form-custom .form-item .form-control::-webkit-input-placeholder{
    color: rgba(255, 255, 255, 0.1);
}
.contact-form-custom .form-item .form-control:focus{
    border-color: var(--Text-light);
}
.contact-form-custom .form-item .form-control .textarea{
    height: 92px;
}
.list-tag-btn.btn{
    color: var(--Text-light);
    font-size: 16px;
    line-height: 28px;
    padding: 12px 24px;
    border-radius: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(123.51deg, rgba(215, 237, 237, 0.1) -61.8%, rgba(204, 235, 235, 0.01) 100%);
    margin-bottom: 12px;
}
.list-tag-btn.btn:hover{
    color: var(--Primary);
}
.get-started-btn.btn{
    background-color: var(--Primary);
    color: var(--Text-primary);
    height: 56px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    border-radius: 40px;
    width: max-content;
    font-weight: 600;
}
.counter-item.certificate-item h4{
    font-size: 30px;
    line-height: 50px;
}
.counter-item.certificate-item h5{
    color: var(--Text-light);
}
.counter-item.certificate-item h6{
    color: var(--Text-light);
}
.scroll-margin-top-180{
    scroll-margin-top: 180px;
}
.scroll-margin-top-80{
    scroll-margin-top: 80px;
}