html{
    width: 100%;
}
body{
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #111;
    background-image: url(assets/background-banner.webp);
    overflow: hidden;
    overflow-y: auto;
    color: #fff;
    font-family: 'Sora-Regular';
    background-attachment: fixed;
    background-size: cover;
}
*{
    box-sizing: border-box;
}
@font-face {
    font-family: 'Sora-regular';
    src: url('assets/font/Sora-Regular.otf') format('opentype');
}
@font-face {
    font-family: 'Sora-Bold';
    src: url('assets/font/Sora-Bold.otf') format('opentype');
}
@font-face {
    font-family: 'Sora-SemiBold';
    src: url('assets/font/Sora-SemiBold.otf') format('opentype');
}
@font-face {
    font-family: 'Sora-Medium';
    src: url('assets/font/Sora-Medium.otf') format('opentype');
}
img{
    width: 100%;
    height: 100%;
}
:root{
    --shadow:  rgba(0, 85, 255, 0.5) 0px 8px 40px 0px,
               rgba(255, 255, 255, 0) 0px 0px 10px 1px inset, 
               rgba(0, 85, 255, 0.12) 0px 0px 0px 1px;
    --theme-color: #0055fe;
    --gd-1: linear-gradient(90deg, var(--theme-color), #ffffff);
    --gd-2: linear-gradient(90deg, var(--theme-color), #81a3e8);
}
.parent_sec{
    position: relative;
    max-width: 1280px;
    margin: auto;
}
.full_background{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 0;
}
.full_background video{
    cursor: auto;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    display: block;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0);
    object-position: 50% 50%;
}
.bgcover{
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    inset: 0;
}
header {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 0;
    top: 0;
    padding: 20px 30px;
    z-index: 9;
}
.hright_part {
    display: flex;
    gap: 15px;
}
section{
    position: relative;
    width: 100%;
}
.intro_part{
    display: flex;
    height: 720px;
    justify-content: space-between;
}
.intro_txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}
.intr_t1 {
    font-size: 36px;
    font-family: 'Sora-Bold';
}
.intro_txt h1 {
    font-size: 60px;
    margin: 20px 0;
    font-family: 'Sora-Bold';
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--gd-1);
}
.intr_t2 {
    font-size: 20px;
    opacity: 0.5;
    margin: 0;
}
.txt_hi{
    display: none;
}
.brd_txt {
    font-size: 260px;
    stroke-width: 1.2;
    stroke: #fff;
    fill: transparent;
    display: inline-block;
}
.profile_pic{
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.prof_cover {
    width: 450px;
    padding: 2px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(5deg);
    transition: transform 0.3s linear;
    aspect-ratio: 1;
}
.prof_cover:hover{
    transform: rotate(0);
}
.prof_cover img {
    object-fit: cover;
    border-radius: 30px;
    position: relative;
}
.prof_cover:before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: linear-gradient(90deg, var(--theme-color), #ffffff00 50%);
    animation: rador 5s linear infinite;
}
@keyframes rador{
    100%{
        transform: rotate(1turn);
    }
}
.cv_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 45px;
    padding: 0 15px;
    border-radius: 30px;
    font-family: 'Sora-Medium';
    font-size: 16px;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    transition: all 0.3s linear;
    cursor: pointer;
    outline: 5px solid #ffffff00;
    background: #0055fe00;
    text-decoration: none;
}
.cv_btn:hover{
    background: var(--theme-color);
    box-shadow: var(--shadow);
    border-color: transparent;
    outline-color: #ffffff1a;
    color: #fff;
}
.soc_btn{
    width: 45px;
    padding: 0;
    justify-content: center;
    color: #fff;
    border-color: #ffffff80;
}
.soc_btn:hover{
    transform: translateY(-3px);
}
.intro_action {
    display: flex;
    margin-top: 50px;
    gap: 15px;
}
.quick_look {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-bottom: 50px;
}
.quicklook_card {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 15px;
    background: #ffffff1a;
    backdrop-filter: blur(10px);
    flex: 1;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.quicklook_card:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 180px;
    transform: rotate(20deg);
    background: linear-gradient(270deg, #ffffff50, #ffffff00);
    animation: shine 2s linear infinite;
    border-right: 5px solid #ffffff40;
    left: -100px;
}
.quicklook_card:nth-child(2)::before{
    animation-delay: 1.5s;
}
.quicklook_card:nth-child(3)::before{
    animation-delay: 3s;
}
@keyframes shine{
    0%, 100%{
        opacity: 0;
        left: -100px;
    }
    80%{
        opacity: 1;
        left: 100%;
    }
    90%{
        left: 120%;
        opacity: 0;
    }

}
.quicklook_icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff1a;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: var(--gd-2);
}
.quicklook_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #ffffff80;
    gap: 10px;
}
.quicklook_info span {
    font-size: 32px;
    font-family: 'Sora-Bold';
    color: #fff;
}
.sec_heading {
    font-size: 45px;
    font-family: 'Sora-Bold';
    display: inline-flex;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--gd-1);
    margin-bottom: 20px;
}
.sec_intro {
    text-align: center;
    margin-bottom: 50px;
}
.sub_para{
    font-size: 18px;
    color: #ffffff80;
    margin: 0;
}
.sep_line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,#ffffff00, var(--theme-color), #ffffff00);
    position: relative;
    margin: 70px auto;
}
.qltyser_cont {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 80px;
    padding: 50px 0;
}
.ser_num {
    font-size: 45px;
    font-family: 'Sora-Bold';
    color: var(--theme-color);
    position: relative;
}
.service_title {
    font-size: 35px;
    font-family: 'Sora-Bold';
    margin: 0;
}
.service_desc {
    font-size: 16px;
    color: #ffffff80;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.qltyser_card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border-radius: 20px;
    outline: 10px solid #ffffff30;
    background: url(assets/card-background.webp) center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    cursor: default;
}
.qltyser_card::before{
    content: '';
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff1a;
    z-index: 0;
    transform: scale(1);
    transition: transform 0.2s linear;
}
.qltyser_card:hover::before{
    transform: scale(10);
}
.qltyser_det {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}
.qltyser_text {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: calc(55% - 80px);
}
.qltyser_icon {
    position: sticky;
    top: 50px;
    width: 45%;
}
.qltyser_icon img{
    animation: rador 30s linear infinite;
}
.recnt_wrk_cont {
    display: flex;
    gap: 80px;
    padding: 30px 0;
}
.work_template {
    width: calc(50% - 40px);
    aspect-ratio: 0.9;
    padding: 25px;
    background: #ffffff1a;
    border-radius: 30px;
}
.temp_pic{
    display: block;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.temp_pic img{
    height: auto;
    transform: translateY(0);
    animation: roll 15s linear infinite;
}
@keyframes roll{
    50%{
        transform: translateY(-200px);
    }
    
}
.template_info{
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    transition: all 0.5s linear;
}
.work_template:hover .template_info{
    bottom: 20px;
}
.template_cont {
    color: #fff;
    width: calc(100% - 40px);
    margin: auto;
    background: var(--gd-2);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}
.template_cont h3 {
    font-size: 24px;
    margin: 0;
}
.template_cont p {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.template_cont svg {
    position: absolute;
    top: 6px;
    right: 25px;
    transform: rotate(45deg);
}
.tiltang{
    transform: rotate(45deg);
}
.skill_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-basis: 160px;
    padding: 20px;
    aspect-ratio: 1;
    background: #ffffff1a;
    border-radius: 30px;
    transition: all .3s linear;
    border: 2px solid #0055fe00;
    position: relative;
    animation: blink 6s linear infinite;
}
@keyframes blink{
    0%, 10%{
        background: #0055fe50;
        border-color: var(--theme-color);
    }
    20%{
        background-color: #ffffff1a;
        border-color: transparent;
    }
}
.skill_card img{
    width: 90px;
    height: auto;
    filter: grayscale(1);
    transition: all 0.3s linear;
    animation: show 6s linear infinite;
}
@keyframes show{
    0%, 10%{
        filter: grayscale(0);
    }
    20%{
        filter: grayscale(1);
    }

}
.skill_card:nth-child(2), .skill_card:nth-child(2) img{
    animation-delay: 1s;
}
.skill_card:nth-child(3), .skill_card:nth-child(3) img{
    animation-delay: 2s;
}
.skill_card:nth-child(4), .skill_card:nth-child(4) img{
    animation-delay: 3s;
}
.skill_card:nth-child(5), .skill_card:nth-child(5) img{
    animation-delay: 4s;
}
.skill_card:nth-child(6), .skill_card:nth-child(6) img{
    animation-delay: 5s;
}
.skill_card:hover{
    border-color: var(--theme-color);
    background: #0055fe50;
}
.skill_card:hover img{
    filter: grayscale(0);
}
.skill_cont {
    display: flex;
    justify-content: space-evenly;
    padding: 40px 0;
    flex-wrap: wrap;
    gap: 50px 20px;
}
.skill_percent {
    position: absolute;
    top: -40px;
    font-size: 20px;
    font-family: 'Sora-Bold';
    color: #ffffff80;
    opacity: 0;
    transition: opacity .3s linear;
}
.skill_card:hover .skill_percent{
    opacity: 1;
}
.exp_info {
    padding: 50px 0;
    display: flex;
    gap: 50px;
}
.exp_card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(45deg, #0055fe50, transparent);
    border-radius: 20px;
    flex: 1;
    transition: all 0.3s linear;
    cursor: default;
    border-right: 8px inset transparent;
    max-width: 48%;
    justify-content: center;
}
.exp_card:hover{
    transform: scale(1.05);
    background: var(--gd-2);
    border-color: var(--theme-color) ;
}
.exp_yrs {
    font-size: 20px;
    font-family: 'Sora-SemiBold';
    color: var(--theme-color);
}
.exp_card:hover .exp_yrs{
    color: #fff;
}
.exp_ins {
    font-size: 26px;
    font-family: 'Sora-Bold';
}
.exp_loc {
    font-size: 18px;
    color: #ffffff80;
}
.Getin_touch {
    display: flex;
    column-gap: 100px;
    padding: 30px 0;
    align-items: center;
    justify-content: space-between;
}
.my_contact {
    display: flex;
    justify-content: center;
    flex: 1 1 40%;
    gap: 30px;
}
.short_mssg {
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
}
.contact_info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.continfo_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gd-2);
    border-radius: 50%;
}
.continfo_det {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.continfo_label {
    color: var(--theme-color);
    font-size: 18px;
}
span.continfo_value {
    font-size: 20px;
}
.send_note {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    margin: 0;
    background: #ffffff1a;
    border-radius: 5px 50px;
    padding: 25px 30px;
    gap: 20px;
}
.send_note h4 {
    margin: 0;
    font-size: 28px;
    width: max-content;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--gd-1);
    font-family: 'Sora-Bold';
}
::placeholder{
    font-family: 'Sora-Medium';
    font-size: 18px;
}
input, textarea {
    border: none;
    outline: none;
    background: #ffffff1a;
    height: 45px;
    padding: 0 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s linear;
}
textarea{
    padding: 10px 15px;
    height: 100px;
    resize: none;
}
input:focus, textarea:focus{
    box-shadow: 0 0 0px 2px var(--theme-color);
    background-color: #0055fe30;
}
.mssg_send {
    display: flex;
    justify-content: flex-end;
    padding-top: 5px;
}
.mrgbtm{
    margin-bottom: 0;
}
footer {
    display: flex;
    align-items: center;
    padding: 25px 0;
    justify-content: space-between;
}
.foot_lft {
    color: #ffffff80;
}
.hide{
    display: none;
}
/*Responsive*/

