/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff0000;
}

/* all similar content styling codes */
/* section{
    padding: 100px 0;
} */
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
    box-sizing: border-box;
}

.max-width_about {
    max-width: 1300px;
    padding: 150px 80px;
    margin: auto;
    box-sizing: border-box;
}

.max-width_project {
    max-width: 1300px;
    padding: 150px 71px;
    margin: auto;
    box-sizing: border-box;
}

.max-width_skills {
    max-width: 1300px;
    padding: 100px 80px;
    margin: auto;
    box-sizing: border-box;
}

.max-width_edu {
    max-width: 1300px;
    padding: 200px 30px;
    margin: auto;
    box-sizing: border-box;
}

.max-width_contact {
    max-width: 1300px;
    padding: 150px 80px;
    margin: auto;
    box-sizing: border-box;
}

.about, .projects, .skills, .education, .contact, footer{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.projects .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: crimson;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
    /* border-bottom: 2px solid #0ef;  */
}
.navbar.sticky{
    padding: 15px 0;
    background: #1f242d;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    opacity: 0;
    animation: slideRight 1s ease forwards;
}
.navbar .logo a span::before{
    color: #fff;
    transition: all 0.3s ease;
    content: 'My Portfo';
}
.navbar.sticky .logo a span::before{
    color:crimson;
    content: 'Piyush';
}

.navbar .logo a span::after{
    color: crimson;
    transition: all 0.3s ease;
    content: 'lio.';
}

.navbar.sticky .logo a span::after{
    color:white;
    content: ' Patale';
}

.underline {
    border-bottom: 2px solid #111; /* Adjust the color and thickness as needed */
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    /* transition: color 0.3s ease; */
    opacity: 0;
    animation: slideTop .8s ease forwards;
    /* border-bottom: 2px solid #0ef;  */
    animation-delay: calc(.2s * var(--i));
}

.navbar .menu li a:hover , 
.navbar .menu li a#active {
    color: #0ef;
}
.navbar.sticky .menu li a:hover{
    color: #0ef;
}

/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: crimson;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
}


/* home section styling */
.home{
    display: flex;
    background: url("images/banner2.png") no-repeat center;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  margin-right: 0;
}

.home .home-content .text-1{
    font-size: 27px;
}
.home .home-content .text-2{
    color: #0ef;
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    margin-top: 10px;
    animation: slideRight 3s ease forwards;
    /* animation-delay: 1s; */
}
.home .home-content .text-3{
    font-size: 30px;
    margin: 5px 0;
    margin-top: 20px;
}
.home .home-content .text-3 span{
    color: crimson;
    font-weight: 500;
}

