@import url("https://fonts.googleapis.com/css?family=Be+Vietnam+Pro:wght@300&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "be vietnam pro" , sans-serif;
}

:root{
    --bgorange: rgb(147, 108, 0);
}

#wrapper{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.container{
    width: 100%;
    /* mereko container beech mai chahiye hai */
    margin: 0 auto;
}

/* sari cheeje stright line mai chahiye hai */
.navigation_bar{
    display: flex;
    /* dono items ko extreame mai kerna hai */
    justify-content: space-between;
    background-color: #141135;
    border-radius: 0 0 10px 10px;
    /* vertically bi center mai chahiye */
    align-items: center;
    padding-top: 1rem;
}
/* now logo and logo-text */
/* me want this come in single line */
.logo{
    width: 80px;
}
.logo_container{
    display: flex;
    /* when we want our content in single line */
    justify-content: baseline;
    align-items: center;
}
.logotext1{
    width: 70px;
    font-size: 80px;
    margin-left: 4rem;
    color: wheat;
    font-family: 'Ubuntu', sans-serif;

}
/* given properties */
.logotext{
    margin-top: 27px;
    margin-left: -1.5rem;
    font-size: 40px;
    color: wheat;
    font-family: 'Ubuntu', sans-serif;
    letter-spacing: 2px;
}
/* nav-items is also want in single line  */
.nav-item{
    display: flex;
    gap:2rem;
     /* given properties */
    padding: 0 4rem;
}

.nav-item div{
    /* given properties */
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    color: white;

}
.nav-item div a{
    color: rgb(255, 255, 255);
}
/* underline hatani hai toh ye sari cheeje text decoration mai hoti hai 
aur ye sab anchor tag mai hona  */
a{
    text-decoration: none;
}
/* hover kerne per bold ho raha */
.nav-item div a:hover{
    transition: 0.3s;
    font-weight: bold;
    /* when we have to de something smooth then use transition */
    color: wheat;
}


/* convert in flex */
.hero-section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* given properties */
    gap: 5rem;
    margin: 4rem auto;
    padding: 5 1rem;
    padding-bottom:  8rem;
}

.faded-text{
    position: absolute;
    /* matlab ye hero section jo iska parent hai uske relate hai */
    user-select: none;
    font-size: 7rem;
    color: #b0cbf8;
    bottom: -13%;
    left: 0%;
    font-weight: bold;
    transition: all 3s;
}

.hero-section-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;

}
/* heading */
.hero-section-heading{
    font-size: 35px;
    color: #343d68;
    font-weight: 500;
}
.role{
    /* when you use script */
    color: #4e45d5;
    font-weight: 800;
}

.hero-section-sub-heading{
    font-size: 45px;
    line-height: 45px;
}

.hero-section-description{
    margin-top: 1rem;
    width: 70%;
    font-weight: 500;
}

/* button  */
.box{
    width: 25%;
    border: 0;
    background-color: cornflowerblue;
    padding: 0.8rem 2.3rem;
    color: white;
    font-size: 18px;
    box-shadow: 5px 5px 7px 0px #0000003f;
    /* then its should be non static */
    position: relative;
    z-index: 1;
}
.box::before{
    /* content: "abcd"; */
    content: "";
    background-color: blue;
    /* button ko fill kerna chahte hai matlab overlap
    kerna chahte hai so we use  */
    position: absolute;
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition:all 1s;
    /* black bali layer ka z index kaam kerna padega */
    z-index: -1;
}
.box:hover::before{
    transform: scaleX(1);
     /* cursor: crosshair; */
}

/* .box::after{
    content: "daaf";
} */



/* hero part ka right section */
.hero-section-right{
    position: relative;
    /* width:  */

}

/* isko kerne per sari image main photo ke uper aa jayegi */
.absolute{
    position:absolute; 
}
.user-image{
    /* white patti  */
    padding: 2.5rem;
    filter: grayscale(1);
    transition: all 1s;/* jaldi jaldi dot move hoge agar 1sec kiya*/
    animation: scaleImage 5s linear infinite;
}
/* ?we have to change the z index of an image 
to we can overlap other image */
.user-image img{
    z-index: -2;
}
@keyframes scaleImage{
    0%{
        filter: grayscale(1);
        transform: scale(1);
    }
    50%{
        transform: scale(1.04);
        filter: grayscale(0);
        box-shadow: 3px 3px 10px rgb(109, 109, 109);
    }
    100%{
        transform: scale(1);
        filter: grayscale(1);
    }
}

/* 9 dots uper jate aur niche jate */
.icon-dots{
    z-index: 9;
    bottom: -1rem;
    right: 0;
    /* for movement  */
    animation:dotsanimation  ;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}
