body {
    font-family: verdana;
    box-sizing: border-box;
}
* {
    margin: 0px;
    padding: 0px;
}
.main {
    padding-bottom: 50px;
    background-color: rgb(7, 9, 44);
    width: 100%;
}
.nav {
    width: 100%;
    padding-top: 20px;
    height: 100px;
    background-color: rgb(7, 9, 44);
}
.in-nav {
    display: flex;
    height: 100%;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}
.logo {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid #fff;

}
.nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-item li {
    list-style: none;
    margin: 0px 25px;
    padding: 8px 10px;
}

.nav-item li:hover {
    outline: 1px solid #fff;
    padding: 8px 10px;
    border-radius: 20px;
}

.nav-item li a {
    color: #fff;
    letter-spacing: 1px;
    font-size: 17px;
    text-decoration: none;
}
.cross{
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    display: none;
}
.menu-list{
    width:100%;
    display: none;
    background-color: rgb(17, 13, 13);
    position: absolute;
    top:20;
    left:0;
    right: 0;
    z-index: 1;
    height: 60vh;
}
.menu-item{
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.menu-item li{
    padding: 15px 0px;
    font-size: large;
}
.menu-item li a{
    color:#fff;
    text-decoration: none;
}
.menu-list li a:hover{
    color: crimson;
}
button {
    padding: 13px 30px;
    background-color: transparent;
    border-radius: 25px;
    outline: #fff;
    cursor: pointer;
    font-size: 17px;
    word-spacing: 1px;
    letter-spacing: 1px;
    font-weight: 600;
    background-color: rgb(255, 181, 78);
}
button:hover {
    background-color: transparent;
    outline: 1px solid #fff;
    color: #fff;
}
.pop-up{
    position: absolute;
    display: none;
    right: 30px;
    /* border: 3px solid #fff; */
    padding:50px;
    background-color:rgb(0, 0, 0);
    box-shadow: 10px 10px 30px 0.6px rgb(15, 17, 66);
    border-radius: 5px;
}
.pop-up .design{
    width:25px;
    background-color: coral;
    height: 25px;
    /* border-top: 100px; */
    border-top-right-radius: 80%;
    border-top-left-radius: 80%;
    /* border-top-width: 10px; */
    position: absolute;
    top:-25px;
    right:100px
}
.pop-up:nth-child(3) .call-copy span{
    padding-bottom: 20px;
    /* color:red; */
    color:#fff;
    border: 1px solid #fff;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 50%;
text-align: center;
}
.pop-up .call-copy{
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;

}
.pop-up .pop-cross{
    position: absolute;
    right: 15px;
    color:#fff;
    cursor: pointer;
    font-size: 25px;
    top:15px
}
.pop-up a{
    text-decoration: none;
    color:#fff;
}
.or{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:5px;
}
.or div{
    width:100%;
    height: 5px;
    /* background-color: black; */
    background-color: crimson;
}
.or span{
    color:#fff;
}
.menu {
    color:#fff;
    font-size: 25px;
    display: none;
    cursor: pointer;
}
.main2 {
    width: 90%;
    margin: 10% auto 0px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.main2 .profile-photo {
    justify-content: center;
    align-items: center;
    display: flex;
    flex:0.8;
    /* border: 1px solid #fff; */

}
.profile-i{
    border: 5px solid rgb(255, 181, 78);
    border-radius: 50%;
    width: 400px;
    height: 400px;
}

.main2 .profile-photo img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    object-fit:cover;

}

.profile-content {
    flex-direction: column;
 
    /* border: 1px solid #fff; */
    /* line-height: 60px; */
    flex:1;
    /* display: flex;
    align-items: flex-end;
    justify-content: end; */
}

.profile-content span {
    font-size: 55px;
    /* width:fit-content; */
    line-height: 70px;
    color: #fff
}

.profile-content span span {
    color: rgb(255, 181, 78);
    overflow: hidden;
    font-weight: 600;
    animation:
        one 3.5s steps(40, end),
        two 0.75s step-end infinite;
}

@keyframes one {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.profile-content h3 {
    font-size: 30px;
    margin-top: 30px;
    color: #fff;
    text-align: left;
}

.main3 {
    display: flex;
    width: 95%;
    align-items: center;
    justify-content: space-around;
    margin: 8% auto;
    flex-wrap: wrap;
}

.main3 h3 {
    color: #fff;
    font-size: 25px;
    padding-top: 20px;
}

.main3-box {
    flex: 1;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.phone {
    /* margin: 0px 10px; */
    height: 180px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(203, 133, 34);
    border-radius: 50%;
    border: 5px solid #fff;
}

.phone img {
    height: 30%;
    width: 30%
}

.phone:hover {
    background-color: #fff;
    border: 5px solid rgb(230, 157, 55)
}

.about-s {
    display: flex;
    /* align-items: center; */
    justify-content: space-around;
    width: 90%;
    margin: 10% auto
}

.about-s1 {
    width: 40%;
    /* border: 1px solid black; */
    line-height: 30px;
}

.about-s1 span {
    font-size: 45px;
}

.about-s1 p {
    line-height: 25px;
    margin-top: 30px;
    font-size: 15px;
}

.about-s button {
    padding: 14px 30px;
    margin-top: 25px;
    background-color: transparent;
    border: 1px solid #fff;
    background-color: rgb(255, 181, 78);
    /* color:#fff; */
    cursor: pointer;
}

button:hover {
    background-color: rgb(7, 9, 44);
    color: #fff;
}

.about-s2 {
    width: 45%;
    /* border: 1px solid black; */
    line-height: 35px;
}

.about-s2 span {
    font-size: 45px;
}

.html-bar {
    height: 15px;
    width: 100%;
    background-color: rgb(20, 25, 106);
}

.in-html-bar {
    width: 80%;
    height: 100%;
    background-color: rgb(255, 181, 78);
}

.in-css-bar {
    width: 65%;
    height: 100%;
    background-color: rgb(255, 181, 78);
}

.in-js-bar {
    width: 50%;
    height: 100%;
    background-color: rgb(255, 181, 78);
}

.in-sql-bar {
    width: 35%;
    height: 100%;
    background-color: rgb(255, 181, 78);
}

.in-py-bar {
    width: 75%;
    height: 100%;
    background-color: rgb(255, 181, 78);
}
.project2{
    background-color: black;
}
.work {
    width: 90%;
    background-color: #fff;
    margin: 5% auto;
}

.work h3 {
    font-size: 35px;
    color: black;
    letter-spacing: 1px;
    /* margin: 10px 0px; */
    padding-bottom: 50px;
    text-align: center;
}

.in-work {
    display: flex;
    /* margin: 20px 0px; */
    flex-direction: row;
    justify-content: center;
    /* flex-wrap: wrap; */
    align-items: center;
}

.work-box {
    position: relative;
    width: 630px;
    height: 450px;
    /* border-radius: 10px; */
    border: 0.3px solid gray;
    cursor: pointer;
    transition: 1s;
}

.work-box:hover {
    transform: scale(0.9);
}

.work-box img {
    position: relative;

    width: 100%;
    object-fit: cover;
    height: 100%;
    /* border-radius: 10px; */
}

.work-box .work-about {
    background-color: rgb(7, 9, 44);
    height: 100%;
    opacity: 0.7;
    position: absolute;
    bottom: 0%;
    width: 100%;
    line-height: 30px;
}

.work-about2 {
    /* background-color: red; */
    position: absolute;
    bottom: 5%;
    padding: 5px 50px;
}

.work-about h4 {
    text-align: center;
    letter-spacing: 2px;
    font-size: 30px;
    color: #fff;
    padding-bottom: 30px;
}

.work-about p {
    /* text-align: center; */
    color: #fff;
    line-height: 25px;
    padding-bottom: 30px;
}

.work-about-btn {
    text-align: center;
    padding-bottom: 20px;
}

.work-btn {
    width: 200px;
    margin: 50px auto;
}

.work-btn button {
    padding: 15px 30px;
    border: none;
    background-color: rgb(255, 181, 78);
    /* color:#fff; */
    border-radius: 25px;
    font-size: 17px;
    cursor: pointer;
}

.work-btn button:hover {
    background-color: rgb(7, 9, 44);
    color: #fff;
}

.footer {
    width: 100%;
    background-color: rgb(7, 9, 44);
    /* height: 50vh; */
    padding: 80px 0px 50px 0px;
}

.in-footer {
    display: flex;
    width: 90%;
    margin: auto;
    /* align-items: center; */
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    height: 100%;
}

.f-about {
    /* border: 1px solid #fff; */
    height: 50%;
    flex: 0.5;
    padding: 20px;
    color: #fff;
}

.f-about h1 {
    font-size: 22px;
    padding-bottom: 20px;
}

.f-about p {
    font-size: 16px;
    line-height: 25px;
}

.address {
    /* border: 1px solid #fff; */
    height: 50%;
    padding: 20px;
    flex: 0.5;
    display: inline-block;
    /* align-items: flex-start; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* line-height: 30px; */
}

.address h1 {
    font-size: 22px;
    letter-spacing: 1px;
    /* font-weight: ; */
    word-spacing: 1px;
    color: #fff;
    padding-bottom: 20px;
}

.address address {
    /* margin-top: 20px; */
    line-height: 30px;
    font-size: 16px;
    color: #fff
}

.in-email2 {
    /* width:70%; */
    flex: 1;
    height: 50%;
    /* border:1px solid #fff; */
    padding: 20px;
}

.in-email2 h1 {
    font-size: 22px;
    color: #fff;
    padding-bottom: 20px;
}

.email2 {
    display: flex;
    align-items: center;
    width: 75%;
    /* margin:auto; */
    /* height: 70%; */
    /* border: 1px solid #fff; */
    /* padding: 20px; */
    position: relative;
}

.email2 p {
    color: #fff;
}

.email2 input {
    width: 100%;
    padding: 11px 10px;
    outline: none;
    border: none;
    /* color:#fff */
}

.email2 i {
    position: absolute;
    right: 6%;
    /* color:#fff */
    /* background-color: blue; */
    cursor: pointer;
}

.follow {
    flex: 0.7;
    height: 50%;
    padding: 20px;
    display: block;
    flex-direction: column;
    line-height: 30px;
    justify-content: end;
    align-items: center;
    /* border: 1px solid #fff; */
    /* margin-left: 20px; */
}

.follow h1 {
    color: #fff;
    font-size: 22px;
    padding-bottom: 20px;
}

.follow i {
    color: #fff;
    font-size: 25px;
    /* margin-top: 20px; */
    margin-right: 10px;
    background-color: rgb(49, 43, 43);
    border-radius: 3px;
    box-shadow: 2px 2px 5px 0.3px rgb(28, 27, 27);
    padding: 12px;
    cursor: pointer;
}
.follow i:hover{
    background-color: rgb(230, 157, 55);
}

/* ABOUT.HTML */
.about2 {
    width: 100%;
    background-color: black;
    height: 100%;
}
.in-about2 {
    display: flex;
    align-items: center;
    padding: 100px 100px;
    justify-content: center;
    color: #fff;
    width: 80%;
    margin: auto;
    flex-wrap: nowrap;
}

.about2 .left {
    flex: 1;
    padding: 0px 10px;
    width: 100%;
    height: 100%;

}

.about2 .right {
    flex: 2;
    padding: 30px 10px;
    /* height: 100%; */
    margin-left: 30px;

}

.image-box {
    width: 100%;
    height: 500px;
    /* border: 1px solid red; */
    /* background-color: blueviolet; */
}

.image-box img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.about2 .content-box {
    width: 100%;
}

.content-box h1 {
    padding-bottom: 30px;
    font-size: 45px;
}

.content-box p {
    margin-bottom: 25px;
    line-height: 25px;
}

.detail {
    padding: 15px 0px;
    line-height: 35px;
}

.detail li {
    list-style: none;
    display: flex;
    align-items: center;
}

.detail li span:nth-child(1) {
    flex: 1;
    font-weight: 600;
}

.detail li span:nth-child(2) {
    flex: 2;
    color: gray
}

.project {
    padding: 15px 0px;
}

.project p {
    letter-spacing: 1px;
    font-size: 18px;
}

.project span {
    margin-right: 10px;
    color: rgb(255, 181, 78);
    font-weight: 600;
}

.about2-content {
    /* border: 1px solid #fff; */
    padding-bottom: 80px;
    width: 80%;
    margin: auto;
}

.about2-content p {
    color: #fff;
    line-height: 30px;
    /* letter-spacing: -1px; */
    color: rgb(150, 147, 147);
}

.about2-content p span {
    color: rgb(255, 181, 78);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
}

.contect2 {
    background-color: black;
    width: 100%;
    padding: 90px 0px;
}

.contect2 h1 {
    color: #fff;
    text-align: center;
    padding-bottom: 50px;
    font-size: 40px;
    /* text-decoration: underline ; */
    /* border-bottom: 2px solid #fff; */
}

.contect2 h1 span {
    color: rgb(255, 181, 78);
}

.in-contect2 {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rgb(59, 56, 56); */
    width: 70%;
    /* margin-bottom: 50px; */
    margin: 0px auto 80px auto;

}

.contect2 .left {
    height: 100%;

}

.contect2 .image-box {
    height: 80%;
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contect2 .image-box img {
    width: 100%;
}

.contect2 .right {
    flex: 1;
    background-color: rgb(229, 226, 226);
}

.contect2 .contect-head {
    padding: 40px;
}

.input-field {
    width: 100%;
    margin: 20px 0px;

}

.input-field input {
    width: 90%;
    background-color: #fff;
    padding: 15px 15px;
    border-radius: 5px;
    outline: none;
}

.heading span {
    color: rgb(255, 181, 78);
}

.input-text {
    width: 100%;
    padding-bottom: 30px;
}

.input-text textarea {
    width: 90%;
    padding: 15px;
    outline: none;
    border: 2px solid;
}

.btn button {
    border: none;
    font-size: 14px;
}

/* resume */
.resume {
    background-color: black;
    width: 100%;

}

.in-resume {
    width: 85%;
    margin: auto;
    /* background-color: #fff; */
    padding: 50px 10px;
    position: relative;
}

.in-resume h1 {
    padding-bottom: 60px;
    text-align: center;
    font-size: 40px;
    color: #fff;
}

.in-resume h1 span {
    color: rgb(255, 181, 78)
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 10px 50px 1px rgb(49, 47, 47);
    /* position: relative; */
}

.wrapper .education {
    flex: 1;
    /* border: 1px solid #fff; */
    text-align: center;
    /* padding:20px 0px ; */
    background-color: transparent;

}

.wrapper .education:first-child {
    background-color: rgb(24, 27, 28);
}

.wrapper .education:hover {
    background-color: rgb(27, 30, 30);
}

.wrapper .education button {
    width: 100%;
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 30px 5px;
}

.wrapper .education button:hover {
    outline: none;
    color: crimson
}

.education-box {
    display: flex;
    /* position: absolute; */
    align-items: center;
    color: #fff;
    justify-content: center;
    padding: 50px 0px;
    /* top:200px; */
    /* bottom: 0px; */
    gap:30px
    /* height: 100%; */
}
.education-box>.left,.education-box>.right{
    flex:1;
    display: flex;
    flex-direction: column;
}
.right>span,
.left>span {
    color: crimson
}

.education-box .heading {
    padding-top: 20px;
}

.education-box .heading>h1 {
    text-align: left;
}
.line-box{
    display: flex;
    /* flex-direction: column; */
    gap:25px;
    margin-bottom: 30px;
    position: relative;
}
.line-box .border{
border:4px solid rgb(27, 26, 26);
}
.dot{
    border-radius: 50%;
    border:5px solid rgb(24, 27, 28);
    width:13px;
    height: 13px;
    background-color: transparent;
    /* z-index: 1; */
    position: absolute;
    top:40px;
    left:-8px
}
.dot-line{
    /* border:4px solid #fff;
    translate:(500.600); */
    height: 8px;
    position: absolute;
    top:48px;
    translate: calc(50px,-50px);
    width:20px;
    left:16px;
    background-color: rgb(26, 24, 24);
    rotate: 120dg;
}
.box-e{
    /* border: 1px solid #fff; */
    padding: 50px 40px;
    position: relative;
    background-color:rgb(30, 28, 28);
    border-radius: 1px;
    box-shadow: 1px 10px 50px 1px rgb(26, 24, 24);
}
.box-e:hover{
    background-color:rgb(59, 56, 56)
}
.box-e>h3{
    font-size: 22px;
}
.box-e>.mark{
    position: absolute;
    right:35px;

}
.mark>span{
    background-color: rgb(49, 43, 43);
    padding: 8px;
    border-radius: 5px;
    box-shadow: 1px 10px 50px 1px rgb(39, 37, 37);
    color:crimson
}
.box-e .uni{
    padding-top: 15px;
    font-size: 15px;
    color:rgb(142, 137, 137)
}
.box-e .box-1-content{
    padding-top: 55px;
    line-height: 28px;
    color:rgb(142, 137, 137);
    letter-spacing: 1px;
    font-size: 18px;
}