.socialMedia a {
    display: inline-flex;
    width: 40px;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: crimson;
    text-decoration: none;
    margin: 30px 20px 30px 0;
    transition: 0.5s ease;
    opacity: 0;
    animation: slideLeft .8s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.socialMedia a:hover {
    background: #0ef;
    color: crimson;
    box-shadow: 0 0 40px #0ef;
}

.buttons {
    position: relative;
    display: grid;
    place-items: center;
    height: fit-content;
    width: fit-content;
    transition: 0.3s;
    border-radius: 50%;
    margin-top: 100px;
  }
  
  .buttons:hover {
    padding: 60px;
  }
  
  .buttons:hover .button {
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
  }
  
  .main-button {
    position: relative;
    display:grid;
    place-items: center;
    padding: 10px;
    border: none;
    background: #e8e8e8;
    /* box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff; */
    border-radius: 50%;
    transition: 0.2s;
    z-index: 100;
  }
  
  .button {
    position:sticky;
    /* display: grid; */
    /* place-items:initial; */
    padding: 10px;
    border: none;
    background: #e8e8e8;
    box-shadow: 5px 5px 12px rgba(202, 202, 202, 0), -5px -5px 12px rgba(255, 255, 255, 0);
    transition: 0.3s;
    border-radius: 50%;
  }
  
  .discord-button:hover {
    background: #5865F2;
  }
  
  .buttons:hover .discord-button {
    translate: 70px 0px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
  }
  
  .twitter-button:hover {
    background: #1CA1F1;
  }
  
  .buttons:hover .twitter-button {
    translate: 247px 7px;
    /* box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff; */
  }
  
  .reddit-button:hover {
    background: #FF4500;
  }
  
  .buttons:hover .reddit-button {
    translate: 0px -70px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
  }
  
  .messenger-button:hover {
    background: #0093FF;
  }
  
  .buttons:hover .messenger-button {
    translate: -47px -47px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
  }
  
  .pinterest-button:hover {
    background: #F0002A;
  }
  
  .buttons:hover .pinterest-button {
    translate: 290px 0px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
  }
  
  .instagram-button:hover {
    background: #F914AF;
  }
  
  .buttons:hover .instagram-button {
    translate: 197px 7px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
  }
  
  .snapchat-button:hover {
    background: #FFFC00;
  }
  
  .buttons:hover .snapchat-button {
    translate: 70px 2px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
  }
  
  .whatsapp-button:hover {
    background: #25D366;
  }
  
  .buttons:hover .whatsapp-button {
    translate: 147px 2px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
  }

/* .home .home-content a{
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease;
} */
/* .home .home-content a:hover{
    color: crimson;
    background: none;
} */

/* about section styling */
/* #about {
    background-color:#e5e5e5;
} */
.about .title::after{
    content: "who i am";
}
.about .about-content .left{
    width: 45%;
}
.about .about-content .left img{
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 20px;
}
.about .about-content .right{
    width: 55%;
}
.about .about-content .right .text{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: crimson;
}
.about .about-content .right p{
    /* text-align: justify; */
}
.about .about-content .right a{
    position:relative;
    /* display:inline-block; */
    display: inline-flex;
    background: crimson;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 15px;
    border: 3px solid crimson;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: #0ef;
    /* background:#1f242d;
    border: 6px solid crimson ; */
}
.about .about-content .right a::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width:0;
    height: 100%;
    background:#111;
    z-index:-1;
    transition: 1s;
}

.about .about-content .right a:hover::before {
    width: 100%;
}

.downloadbtn {
    justify-content: center;
    align-items: center;
    /* background-color:black; */
    border:#111;
    background: crimson;
    color: #fff;
    border-radius: 50%;
    padding: 6px 8px;
    margin-left: 15px;
    cursor: pointer;
    font-size: 20px;
}

.downloadbtn:hover {
    transform: scale(1.1);
    background:#111;
    color: #0ef;
}

.light-button button.bt {
    position: relative;
    height: 200px;
    display: flex;
    align-items: flex-end;
    outline: none;
    background: none;
    border: none;
  }
  
  .light-button button.bt .button-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    background-color: #0a0a0a;
    border-radius: 5px;
    color: #0f0f0f;
    font-weight: 700;
    transition: 300ms;
    outline: #0f0f0f 2px solid;
    outline-offset: 20;
  }
  
  .light-button button.bt .button-holder svg {
    height: 50px;
    fill: #0f0f0f;
    transition: 300ms;
  }
  
  .light-button button.bt .light-holder {
    position: absolute;
    height: 200px;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .light-button button.bt .light-holder .dot {
    position: absolute;
    top: 0;
    width: 10px;
    height: 10px;
    background-color: #0a0a0a;
    border-radius: 10px;
    z-index: 2;
  }
  
  .light-button button.bt .light-holder .light {
    position: absolute;
    top: 0;
    width: 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 25% 100%, 75% 100%);
    background: transparent;
  }
  
  .light-button button.bt:hover .button-holder svg {
    fill: rgba(88, 101, 242, 1);
  }
  
  .light-button button.bt:hover .button-holder {
    color: rgba(88, 101, 242, 1);
    outline: rgba(88, 101, 242, 1) 2px solid;
    outline-offset: 2px;
  }
  
  .light-button button.bt:hover .light-holder .light {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(88, 101, 242, 1) 0%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%);
  }