@keyframes dotsanimation{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}
/* now icon cube */
/* cube rotate bi ker raha hai aur y direction mai move bi ker raha hai */
.icon-cube{
    z-index: 9;
    top: -0.8em;
    right: 0;
    animation:cubeanimation ;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes cubeanimation{
    0%{
        /* y axis mai dumana hai */
        transform: rotateY(180deg) translateY(0px);
    }
    50%{
        transform: rotateY(0) translateY(-12px);
    }
    100%{
        transform: rotateY(180deg) translateY(0px); 
    }
}
/* now circle */
.icon-circle{
    z-index: 9;
    bottom: 0;
    left: 0;
    animation-name:circleanimation ;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes circleanimation{
    /* 0%{

        transform: translateY(0px) translateX(0px) ;
    }
    50%{
        transform: translatez(-25px) translateX(-25px);
    }
    100%{
        transform: translateY(0px) translateX(0px);
    } */
    /* 0%{
        left: 0;
        bottom: 0;
    } */
    50%{
        left: 5%;
        bottom: 10%;
    }
    /* 100%{
        left: 0;
        bottom: 0;
    } */
}
/* zigzag */
.icon-zigzak{
    z-index: 9;
    top: 1.5em;
    left: -0.3em;
    animation-name:zigzakanimation ;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes zigzakanimation{
    
    50%{
        left: 5%;
        top: 2%;
    }
}
/* plus */
.icon-plus{
    z-index: 9;
    top: -0.8rem;
    left: 50%;
    animation-name:plusanimation ;
    animation-duration: 5s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
}
@keyframes plusanimation{
    50%{
        top: 3%;
        left: 48%;
    }
}




/* project section */

.project_section{
    background-color: wheat;
    margin-top: 4rem;
}
/* page header */
.page_heading{
    color: var(--bgorange);
    font-size: 90px;
    text-align: center;
    padding-top: 30px;
}
/* ?cards yahi aayege */
.project_container{
    width: 1220px;
    /* center mai palce kerna hai */
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    /* cards ke beech mai gap  */
    gap: 120px;
}


.project_card{
    /* hamare card ne pure project section ki 90% width khai hai */
    width: 90%;
    height: 550px;
    background-image: url(project1.jpg);
    background-size: cover;
    /*apke space ko fill kerne ke liye vahi image bar bar aa jati hai  */
    /* background-repeat:no-repeat ; */
    position: relative;
    box-shadow:0px 0px 40px #1f1f1f ;
} 
#Project1{
    /* kyuki left right align kerna hai */
    
    background-image:url(project1.jpg);
}
#Project2{
    margin-left: 120px;
    background-image:url(project2.jpg);
}
#Project3{
    background-image:url(project3.jpg);
}
#Project4{
    margin-left: 120px;
    background-image:url(/project4.jpg);
}
/* ab muje card ko relative kerna padega aur jo content hai use absolute 
   kerna padega */

/* black tint */
/* using before and after  */
/* mai before ka use kerke mai scliding window banate hai
    aur after ka use kerke mai tint lagauga */

    /* black tint */
.project_card::after{
    content:"";
    /* to overlap */
    position: absolute;
    /* we want that after cover tha whole image so we do bottem things*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1f1f1f9a;
    z-index: 0;
    /* avi scale ker diya aage jaker ye kaam kerega */
    /* transform: scaleX(1); */
}

/* scliding */
.project_card::before{
    content: "";
    position: absolute;
    /* we want that after cover tha whole image so we do bottem things*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #26010151,#00003d4a,#012d154f);
    /* hover kerne pe dikhana chahiye 
    opacity nahi kiya kyuki scliding kerna hai*/
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s;
}
.project_card:hover::before{
    transform: scaleX(1);
}

/* now project number */

.project_number{
    /* uper aa raha card ke then overlap property  */
    position: absolute;
    font-size: 200px;
    font-weight: 600;
    color: white;
    /* to see the 01 */
    z-index: 2;
    display: none; 
}
.project_card:hover .project_number{
    display:block; 
}
/* creating the class project number right for the numbers which are in right side */
.project_number_right{
    right: -40px ;
    top: -45px;
}
/* creating the class project number left for the numbers which are in left side */
.project_number_left{
    left: -40px ;
    top: -45px;
}


/* now project_contant */
.project_contant{
    /* overlapping the contant */
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 3;
    color: white;
    padding: 2em;
    bottom: 20%;
    gap: 1em;
    transition: all 0.4s;
}


