html {
  scroll-behavior: smooth;
}
body{
    margin: 0;
    padding:0;
    /* background: linear-gradient(to right,#271539,#501f5a,#915ba4,#c2649b,#e783b5); */
    font-family: "Poppins", sans-serif;
}
.header{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 65px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    background: rgba(255, 255, 255, 0.17);
     backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 14px 7px rgba(255, 255, 255, 0.7);
}
.logo{
    font-size: 1.5rem;
    /* color:#F5BCC1; */
    color: #363636;
    /* color:#000000; */
    margin-left: 60px;
    font-weight: 500;
    position: relative;
    z-index: 100;
}
.bar{
    display: none;

}
.star-img{
    position: absolute;
    width: 50px;
    /* z-index: -1; */
    transform: translate(-80%,-35%);
}
.menu{
    display: flex;
    gap:40px;
    align-items: center;
    /* border:1px solid green; */
    margin-right: 60px;
}
.menu a{
    text-decoration: none;
    /* color:#F5BCC1; */
    /* color: #363636; */
    color: #353535;
    font-weight: 500;
    font-size: 1.1rem;
    transition: 0.3s all ease;
}
.menu a:hover{
    
    border-bottom: 3px solid #353535;
}
/* bar styling */
.mobile-options{
    transition: left 0.5s ease-out;
    /* border:1px solid black; */
    width: 200px;
    margin-top: 65px;
    height: 100svh;
    padding:10px 0px;
    display: flex;
    align-items: end;
    flex-direction: column;
    gap:10px;
    background:linear-gradient(to bottom,#d6b3f7,#fffaee);
    position: absolute;
    left:-210px;
    font-weight: 600;
}
.mobile-options div{
    padding:10px 0px;
    width: 100%;
    border-bottom:1px solid white;
    text-align: center;
    color:black;
    border-radius: 8px;
    font-size: 15px ;
    transition:all 0.2s ease-in;
}
.mobile-options div a{
    text-decoration: none;
    color: black;
}
.mobile-options div:hover{
    cursor: pointer;
    /* background-color:rgb(120, 30, 204); */
    background-color: #a758f1 ;
    color: white;
    font-size: 18px;
    font-weight: normal;
}
span{
    cursor: pointer;
    width: fit-content;
    font-size: 22px;
}
button{
    margin:28px 18px;
    font-size: 28px;
}

.home-body{
     margin-top: 65px; /* same as header height */
    height: 100%; /* full screen height, not just 100% */
    /* border: 1px solid white;  */
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    perspective: 200px;
    overflow: hidden;
    /* background: linear-gradient(to right,#271539,#501f5a,#915ba4,#c2649b,#e783b5); */
    background: linear-gradient(
                                180deg,
                              #ffffff 0%,
                              #fffaee 20%,
                              /* #f8d9c4 40%, */
                              #e9bfdd 70%,
                              #d6b3f7 100%
                               );

}
.home-content{
    color: #000000;
    animation: homeanimate 1s ease;
}
.home-content h1{
    font-size: 40px;
}
.gradient-text {
    font-weight: 700;
    background: linear-gradient(to left,rgb(241,100,171),#d6b3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.home-content h1 #span2{
    color:rgb(241, 100, 171);
    /* color: #d6b3f7; */
    font-size: 40px;
}
.home-content h3{
    font-size: 28px;
}
.home-content p{
    width: 400px;
    height: 160px;
    /* border: 1px solid white; */
    font-style: italic;
}
.get-start-btn{
    /* border:1px solid green; */
    /* text-align: center; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    border-radius: 30px;
    /* background-color: #F5BCC1; */
    background-color: #000000;
    width:180px;
    height: 50px;
    /* color:#501f5a; */
    color:white;
    font-weight: 600;
    transition: transform .3s linear;
    /* box-shadow:0px 0px 15px 2px rgb(98, 93, 93); */
    /* text-decoration: none; */
}
.get-start-btn a{
    text-decoration: none;
    /* color:#501f5a; */
    color:white;
}
.get-start-btn a:hover{
    text-decoration: none;
    background-color:whitesmoke;
    color:#000000;
}
.get-start-btn:hover{
    background-color: whitesmoke;
    /* color: #F5BCC1; */
    transform: scale(1.1);
    cursor: pointer;
}
.home-image{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: url("./madhuu_img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    /* border: 4px solid #501f5a; */
    /* box-shadow: 0px 0px 30px 5px #e783b5; */
    box-shadow: 0 10px 11px rgba(0,0,0,0.05);

    /* border: 1px solid #915ba4; */
    animation: imageanimate 1s ease;
}
@keyframes imageanimate {
    0%{
        opacity: 0;
        transform: translateZ(-100px);
    }
    100%{
        opacity: 1;
        transform: translateZ(0px);
    }
}
@keyframes homeanimate {
    0%{
        opacity: 0;
        transform: translateX(-300px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}

.about-body{
    display: flex;
    flex-direction: column;
    gap:30px;
    align-items: center;
    height:100%;
    /* border: 1px solid black; */
    /* background-color: #f5d8da; */
    background-color:  #fffaee; 


}
.about-heading{
    margin-top: 40px;
    font-size: 1.2rem;
}
.abt-box{
    width:780px;
    height:400px;
    position:relative;
    /* border:1px solid pink; */
    
}
.abt-image{
    position:absolute;
    width:250px;
    height:250px;
    background: url("./madhuu_img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    z-index:2;
    /* border: 4px solid #DE5C8F; */
    /* box-shadow: 0px 0px 20px 1px #DE5C8F; */
}
.abt-content{
    position: absolute;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 650px;
    height: 320px;
    background-color: #e8cee1 ;
                              /* #d6b3f7; */
    /* background-color:rgb(214, 185, 214); */
    z-index: 1;
    transform: translate(150px,45px);
    border-radius: 20px;
    /* box-shadow: 0px 0px 18px 2px rgb(196, 193, 193); */
    box-shadow: 10px 10px 10px rgba(0,0,0,0.09);
    
}
.abt-content p{
    width:490px;
    height:220px;
    /* border:1px solid red; */
    color:#000000;
    font-weight: 500;
}

 .resume-btn {
    width:140px;
    height:40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 20px;
    background-color: #000000;
    box-shadow:0px 0px 15px 2px rgb(206, 195, 195);
    /* color:whitesmoke; */
    font-weight: 600;
    transition: all 0.3s ease; 
    /* text-decoration: none;  */
}
.resume-btn a{
    text-decoration: none;
    color:whitesmoke;
}
/* .resume-btn a:hover{
    background-color:#915ba4;
    color: #F5BCC1;
} */
.resume-btn:hover,.resume-btn a:hover {
    background-color: whitesmoke;
    color: #000000;
    transform: scale(1.1);
    cursor: pointer;
}
.skills-body{
    height:100%;
    /* border: 1px solid black; */
    /* background-color: #fef0f1; */
     background: linear-gradient(to bottom right,
                                
                              
                              /* #f8d9c4 40%, */
                              #f4d7eb ,
                              #ffffff ,
                              #fffaee ,
                              #dec2f9 
                               );
    display: flex;
    flex-direction: column;
    gap:60px;
    align-items: center;
    /* overflow: hidden; */
}
.card-wrapper {
  width: 80%;          /* make it wider so 3 fit comfortably */
  max-width: 1100px;   /* limit max size */
  margin: auto;        /* center it */
  margin-bottom: 130px;
  border: none;        /* remove debug border */
}

.card-link .img{
    margin-bottom: 10px;
    /* border: 1px solid red; */
    width: 110px;
    height: 110px;
}
.card-link #html-img{
    background: url("./html5img.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.card-link #css-img{
    background: url("./css1.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.card-link #js-img{
    background: url("./js1.webp");
    background-size: cover;
    background-repeat: no-repeat;
}
.card-link #c-img{
    background: url("./cla_icon.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.card-link #cpp-img{
    background: url("./cpp_icon.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.card-link #py-img{
    background: url("./python_icon.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.card-link #jv-img{
    background: url("./java_icon.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.card-list .card-item{
    list-style: none;
}
.card-list .card-item .card-link{
    border: 2px solid transparent;
    width: 220px;
    /* user-select: none; */
    height: 195px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid green; */
    background: #fff;
    padding:18px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    transition: 0.2s ease;
}
.card-list .card-item .card-link:hover{
    transform: scale(1.1);
}
.card-list .card-link .view-btn{
    margin-top: 30px;
    /* background: #E2D1ED; */
    width:100px;
    height:30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding:2px 2px;
    font-weight: 500;
    /* transition: 0.4s ease; */
}
.card-list .card-link  #view-btn-html{
    background: #E2D1ED;
    color: #501f5a;
    transition: 0.4s ease;
}
.card-list .card-link #view-btn-html:hover{
    color:white;
    background: #915ba4;
}
.card-list .card-link  #view-btn-css{
    background: #C9DEF8;
    color: rgb(75, 75, 190);
    transition: 0.4s ease;
}
.card-list .card-link #view-btn-css:hover{
    color:white;
    background: rgb(75, 75, 190);
}
.card-list .card-link  #view-btn-js{
    background: #eaf38b;
    color: yellowgreen;
    transition: 0.4s ease;
}
.card-list .card-link #view-btn-js:hover{
    color:white;
    font-style: bold;
    background: yellow;
}
.card-list .card-link  #view-btn-c{
    background: #ffccec;
    color: palevioletred;
    transition: 0.4s ease;
}
.card-list .card-link #view-btn-c:hover{
    color:white;
    font-style: bold;
    background: rgb(246, 136, 204);
}
.card-list .card-link  #view-btn-cpp{
    background: #7ccff9;
    color: #07577F;
    transition: 0.4s ease;
}
.card-list .card-link #view-btn-cpp:hover{
    color:white;
    font-style: bold;
    background: #0e84c0;
}
.card-list .card-link  #view-btn-py{
    background: #E8F5E9;
    color: green;
    transition: 0.4s ease;
}
.card-list .card-link #view-btn-py:hover{
    color:white;
    font-style: bold;
    background: #8BC34A;
}
.card-list .card-link  #view-btn-jv{
    background: #d5caf7;
    color: #6948d3;
    transition: 0.4s ease;
}
.card-list .card-link #view-btn-jv:hover{
    color:white;
    font-style: bold;
    background: #8C70E9;
}
/* projects css */
.proj-body{
    height:100%;
    /* border: 1px solid black; */
    /* background-color: #fef0f1; */
    background-color: #fff;
    display: flex;
    flex-direction: column;
    /* gap:60px; */
    align-items: center;
}
.proj-box{
    /* border:1px solid red; */
    width:1100px;
    height:450px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
     background: linear-gradient(
                                180deg,
                              #ffffff 0%,
                              #fffaee 20%,
                              /* #f8d9c4 40%, */
                              #e9bfdd 70%,
                              #d6b3f7 100%
                               );
    border-radius: 20px;
}
.proj-content{
    /* border:1px solid blue; */
    width: 500px;
    height: 320px;
    gap:10px;
    padding:10px;
}
.demo{
    font-size: 18px;
    position: relative;
    width:150px;
    height:40px;
    background-color: black;
    color:white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.demo:hover::after{
    transform:translateX(0px) translateY(-10px);
    width:140px;
    height: 35px;
    border-radius: 10px;
    transition: all .3s linear;
}
.demo::after{
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e5e5;
    background: rgba(255, 255, 255, 0.17);
     backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 14px 7px rgba(255, 255, 255, 0.7);
    opacity: 0.5;
    transform: translateX(75px) translateY(16px);
}
.demo{
    text-decoration: none;
}
.proj-image{
    background: url("./code3.avif");
    background-size: cover;
    background-repeat: no-repeat;
    width:400px;
    height: 300px;
    border-radius: 20px;
    position:relative;
    /* border: 4px solid black; */
}

.cont-body{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color:#fffdf9;

}
.cont-box{

   width:50%;
   height: 400px;
  border-radius: 20px;
  background: url("./chatting.webp");
  background-size: cover;
  background-repeat: no-repeat;
   /* border: 1px solid red; */
   /* display: flex;
   flex-direction: row;
    justify-items: center;
    align-items: center; */
    /* padding-left: 40px; */
    
}
.cont-content{
  width: 100%;
  height: 400px;
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
    /* border: 2px solid rgb(239, 85, 177); */
    box-shadow: 0px 10px 30px rgba(225, 180, 214, 0.863);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.cont-content p{
    /* border:1px solid red; */
    width:85%;
    color: rgb(43, 43, 43);
    /* margin:0px 80px; */
}
.form-group1,.form-group2,.form-group3 label{
    color:rgb(130, 129, 129);
}
.form-group1{
    /* border: 1px solid red; */
    gap:29px;
    width:400px;
    height:35px;
    display: flex;
    margin-bottom: 10px;
}
.form-group1 input{
    width:350px;
    border-radius: 6px;
    border: 2px solid rgb(158, 152, 152);
    
}
.form-group2{
    /* border: 1px solid red; */
    gap:34px;
    width:400px;
    height:35px;
    display: flex;
    margin-bottom: 10px;
    
}
.form-group2 input{
    width:350px;
    border-radius: 6px;
    border: 2px solid rgb(158, 155, 155);
    
}
.form-group3{
    /* border: 1px solid red; */
    gap:5px;
    width:400px;
    height:35px;
    display: flex;
    margin-bottom: 30px;
    
}
button{
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to left,rgb(241,100,171),#d6b3f7);
    border: none;
}
.form-group3 textarea{
    width:100%;
    border-radius: 6px;
    border: 2px solid rgb(158, 156, 156);
    /* border: 1px solid blue; */
}
.footer{
    margin-top: 20px;
    height: 20%;
    /* border: 1px solid green; */
    background-color: black;
    color:white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.footer-links{
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap:15px;
    align-items: center;
    width: 150px;
    height: 100px;
    /* border: 1px solid red; */
   display: flex;
    justify-content: center;
    align-items: center;
}
.footer-links a{
    text-decoration: none;
}
.envelope,.github,.linkin{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color:black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    /* border: 1px solid red; */
    transition: 0.2s all linear;
}
.envelope:hover,.github:hover,.linkin:hover{
    box-shadow: 0px 0px 30px rgba(248, 245, 247, 0.863);
    transform: scale(1.1);
    
}
.copyrgt{
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* gap:10px; */
    align-items: center;
    font-size: 12px;
}
/* #Name,#Email,{
    /* border: 1px solid red; */
    /* width:400px;
    height:30px;
    display: flex;
    flex-direction: row; */
    /* justify-content: space-evenly; */
    /* gap:30px;
    align-items: center;
    border-radius: 6px;
}
#Message{
     width:400px;
    height:30px;
    display: flex;
    flex-direction: row; */
    /* justify-content: space-evenly; */
    /* gap:30px;
    align-items: center;
    border-radius: 6px;
} */ 

@media (max-width:1111px) {
    .home-image{
        width: 300px;
        height: 300px;
    }
    .home-content h1{
        font-size: 34px;
    }
    .home-content h3{
        font-size: 24px;
    }
    .proj-box{
        /* border:1px solid red; */
        width:900px;
    }
    .proj-image{
        width: 320px;
        height:280px;
    }
}
@media (max-width:991px) {
    .home-image{
        width: 300px;
        height: 300px;
    }
    .home-content h1{
        font-size: 34px;
    }
    .home-content h3{
        font-size: 24px;
    }
    .menu{
        display: none;
    }
    .bar{
        display: block;
        font-size: 1.4rem;
        margin-right: 20px;
        color:#271539;
        cursor:pointer;
    }
    .abt-image{
        width: 230px;
        height: 230px;
    }
    .abt-content {
      width: 630px;
      height: 300px;
      padding-left: 65px;
      transform: translate(100px,50px);
      position: relative;   /* optional, prevents overlap */
      /* margin: 20px auto; */
  }
   .proj-box{
        /* border:1px solid red; */
        width:800px;
    }
    .proj-image{
        width: 300px;
        height:280px;
    }
    .proj-content{
        width: 400px;
    }
}
@media (max-width:878px) {
    .home-content h1{
        font-size: 30px;
    }
    .home-content h3{
        font-size: 20px;
    }
    .bar{
        margin-right: 30px;
    }
    .abt-image{
        width: 198px;
        height: 198px;
    }
    .abt-content {
      width: 560px;
      height: 320px;
      padding-left: 80px;
      transform: translate(100px,40px);
      position: relative;   /* optional, prevents overlap */
  }
  .proj-box{
        /* border:1px solid red; */
        width:700px;
        height: 400px;
    }
    .proj-image{
        width: 250px;
        height:260px;
    }
    .proj-content{
        width: 350px;
    }
    .form-group1,.form-group2,.form-group3{
        /* border: 1px solid red; */
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .form-group1 input,.form-group2 input{
        width: 250px;
        
    }
    /* .form-group1 label{
        border: 1px solid red;
        margin-left: 20px;
    } */
    .form-group3 textarea{
        width: 250px;
    }
}
@media (max-width:802px) {
    .home-image{
        margin-bottom: 18px;
        width: 200px;
        height: 200px;
    }
    .home-content h1{
        font-size: 34px;
    }
    .home-content h3{
        font-size: 24px;
    }
    .home-content p{
        width: 370px;
        height: 100px;
        /* border: 1px solid white; */
        font-size: small;
    }
    .get-start-btn{
        width:140px;
    height: 30px;
    font-size: small;
    font-weight: 550;
    }
    .home-body{
        flex-direction: column;
    }
    .abt-box{
        width: max-content;
        height: max-content;
    }
    .abt-image{
        transform: translate(180px,-40px);
        width: 200px;
        height: 200px;
    }
    .abt-content {
      width: 540px;
      height: 210px;
      padding-left: 20px;
      padding-top: 30px;
      transform: translate(0px,120px);
      /* transform: none; */
      position: relative;   /* optional, prevents overlap */
      /* margin: 20px auto; */
  }
  .abt-content p {
    font-size: small;
  }
  .resume-btn{
    width: 120px;
    font-size: small;
  }
  .proj-box{
        /* border:1px solid red; */
        width:600px;
        height: 400px;
    }
    .proj-image{
        width: 200px;
        height:250px;
    }
    .proj-content{
        width: 350px;
    }
}
@media (max-width:658px) {
    .abt-image{
        transform: translate(170px,-30px);
        width: 180px;
        height: 180px;
    }
    .abt-content{
        width: 500px;
        padding-left: 10px;
    }
     .proj-box{
        /* border:1px solid red; */
        width:500px;
        height: 400px;
    }
    .proj-image{
        width: 200px;
        height:200px;
        margin: 20px;
    }
    .proj-content{
        width: 360px;
    }
    .proj-content p{
        font-size: small;
    }
    .cont-content p{
        font-size: small;
    }
    .form-group1 label,.form-group2 label,.form-group3 label{
        display: none;
    }
    .form-group1,.form-group2,.form-group3{
        margin-left: 50px;
    }
}
@media (max-width:570px) {
    .abt-image{
        transform: translate(132px,-38px);
        width: 160px;
        height: 160px;
    }
    .abt-content{
        width: 420px;
        height: 220px;
        padding-left: 10px;
        padding-top: 5px;
      transform: translate(0px,110px);

    }
    .abt-content p{
        width:420px;
        height:200px;
        /* font-size: small; */
        /* border: 1px solid red; */
    }
    .resume-btn{
        margin-bottom: 10px;
        width: 100px;
        font-size: small;
    }
}
@media (max-width:523px) {
    .home-image{
        width: 230px;
        height: 230px;
    }
    .home-content h1{
        font-size: 28px;
    }
    .home-content h1 #span2{
        font-size: 28px;
    }
    .home-content h3{
        font-size: 18px;
    }
    .proj-box{
        /* border:1px solid red; */
        width:400px;
        height: 400px;
    }
    .proj-image{
        width: 250px;
        height:200px;
        margin: 20px;
    }
    .proj-content{
        width: 360px;
        /* height: 280px; */
        /* border: 1px solid red; */
        /* margin-top: none; */
    }
    .proj-content h2{
        font-size: medium;
    }
    .proj-content p{
        font-size: small;
    }
    .demo{
        margin-top: 20px;
    }
    .cont-box{
        /* border: 1px solid red; */
        width: 60%;

    }
    .form-group1,.form-group2,.form-group3{
        /* border: 1px solid red; */
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .form-group1 input,.form-group2 input{
        width: 250px;
        
    }
    
    .form-group3 textarea{
        width: 250px;
    }
}
@media (max-width:449px) {
    .home-image{
        width: 220px;
        height: 220px;
    }
    .home-content h1{
        font-size: 26px;
    }
    .home-content h3{
        font-size: 16px;
    }
    .home-content p{
        width: 370px;
        height: fit-content;
    }
    .bar{
        font-size: 1.2rem;
    }
    .get-start-btn{
        height: 40px;
        width: 160px;
    }
    .abt-image{
        transform: translate(120px,-40px);
        width: 150px;
        height: 150px;
    }
    .abt-content{
        width: 380px;
        height: 260px;
        padding-left: 10px;
        padding-top: 20px;
       transform: translate(0px,80px);

    }
    .abt-content p{
        width:380px;
        height:200px;
        /* border: 1px solid red; */
    }
    .resume-btn{
        margin-bottom: 19px;
        margin-top: 0px;
        width:120px;
        height: 50px;
    }
     .form-group1,.form-group2,.form-group3{
        /* border: 1px solid red; */
        width: 230px;
        margin-left: auto;
        margin-right: auto;
    }
    .form-group1 input,.form-group2 input{
        width: 230px;
        
    }
    
    .form-group3 textarea{
        width: 230px;
    }
}
@media (max-width:423px) {
    .home-image{
        width: 230px;
        height: 230px;
    }
    .home-content h1{
        font-size: 24px;
    }
    .home-content h3{
        font-size: 14px;
    }
    .get-start-btn{
        height: 40px;
    }
    .proj-box{
        /* border:1px solid red; */
        width:300px;
        height: 450px;
        flex-direction: column;
    }
    .proj-image{
        width: 250px;
        height:200px;
        margin: 20px;
    }
    .proj-content{
        width: 280px;
        /* height: 280px; */
        /* border: 1px solid red; */
        /* margin-top: none; */

    }
    .proj-content h2{
        font-size: medium;
        /* border:1px solid blue; */
        /* padding:10px; */
    }
    .proj-content p{
        font-size: small;
        /* border:1px solid red; */
    }
    .demo{
        margin-top: 20px;
        width: 130px;
        height: 36px;
    }

}
@media (max-width:415px) {
    .abt-image{
        transform: translate(100px,-40px);
        width: 150px;
        height: 150px;
    }
    .abt-content{
        width: 340px;
        height: 280px;
        padding-left: 12px;
        padding-top: 40px;
       transform: translate(0px,60px);

    }
    .abt-content p{
        width:340px;
        height:220px;
        font-size: small;
        /* border: 1px solid red; */
    }
    .resume-btn{
        margin-bottom: 15px;
        height:30px;
    }
    .cont-box{
        /* border: 1px solid red; */
        width: 70%;

    }
     .form-group1,.form-group2,.form-group3{
        /* border: 1px solid red; */
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .form-group1 input,.form-group2 input{
        width: 250px;
        
    }
    
    .form-group3 textarea{
        width: 250px;
    }
}
@media (max-width:408px) {
    .home-image{
        width: 230px;
        height: 230px;
    }
    .home-content h1{
        font-size: 22px;
    }
    .home-content h3{
        font-size: 12px;
    }
    .home-content p{
        width: 350;
        height: fit-content;
    }
}
@media (max-width:386px) {
    .home-image{
        width: 230px;
        height: 230px;
    }
    .home-content h1{
        font-size: 20px;
    }
    .home-content h3{
        font-size: 10px;
    }
    .home-content p{
        width: 320px;
        height: fit-content;
    }
    .bar{
        font-size: 1rem;
    }
    .cont-box{
        /* border: 1px solid red; */
        width: 75%;

    }
}
@media (max-width:364px) {
    .home-content h1{
        font-size: 24px;

    }
    .home-content h1 #span2{
        font-size: 24px;
    }
    .abt-image{
        transform: translate(90px,-40px);
        width: 130px;
        height: 130px;
    }
    .abt-content{
        width: 300px;
        height: 320px;
        padding-left: 12px;
        padding-top: 0px;
       transform: translate(0px,60px);

    }
    .abt-content p{
        width:300px;
        height:220px;
        /* border: 1px solid red; */
    }
    .resume-btn{
        margin-bottom: 0px;
        
    }
}
@media (max-width:355px) {
    .home-image{
        width: 220px;
        height: 220px;
    }
    .home-content h1{
        font-size: 18px;
    }
    .home-content h3{
        font-size: 10px;
    }
    .home-content p{
        width: 300px;
        height: fit-content;
    }
    .cont-box{
        /* border: 1px solid red; */
        width: 80%;

    }
}
@media (min-width:320px) and (max-width:339px) {
    .home-image{
        width: 210px;
        height: 210px;
    }
    .home-content h1{
        font-size: 18px;
    }
    .home-content h3{
        font-size: 10px;
    }
    .home-content p{
        width:280px;
        height: fit-content;
    }
    .get-start-btn{
        width: 150px;
        height: 40px;
    }
    .abt-image{
        transform: translate(80px,-40px);
        width: 120px;
        height: 120px;
    }
    .abt-content{
        width: 270px;
        height: 340px;
        padding-left: 5px;
        padding-top: 14px;
       transform: translate(0px,40px);

    }
    .abt-content p{
        width:265px;
        height:220px;
        /* border: 1px solid red; */
    }
    .resume-btn{
        margin-bottom: 0px;
    }
    .about-heading{
        margin-top: 0px;
    }
    #proj-heading{
    font-size: 16px;
    margin-top: 40px;
    }
    .cont-box{
        /* border: 1px solid red; */
        width: 85%;

    }
}