/* projects section styling */
.projects, .education{
    color:#fff;
    background: #111;
}
.projects .title::before,
.education .title::before{
    background: #fff;
}
.projects .title::after,
.education .title::after{
    background: #111;
    content: "What I have Done";
}
.projects .carousel .card{
    width: calc(33% - 20px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.projects .carousel .card:hover{
    background: crimson;
}
.projects .carousel .card .box{
    transition: all 0.3s ease;
}
.projects .carousel .card:hover .box{
    transform: scale(1.05);
}
.projects .carousel .card i{
    font-size: 50px;
    color: crimson;
    transition: color 0.3s ease;
}
.projects .carousel .card:hover i{
    color: #fff;
}
.projects .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

#knowmore {
    position:inherit;
    margin: 325px 0 0;
    display: flex;
    gap: 20px;
}

.knowMore{
    display:inline-flex;
    border-radius: 12px;
    border:#fff;
    border-width: 10px;
    /* border-color: #fff; */
    /* border-bottom-left-radius: 55px ;
    border-bottom-right-radius: 55px; */
    /* border-bottom-color: aqua; */
    /* background-color:#222; */
    color:#0ef;
    /* padding: 2px ; */
    /* margin-top: 45px; */

    padding-left: 30px;
    padding-right: 30px;
    padding-top: 6px;
    padding-bottom: 6px;
    
    font-weight: 200;
    font-size:22px;
    font-family: 'Ubuntu', sans-serif;
}

.knowMore:hover {
    border-color: rgb(0, 55, 255);
    border-radius: 16px;
    background-color: #0ef;
    color: #222;
   
}

.myCard {
    position: relative;
    background-color:#111;
    width: 100%;
    height: 410px;
    border-radius: 12px;
    margin-left: 10px;
    /* perspective: 1000px; */
    /* width: calc(33% - 20px); */
    /* background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px; */
  }
  
  .projecttitle {
    font-size: 40px;
    font-weight: 500;
    color: #0ef;
    /* text-align: center; */
    margin: 20px 0 5px 0; 
  }

  .projecttitleback {
    font-size: 100px;
    font-weight: 1000;
    color: #0ef;
    /* text-align: center; */
    margin: 20px 0 5px 0; 
  }
  
  .innerCard {
    /* position: relative;   */
    width: 355px;
    height: 374px;
    /* width: calc(33% - 20px); */
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
    /* text-align: center; */
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
  }

  .myCard .innerCard .frontSide i{
    margin-top: 60px;
    font-size: 100px;
    color: crimson;
    transition: color 0.3s ease;
  }

  

  .myCard .innerCard .backSide i{
    margin-top: 10px;
    font-size: 70px;
    color: crimson;
    transition: color 0.3s ease;
  }

  .myCard .innerCard .frontSide p{
    font-size:25px;
    justify-content: center;
    align-items: center;
    font-weight: 100;
    margin-top: 4px ;
  }

  .myCard .innerCard .backSide p{
    font-size:18px;
    /* justify-content: center; 
    align-items: center;  */
    /* text-align: justify; */
    font-weight: 100;
    margin: 10px 20px 3px 20px;
  }

  .myCard:hover .innerCard {
    transform: rotateY(180deg);
  }
  
  .frontSide,
  .backSide {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-evenly; */
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* border: 1px solid rgba(255, 255, 255, 0.8); */
    border-radius: 1rem;
    color: white;
    box-shadow: 0 0 0.4em #0ef;
    font-weight: 700;
  }
  
  /* .frontSide,
  .frontSide::before {
    background: linear-gradient(0 deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%);
     background:#1f242d
  }
  
  .backSide,
  .backSide::before {
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%); 
    background: #222;
  } */
  
  .backSide {
    transform: rotateY(180deg);
  }
  
  .frontSide::before,
  .backSide::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    border-radius: 1em;
    filter: blur(20px);
    animation: animate 5s linear infinite;
  }
  
  @keyframes animate {
    0% {
      opacity: 0.3;
    }
  
    80% {
      opacity: 1;
    }
  
    100% {
      opacity: 0.3;
    }
  }

/* skills section styling */

.skills .title::after{
    content: "what i know";
}
.skills .skills-content .column{
    width: calc(50% - 30px);
}
.skills .skills-content .left .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.skills .skills-content .left p{
    /* text-align: justify; */
}
.skills .skills-content .left a{
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease;
}
.skills .skills-content .left a:hover{
    color: crimson;
    background: none;
}

.icon-container {
    display: flex; /* Use Flexbox to align items in a row */
    gap: 10px; /* Optional: Adds space between buttons */
}
.unique-btn {
    background-color: #ffffff; /* Button background color */
    border: none; /* Remove default border */
    padding: 20px; /* Button padding */
    cursor: pointer; /* Change cursor on hover */
    border-radius: 40px; /* Optional: Rounded corners */
    display: flex; /* Center icon inside the button */
    justify-content: center; /* Center icon horizontally */
    align-items: center; /* Center icon vertically */
    margin: 15px;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform .5s;
}
.unique-btn i {
    font-size: 52px; /* Adjust the size of the icon */
    /* transform: translateY(-50%); */
    transition: transform .5s;    
}