/* contant ko bi left right mai shift kerna hai  */
.project_contant_left{
    left: 10%;
}
.project_contant_right{
    right: 1%;
}

/* icon bala part */
/* fix the width and height aur flex warp ker do jise agar icon ak line mai nahi aa paye toh next line 
mai aa jayege */
.project_skills_container{
    width: 60%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    
}
.project_skills{
    width: 40px;
}

/* project_heading section */
#project_head {
    font-size:50px ;
    font-weight: bold;
    line-height: 3rem;
}
.project_subheading{
    width: 70%;
    font-size: 16px;
    font-style: italic;
}
.btn_group{
    display: flex;
    gap:0.9rem ;
    align-items: center;
}
.btn_project:hover{
   border: none; 
}

/* .icon{
    width: 100px;
    cursor: pointer;
    color:white;
    font-size: 35px;
}
.icon:hover{
    color: var(--bgorange);
} */


/* card ke uper hover kerne se project content scale hoga */
.project_card:hover .project_contant{
    transform: scale(1.1);

}

/* making over website responsive later */

.skill_container{
    position: relative;
    display: flex;
    padding: 5rem;
    margin: 8rem 7rem;
    gap: 10%;
    height: 600px; 
}

.skill_container_left{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.skill_container_right{
    width: 30%;
    height: 8rem;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 2rem;

}

#skill_fade_text{
    position: absolute;
    font-size: 15em;
    font-style: bold;
    color: #b0cbf8;
    bottom: -32.6%;
    right: 5%;
    user-select: none;
    /* overflow-y: hidden ; */
}

/* animation */
.blob_style{
    width: 70rem;
    position: absolute;
    top: -150%;
    right: -60%;
    /* transform: translateX(-50%,-50%); */
    animation: blobanimation 8s linear infinite;
    z-index: -1;
    /* opacity: 0.5; */
}
@keyframes blobanimation{
    50%{
        top: -80%;
        right: -10%;

    }
}

/* icons */
.skill_logo{
    width: 80px;
    transition: all 0.5s;
}
.skill_logo:hover{
    transform: scale(1.2);
}

/* abb left part */
.skill_heading{
    font-size: 50px;
    font-style: bold;
    color: var(--bgorange);
    line-height: 50px;
}
.caps{
    font-size: 90px;
}
.skill_subheading{
    margin-top: 1rem;
    width: 85%;
    /* puri width le leta hai */
    text-align: justify;
}
.techstack{
    font-size: 20px;
    font-weight: bold;
    color: #8f8e8e;

}
.skill_subheading p{
    margin: 15px 10px;
    line-height: 25px;
    color: rgb(145, 145, 145);
    font-size: 20px;
}


/* contact section */
.contact_us_container{
    width: 100%;
    background-color: wheat;
}
.contact_us_heading{
    font-size: 5em;
    color: brown;
    padding-top: 2rrem;
}
.contact_us_subheading{
    font-size: 3rem;
    color: #343d68aa;
    text-transform: capitalize;
}
.contact_us_form{
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 70%;
    margin: 2rem 5rem ;
}
.form__field_container{
    width: 100%;

}
.form_field{
    width: 100%;
    height: 42px;
    padding: 0 2rem;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px #000000;
    font-weight: 500;
    border: none;
    margin-top: 17px;
}
.formfield_textarea{
    height: auto;
    padding-top: 1rem ;
}

#sumit_btn{
    width: 15rem;
    border: none;
    font-size: 1.4rem;
    margin: 1rem 0;
}
#sumit_btn:hover{
    scale: 0.9;
    transition: 0.8s;
}
footer{
    position: relative;
    margin-top: -1px;
    background-color: rgb(63, 63, 116);
    padding: 5rem;
}
.footer_wapper{
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    justify-content: space-between;
    align-items: center;
}
.footer_faded_text{
    position: absolute;
    left: 0;
    bottom: 0;
    color:#535c87 ;
    user-select: none;
    font-size: 5em;
}
.link_wrapper{
    display: flex;
    gap: 1.2rem;
    
}
.link_wrapper div a{
    color: white;
    text-decoration: none;
    transition: all 0.6s;
   
}
.link_wrapper div a:hover{
    color: red;
}
.icon_wrapper{
    display: flex;
    gap: 1rem;
    
}
#icones{
    color: white;
    font-size: 2rem;
    transition: all 0.4s;
}
#icones:hover{
    color: red;
    cursor: pointer;
}

/* ye project section ke icons ka hai  */
.icon{
    color: white;
    font-size: 2rem;
    transition: all 0.4s;
}
.icon:hover{
    color: red;
    cursor: pointer;
}