*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6,p,ul,ol,li,a{
    padding: 0;
    margin: 0;
    line-height: normal;
    text-decoration: none;
    list-style: none;
}

input,textarea,select{
    outline: none;
}





:root{
    --color-bg: #212121;
    --color-surface: #181818;
    --color-text-primary: #ffffff;
    --color-text-secondary: #898989;
    --color-accent: #571be2;
}




body{
    font-family: "Poppins", sans-serif;
    background-color: var(--color-bg);
}



/* header start */
.site_header{
    background-color: var(--color-surface);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.site_header .header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site_header .header_wrapper .header_left_area .header_logo_area .logo{
    color: var(--color-text-primary);
    font-size: 30px;
    font-weight: bold;
}

.site_header .header_wrapper .header_center_area .header_menu_area .menu{
    display: flex;
    align-items: center;
    gap: 20px;
}

.site_header .header_wrapper .header_center_area .header_menu_area .menu li{
    position: relative;
}

.site_header .header_wrapper .header_center_area .header_menu_area .menu li a{
    color: var(--color-text-primary);
    font-size: 15px;
}


.site_header .header_wrapper .header_right_area .header_right_area_btn_wrapper .header_right_area_btn{
    background-color: var(--color-bg);
    border: 1px solid #424242;
    color: white;
    font-size: 15px;
    padding: 10px 25px;
    border-radius: 5px;
}

.header_overlay{
    display: none;
}

.toggle_button{
    display: none;
}
/* header end */


/* hero start */
.hero{
     background: var(--color-bg);
}

.hero .hero_wrapper{
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.hero .hero_wrapper .hero_right_area .hero_image_area{
    text-align: center;
}

.hero .hero_wrapper .hero_right_area .hero_image_area .hero_image{
    width: 300px;
}

.hero .hero_wrapper .hero_left_area .hero_content_area{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero .hero_wrapper .hero_left_area .hero_content_area h2{
    font-size: 80px;
    line-height: 80px !important;
    padding: 0;
    margin: 0;
    color: var(--color-text-primary);
}

.hero .hero_wrapper .hero_left_area .hero_content_area h3{
    color: var(--color-text-primary);
}

.hero .hero_wrapper .hero_left_area .hero_content_area p{
    color: var(--color-text-secondary);
}

.hero .hero_wrapper .hero_left_area .hero_content_area .hero_button_wrapper{
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero .hero_wrapper .hero_left_area .hero_content_area .hero_button_wrapper .hero_social_area ul{
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero .hero_wrapper .hero_left_area .hero_content_area .hero_button_wrapper .hero_social_area ul li a{
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border-radius: 5px;
    height: 40px;
    background-color: var(--color-text-primary);
    color: var(--color-surface);
}

.hero .hero_wrapper .hero_left_area .hero_content_area .hero_button_wrapper .hero_button{
    background-color: var(--color-surface);
    border: 1px solid #424242;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    display: inline-block;
}
/* hero end */


/* counter start */
    .counter{
    padding: 100px 0;
    background: url(../img/service_bg.PNG);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;

    }

.counter .counter_wrapper{
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 20px;
}

.counter .counter_wrapper .count_box{
    text-align: center;
     background: var(--color-surface);
    padding: 30px;
    border-radius: 5px;
}

.counter .counter_wrapper .count_box .count_number{
    font-size: 40px;
    color: var(--color-text-primary);
    font-weight: bold;
}

.counter .counter_wrapper .count_box .count_title{
    font-size: 15px;
    color: var(--color-text-secondary);
}
/* counter end */


/* about start */
.about{
    padding: 80px 0;
}

.about .about_wrapper{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 30px;
}

.about .about_wrapper .about_left{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about .about_wrapper .about_left .title{
    color: var(--color-text-primary);
    font-size: 30px;
    margin-bottom: 20px;
}

.about .about_wrapper .about_left h2{
    font-size: 25px;
    color: var(--color-text-primary);
}

.about .about_wrapper .about_left p{
    font-size: 14px;
    color: var(--color-text-secondary);
}


.about .about_wrapper .about_left .about_boxex{
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
}

.about .about_wrapper .about_left .about_boxex .about_box{
     background: var(--color-surface);
    padding: 20px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
}

.about .about_wrapper .about_left .about_boxex .about_box .icon{
    background-color: var(--color-text-primary);
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-surface);
}

.about .about_wrapper .about_left .about_boxex .about_box .about_box_title{
    font-weight: bold;
}

.about .about_wrapper .about_left .about_boxex .about_box .about_box_subtitle{
    font-size: 12px;
}

.about .about_wrapper .about_right .skill_area{
    background-color: var(--color-surface);
    padding: 20px;
    border-radius: 10px;
}

.about .about_wrapper .about_right .skill_area .skill_title{
    color: var(--color-text-primary);
    font-size: 30px;
    margin-bottom: 20px;
}

.about .about_wrapper .about_right .skill_area .progressbar_wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about .about_wrapper .about_right .skill_area .progressbar_wrapper .progressbar{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about .about_wrapper .about_right .skill_area .progressbar_wrapper .progressbar .progressbar_top{
    color: white;
    display: flex;
    justify-content: space-between;
}

.about .about_wrapper .about_right .skill_area .progressbar_wrapper .progressbar .progress_box{
    background-color: var(--color-bg);
    width: 100%;
    height: 7px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about .about_wrapper .about_right .skill_area .progressbar_wrapper .progressbar .skill_name{
    color: var(--color-text-primary);
}

.about .about_wrapper .about_right .skill_area .progressbar_wrapper .progressbar .progress_box .progress_box_over{
    background-color: var(--color-text-primary);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;

}
/* about end */

/* services start */
.services{
    padding: 100px 0;
    background: url(../img/service_bg.PNG);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.services .title_area{
    text-align: center;
    margin-bottom: 20px;
}

.services .title_area .title{
    color: var(--color-text-primary);
    font-size: 20px;
    font-weight: bold;
}

.services .title_area .subtitle{
    color: #fff;
    font-size: 50px;
    font-weight: bold;
}

.services .title_area .description{
    color: #898989;
}

.services .services_box_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.services .services_box_wrapper .services_box{
        background: var(--color-surface);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.services_box {
  transition: transform 0.3s ease;
}

.services_box:hover {
  animation: bounce 0.6s;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-15px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}


.services .services_box_wrapper .services_box .icon{
    font-size: 40px;
    color: var(--color-text-secondary);
}

.services .services_box_wrapper .services_box .services_title{
    font-size: 20px;
    font-weight: bold;
    color: var(--color-text-primary);
}

.services .services_box_wrapper .services_box .services_subtitle{
    font-size: 16px;
    color: var(--color-text-secondary);
}
/* services end */


/* portfolio start */
.portfolio{
    padding: 80px 0;
}

.portfolio .section_title_area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.portfolio .section_title_area .title{
    font-size: 70px;
    color: var(--color-text-primary);

}

.portfolio .section_title_area .title_line {
    display: flex;
    gap: 10px;
}

.portfolio .section_title_area .title_line .line{
    background-color: var(--color-text-primary);
    width: 30px;
    height: 1px;
}

.portfolio .section_title_area .title_line .line:nth-child(2){
    background-color: var(--color-text-secondary);
}

.portfolio .portfolio_wrapper .portfolio_boxes{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box{
    border-radius: 10px;
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box .portfolio_title{
    color: var(--color-text-primary);
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box .portfolio_image{
    width: 100%;
    height: 100%;
    transition:  all linear .3s;
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box .portfolio_image_area{
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box .portfolio_image_area .portfolio_overlay{
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition:  all linear .2s;
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box .portfolio_image_area .portfolio_button_wrapper{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:  all linear .2s;
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box .portfolio_image_area .portfolio_button_wrapper .portfolio_btn{
        background-color: var(--color-bg);
    border: 1px solid #424242;
    padding: 7px 10px;
    color: white;
    border-radius: 5px;
    transform: scale(1.2);
    opacity: 0;
    transition:  all linear .2s;
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box .portfolio_image_area:hover .portfolio_image{
    transform: scale(1.08);
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box .portfolio_image_area:hover .portfolio_overlay{
    background-color: rgba(0, 0, 0, 0.466);
}

.portfolio .portfolio_wrapper .portfolio_boxes .portfolio_box .portfolio_image_area:hover .portfolio_btn{
        transform: scale(1);
    opacity: 1;
}


/* portfolio end */


/* contact start */
.contact{
    padding-bottom: 100px;
}

.contact .contact_wrapper{
    display: grid;
    grid-template-columns: 50% 50%;
    background-color: var(--color-surface);
    padding: 30px;
    border-radius: 10px;
}

.contact .contact_wrapper .contact_address_area{
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
}

.contact .contact_wrapper .contact_address_area ul{
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.contact .contact_wrapper .contact_address_area ul li{
    color: var(--color-text-primary);
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 15px;
    list-style-type: none;
}

.contact .contact_wrapper .contact_address_area ul li .icon{
    background-color: var(--color-text-primary);
    color: var(--color-surface);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 5px;
}

.contact .contact_wrapper .contact_address_area ul li .text{
    font-weight: bold;
} 

.contact .contact_wrapper .contact_form_area{
    width: 100%;
    padding: 30px;
}

.contact .contact_wrapper .contact_form_area .contact_form_wrapper form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact .contact_wrapper .contact_form_area .contact_form_wrapper .form_controll_wrapper input{
    display: block;
    width: 100%;
    background-color: var(--color-bg);
    border: none;
    padding: 10px;
    color: var(--color-text-primary);
    border-radius: 3px;
    font-size: 13px;
}

.contact .contact_wrapper .contact_form_area .contact_form_wrapper .form_controll_wrapper input::placeholder{
    color: var(--color-text-primary);
}

.contact .contact_wrapper .contact_form_area .contact_form_wrapper .form_controll_wrapper textarea{
    display: block;
    width: 100%;
    height: 100px;
    background-color: var(--color-bg);
    border: none;
    padding: 10px;
    color: var(--color-text-primary);
    border-radius: 3px;
    font-size: 13px;
}


.contact .contact_wrapper .contact_form_area .contact_form_wrapper .form_controll_wrapper textarea::placeholder{
    color: var(--color-text-primary);
}

.contact .contact_wrapper .contact_form_area .contact_form_wrapper .form_controll_wrapper button{
    display: block;
    width: 100%;
    background-color: var(--color-text-primary);
    padding: 10px;
    border: none;
    border-radius: 3px;
    color: var(--color-bg);
    font-weight: bold;
}
/* contact end */


/* my work start */
.my_work{
    padding: 100px 0;
}

.my_work .my_work_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.my_work .my_work_wrapper .my_work_box{
    display: flex;
    gap: 20px;
}

.my_work .my_work_wrapper .my_work_box .my_word_btn{
    background-color: var(--color-text-primary);
    color: var(--color-surface);
    padding: 15px 35px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 30px;
}
/* my work end */

/* footer start */
.footer{
    background-color: var(--color-surface);
    padding: 25px 0;
}

.footer .copyright_text{
    text-align: center;
    color: var(--color-text-primary);
}
/* footer end */




#cursor{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

/* click effect */
#cursor.active{
    transform: scale(1.6);
    opacity: 0.6;
}



.elastic_area{
    width: 100%;
    height: 300px;
    position: relative;
}

svg{
    width: 100%;
    height: 100%;
}

path{
    stroke: #fff;
    stroke-width: 3;
    fill: transparent;
}












.qr_code_wrapper{
    height: 100vh;
    display: flex;
    /* justify-content: center; */
    /* align-items: center;+00 */
    flex-direction: column;
}


.qr_code_wrapper .qr_code_form_area form .qr_code_controll_wrapper{
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.qr_code_wrapper .qr_code_form_area form .qr_code_controll_wrapper textarea{
    background-color: white;
    border: 1px solid #EAEAEA;
    padding: 20px;
    outline-color: #4F46E5;
}


.qr_code_wrapper .qr_code_form_area form .qr_code_controll_wrapper button{
    background-color: #4F46E5;
    color: white;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
}


.qr_code_wrapper .qr_code_form_area form{
    background-color: #F9FAFB;
    padding: 20px;
    border: 1px solid #EAEAEA;
}

.qr_code_wrapper .qr_code_row{
    display: grid;
    grid-template-columns:  auto auto;
}


.qr_code_wrapper .qr_code_title{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}