.unique-btn:hover {
    transform: translateX(20px) rotateZ(20deg) rotateY(20deg);
    background-color: #20212f;
    transition: transform .5s; 
}

.unique-btn:hover i {
transform: translateZ(10px) scale(1.2);
transition: transform .5s; 
}

.skills .skills-content .right .bars{
    margin-bottom: 20px;
}
.skills .skills-content .right .info{
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}
.skills .skills-content .right span{
    font-weight: 500;
    font-size: 18px;
}
.skills .skills-content .right .line{
    height: 5px;
    width: 100%;
    background: lightgrey;
    position: relative;
}
.skills .skills-content .right .line::before{
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: crimson;
}

.skills .skills-content .right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.skills-content .right .html::before{
    width: 90%;
}
.skills-content .right .css::before{
    width: 60%;
}
.skills-content .right .js::before{
    width: 50%;
}
.skills-content .right .c::before{
    width: 80%;
}
.skills-content .right .mysql::before{
    width: 80%;
}
.skills-content .right .NodeJS::before{
    width: 40%;
}
.skills-content .right .React::before{
    width: 50%;
}

/* education section styling */
.education .title::after{
    content: "Where I studied";
}
.education .carousel .card{
    /* position:fixed; */
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}
.education .carousel .card:hover{
    background: crimson;
}
.education .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.education .carousel .card:hover .box{
    transform: scale(1.05);
}
.education .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.education .carousel .card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid crimson;
    transition: all 0.3s ease;
}
.education .carousel .card:hover img{
    border-color: #fff;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid crimson!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: crimson!important;
}

/* contact section styling */
.contact .title::after{
    content: "get in touch";
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: crimson;
}

.socialMediaBottom a {
    position: relative;
    display: inline-flex;
    width: 40px;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: transparent;
    border: 2px solid crimson;
    border-radius: 50%;
    font-size: 20px;
    color:#0ef;
    text-decoration: none;
    z-index: 1;
    overflow:hidden;
    margin: 40px 20px 30px 0;
    transition: 0.5s ease;
}

.socialMediaBottom a:hover {
    /* background: #0ef; */
    color: #0ef;
    /* box-shadow: 0 0 20px #0ef; */
    /* color:black; */
}

.socialMediaBottom a::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width:0;
    height: 100%;
    background:#111;
    z-index:-1;
    transition: .5s;
}

.socialMediaBottom a:hover::before {
    width: 100%;
}

.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: #333;
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #b3b3b3;
}
.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area{
  display: flex;
  align-items: center;
}
.right form .button-area button{
  color: #fff;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: crimson;
  border: 2px solid crimson;
  transition: all 0.3s ease;
}
.right form .button-area button:hover{
  color: crimson;
  background: none;
}
/* footer section styling */
footer{
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}
footer span a{
    color: crimson;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}


/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
    .unique-btn {
        padding: 8px 8px;
        font-size: 24px;
        margin: 6px;
        border-radius: 10px;
    }
    .unique-btn i {
        font-size: 36px;
    }
    .icon-container {
        gap: 8px;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
    .unique-btn {
        padding: 8px 8px;
        font-size: 24px;
        margin: 6px;
        border-radius: 10px;
    }
    .unique-btn i {
        font-size: 48px;
    }
    .icon-container {
        gap: 8px;
        justify-content: center;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        /* padding: 10px 30px; */
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .projects .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .skills .skills-content {
        flex-direction: column;
        gap: 10px;
    }
    .icon-container {
        justify-content: center;
    }
    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 20px;
    }
    .projects .serv-content .card{
        width: 100%;
    }
    .unique-btn {
        padding: 6px 8px;
        font-size: 20px;
        margin: 12px;
        border-radius: 8px;
    }
    .unique-btn i {
        font-size: 42px;
    }
    .icon-container {
        gap: 6px;
        justify-content: center;
    }
}