@media screen and (min-width: 1720px) {
    .parent_sec{
        max-width: 60%;
    }
}
@media screen and (max-width: 1420px) {
    .parent_sec{
        max-width: 90%;
    }
}
@media screen and (max-width: 1280px) {
    .intr_t2 br{
        display: none;
    }
    .intro_txt{
        width: 55%;
    }
    .intro_txt h1{
        font-size: 60px;
    }
    .intr_t1{
        font-size: 30px;
    }
}
@media screen and (max-width: 1180px) {
    .quick_look{
        gap: 20px;
    }
    .template_cont h3{
        font-size: 20px;
    }
    .recnt_wrk_cont{
        gap: 50px;
    }
}
@media screen and (max-width: 1072px) {
    .intro_txt h1{
        font-size: 50px;
    }
}
@media screen and (max-width: 992px) {
    .intro_part {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 100px 0px;
        gap: 80px;
    }   
    .intro_txt {
        width: 80%;
        text-align: center;
        align-items: center;
    }   
    .intro_txt h1 br {
        display: none;
    }   
    .quicklook_card {
        min-width: 300px;
        max-width: 45%;
    }   
    .quick_look {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }  
    .service_title {
        font-size: 24px;
    }  
    .Getin_touch {
        flex-direction: column;
        gap: 50px;
    }   
    .short_mssg {
        text-align: center;
    }    
    .contact_info {
        justify-content: center;
    }   
    .send_note {
        width: 65%;
    }   
    .exp_info {
        flex-direction: column;
        align-items: center;
    }  
    .exp_card {
        max-width: 90%;
        width: 90%;
    }   
    .recnt_wrk_cont {
        flex-direction: column;
        align-items: center;
    }  
    .work_template {
        width: 75%;
        max-height: 600px;
    }
    .qltyser_cont {
        flex-direction: column;
        align-items: center;
    }
    .qltyser_icon {
        width: 70%;
        opacity: 0.5;
    }
    .qltyser_card {
        background: linear-gradient(45deg, #000000d1, #0055fe30);
    }
    .qltyser_text {
        width: 80%;
    }
    .profile_pic {
        width: 80%;
        justify-content: center;
    }
}
@media screen and (max-width: 600px){
    .quicklook_card {
        max-width: 100%;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    header .hright_part {
        position: absolute;
        top: 70px;
        right: 20px;
    }
    .intro_part {
        padding-top: 150px;
    }
    .sec_heading {
        font-size: 30px;
    }
    .sub_para br {
        display: none;
    }
    .sub_para {
        max-width: 90%;
        font-size: 16px;
    }
    .sec_intro {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .work_template {
        width: 100%;
        max-height: 500px;
        padding: 15px;
    }
    .skill_cont {
        padding: 20px;
    }
    .send_note, .qltyser_text, .exp_card, .intro_txt{
        width: 100%;
        max-width: 100%;
    }
    footer {
        flex-direction: column;
        gap: 20px;
    }
    .foot_lft {
        order: 2;
    }
    .intro_txt h1 {
        font-size: 40px;
    }  
    .intr_t1 {
        font-size: 25px;
    }   
    .intr_t2 {
        font-size: 16px;
    }
}