@media only screen and (max-width:600px) {
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
    }

    .max-width{
        max-width:max-content;
        padding: 0 5px;
        margin: auto;
        box-sizing: border-box;
    }

    .max-width_about {
        max-width:max-content;
        padding: 120px 15px;
        margin: auto;
        box-sizing: border-box;
    }
    
    .max-width_project {
        max-width:max-content;
        padding: 120px 15px;
        margin: auto;
        box-sizing: border-box;
    }
    
    .max-width_skills {
        max-width:max-content;
        padding: 120px 15px;
        margin: auto;
        box-sizing: border-box;
    }
    
    .max-width_edu {
        max-width:max-content;
        padding: 220px 15px;
        margin: auto;
        box-sizing: border-box;
    }
    
    .max-width_contact {
        max-width:max-content;
        padding: 120px 15px;
        margin: auto;
        box-sizing: border-box;
    }

    section .title{
        position: relative;
        text-align: center;
        font-size: 28px;
        font-weight: 500;
        /* margin-bottom: 6px; */
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif;
    }
    section .title::before{
        content: "";
        position: absolute;
        bottom: 0px;
        left: 50%;
        width: 180px;
        height: 3px;
        background: #111;
        transform: translateX(-50%);
    }
    section .title::after{
        position: absolute;
        bottom: -8px;
        left: 50%;
        font-size: 20px;
        color: crimson;
        padding: 0 5px;
        background: #fff;
        transform: translateX(-50%);
    }

    .navbar .max-width{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .home{
        background: url("images/Phone_background.png") no-repeat;
        min-height: fit-content;
    }

    .home .home-content .text-1{
        font-size: 21px;
    }

    .home .home-content .text-3{
        font-size: 20px;
        margin: 5px 0;
        margin-top: 20px;
    }

    .home .home-content a{
        padding: 10px;
    }

    .socialMedia a{
        height: 40px;
        width:40px;
        border-radius: 50%;
        margin: 15px 5px 15px 5px;
        /* padding: 2px; */
    }

    .skills .skills-content .column {
        width: 100%;
        min-width: unset;
        margin-bottom: 10px;
    }
    .skills .skills-content {
        flex-direction: column;
        gap: 5px;
    }
    .unique-btn {
        padding: 6px 8px;
        font-size: 20px;
        margin: 12px;
        border-radius: 8px;
    }
    .unique-btn i {
        font-size: 42px;
    }
    .icon-container {
        gap: 6px;
        justify-content: center;
    }
}

@media only screen and (max-width: 500px) {
    .home .home-content{
        /* margin-top: -84px; */
    }

    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 20px;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text{
        font-size: 15px;
    }
    
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    .projects .carousel .card,
    .education .carousel .card {
        font-size: 14px;
        padding: 15px 5px;
    }
    .unique-btn {
        padding: 4px 5px;
        font-size: 26px;
        margin: 12px;
        border-radius: 6px;
    }
    .unique-btn i {
        font-size: 38px;
    }
    .icon-container {
        gap: 4px;
    }
}

@media only screen and (max-width: 376px){
    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 20px;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text{
        font-size: 14px;
    }
    section .title{
        position: relative;
        text-align: center;
        font-size: 29px;
        font-weight: 500;
        /* margin-bottom: 6px; */
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif;
    }
    section .title::before{
        content: "";
        position: absolute;
        bottom: 0px;
        left: 50%;
        width: 180px;
        height: 3px;
        background: #111;
        transform: translateX(-50%);
    }
    section .title::after{
        position: absolute;
        bottom: -8px;
        left: 50%;
        font-size: 17px;
        color: crimson;
        padding: 0 5px;
        background: #fff;
        transform: translateX(-50%);
    }

    .projects .carousel .card,
    .education .carousel .card {
        width: 100%;
        /* min-width: unset; */
    }
}

/* KEYFRAME ANIMATION */

@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

#image-container {
    max-width: 600px;
    min-height: 150px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
 }

#image-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

.slide {
    min-width: 100%;
    box-sizing: border-box;
  }

#prev, #next {
    position: absolute;
    top: 50%;
    font-size: 24px;
    cursor: pointer;
    color: white;
    background-color: black;
    padding: 10px;
    border: none;
    outline: none;
  }

#prev { left: 10px; }
#next { right: 10px; }





/* --------------Css Styling for small Screen--------------------- */ 

/* From Uiverse.io by CYBWEBALI */ 



  