* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-color: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    cursor: none;
}

.cursor-inner {
    width: 5px;
    height: 5px;
    background-color: #fd5956;
    transition: width .4s ease 0s, height .4s ease 0s;
}

.cursor-outer {
    width: 30px;
    height: 30px;
    border: 2px solid hsla(1, 98%, 66%, 0.5);
    transition: border .4s ease 0s;
}

.cursor-inner,
.cursor-outer {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 200;
    pointer-events: none;
}

.home {
    min-height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-areas: "stack";
}

li,
a,
button {
    color: #4d4d4d;
    text-decoration: none;
}

header {
    position: fixed;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5vh 5% .5vh 5%;
    transition: all 0.3s ease 0s;
    z-index: 100;
}


.logo {
    width: 72px;
}

.navtext {
    list-style: none;
}

.navtext li {
    display: inline-block;
    padding: 0px 20px;
    font-size: .9rem;
}

.navtext a {
    transition: all 0.3s ease 0s;
    cursor: none;
}

.navtext a:hover {
    color: #fd5956;
}


button {
    height: 2.5rem;
    width: 9rem;
    padding: 9px 25px;
    background-color: #252525;
    border: none;
    cursor: none;
    transition: all 0.3s ease 0s;
    color: #ffffff;
    font-weight: 600;
}

button:hover {
    background-color: #fd5956;

}

.backgroundtext {
    font-family: "Fasthand", cursive;
    font-weight: 400;
    font-style: normal;
    color: rgba(253, 89, 86, 0.07);
    font-size: 30vw;
    text-overflow: clip clip;
    overflow: hidden;
    white-space: nowrap;
    z-index: -1;
    position: absolute;
    max-width: 100vw;
    line-height: 100%;
    top: 4rem;
}

.hola {
    padding-top: 8vw;
    font-weight: 600;
    color: #252525;
    font-size: 1.2vw;
}

.rashmika {
    color: #fd5956;
    font-size: 1.5vw;
    padding-top: 1vw;
}

.texts {
    padding-left: 14vw;
    padding-top: 1rem;
}

.texts h1 {
    line-height: 100%;
    font-size: 5vw;
}

.maintext1 {
    padding-top: 0rem;
    color: #252525;
}

.maintext2 {
   
    color: #fd5956;
}

.maintext3 {
    padding-left: 3rem;
    color: #fd5956;
}

.sameline {
    display: flex;
}

.maintext4 {
    color: #252525;
}

.description {
    padding-top: 2vw;
    font-weight: 400;
    font-size: 0.8rem;
    color: #4d4d4d;
    width: 25vw;
}

.icons {
    padding-top: 1.5rem;
}

.fa-brands {
    padding-right: 2rem;
}

.button2 {
    background-color: #fd5956;
    margin-bottom: 4rem;
    margin-top: 2rem;

}

.button2:hover {
    box-shadow: 0px 0px 30px 15px hsla(1, 98%, 66%, 0.2);
}

a {
    cursor: none;
}

i {
    transition: all 0.3s ease 0s;
}

i:hover {
    color: #fd5956;
}

.grow-cursor {
    width: 30px;
    height: 30px;
    animation-name: grow-cursor-anim;
    animation-duration: 0.5s;
    mix-blend-mode:difference;
}

.vanish-cursor {
    border: 2px solid hsla(1, 98%, 66%, 0);
}

.content {
    display: flex;
}

.photo{
    padding-left: 17.5vw;
    padding-right: 15vw;
    height: 32vw;
    width: auto;
    margin-top: 10rem;
}

.line {
    width: 37.5vw;
    position: absolute;
    top: 29rem;
    left: 19vw;
    z-index: -1;
}

.underline{
    background-color: #fd5956;
    height: 2.5px;
    border-radius: 1.5px;
    position: absolute;
    width: 15px;
}

.active{
    color: #fd5956;
}

.whitebar{
    position: fixed;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5% 1rem 5%;
    transition: all 0.3s ease 0s;
    box-shadow: 0px 0px 30px 15px hsla(0, 0%, 30%, 0.10);
    background-color: hsla(0, 0%, 100%, 0.5);
}

.watermark{
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-align: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    color: #fd595600;
    animation: fade;
    animation-duration: 3s;
    font-weight: 600;
    width: 0;
    height: 0;
}

@keyframes fade {
    0%   {
        width: 100%;
        height: 100%;
        color: #fd5956;
        background-color: rgb(255, 255, 255);}
    50%  {
        color: #fd5956;
        background-color: rgb(255, 255, 255);}
    100% {
        width: 100%;
        height: 100%;
        color: rgba(253, 89, 86, 0);
        background-color: rgba(255, 255, 255, 0);}
  }

  .section{
    height: 100vh;
    width: auto;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
}

.caption{
    display: flex;
    font-size: 3rem;
    font-weight: 600;
    padding-left: auto;
    padding-right: auto;
    padding-top: 15vh;
    padding-bottom: 2vh;
    justify-content: center;
}

.redtext{
    color: #fd5956;
}

.ashtext{
    color: #4d4d4d;
}

.graytext{
    color: #252525;
}

.descriptionprojects{
    padding-top: 4vh;
    font-weight: 400;
    font-size: 0.9rem;
    color: #4d4d4d;
}

.serviceboxcontainer{
    display: flex;
    justify-content: center;
    padding-top: 10vh;
}
.servicebox{
    box-shadow: 0px 10px 20px 10px hsla(0, 0%, 30%, 0.05);
    width: 19.5vw;
    height: 26vw;
    margin-top: 2vh;
    margin: 5vh 3vw 0 3vw;
    transition: 0.3s ease;
}
.middlebox{
    box-shadow: 0px 15px 30px 10px hsla(0, 0%, 30%, 0.10);
    margin-top: 0vh;
    width: 24vw;
    height: 32vw;
}

.servicebox:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 14px 7px hsla(0, 0%, 30%, 0.05);
}

.service{
    margin-top: 2vw;
    text-align: start;
}

h6{
    font-weight: 400;
    font-size: 0.8rem;
    color: #4d4d4d;
}

.png{
    filter: invert(41%) sepia(35%) saturate(1129%) hue-rotate(314deg) brightness(111%) contrast(99%);
    width: 8vw;
    height: auto;
    margin-left: 1vw;
}

.servicetext{
    padding-top: 2vh;
}

.service{
    padding: 0 3vw 0 3vw;
}

.servicedescription{
    text-align: justify;
    padding-top: 1vw;
}

.projectssection{
    height: 100vh;
}

.descriptionprojects {
    align-self: center;
    font-weight: 400;
    font-size: 0.8rem;
    color: #4d4d4d;
    width: 25vw;
}

.projectsstack{
    position: relative;
}

.projectsgradient{
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 85%, rgb(255, 255, 255) 100%);
    height: 90vh;
    width: 100vw;
    position: absolute;
    z-index: -1;
}


.projectsscroll{
    height: 80vh;
    max-width: 100vw;
    display: flex;
    overflow-x: auto;
}

.projectsscroll2{
    height: 80vh;
    width: 100vw;
    display: flex;
    overflow-x: auto;
}

.projectsscroll::-webkit-scrollbar {
    display: none;
}

.projectsscroll2::-webkit-scrollbar {
    display: none;
}

.indivproject{
    box-shadow: 0px 10px 20px 10px hsla(0, 0%, 30%, 0.1);
    height: 65vh;
    min-width: 45vh;
    margin: 4vh 2vh 0 2vh;
    z-index: -10;
    text-align: left;
    position: relative;
    padding-bottom: 10vh;
}

.projectleft{
    margin: 4vh 2vh 0 15vw;
}

.projectright{
    margin: 4vh 15vw 0 2vh;
}

.indivproject img{
    width: 45vh;
    height: auto;
    object-fit: cover;
}

.indivproject h4{
    padding: 4vh 10% 0 10%;
    font-size: 3.5vh;
    line-height: 100%;
    align-items: center;
    color: #4d4d4d;
    font-weight: 500;
}

.indivproject h6{
    padding: 2vh 10% 0 10%;
    font-size: 1.6vh;
    height: 22.5vh;
}

.indivproject h5{
    padding: 4vh 10% 0 10%;
    font-size: 2vh;
    color: rgb(134, 134, 134);
    font-weight: 500;
    bottom: 4vh;
    position: absolute;
}

.projectdarken{
    background: linear-gradient(rgba(0, 0, 0, 0) 65%, rgb(0, 0, 0,0.25) 90%,rgba(0, 0, 0, 0.4) 100%);
    width: 45vh;
    height: 22.5vh;
    position: absolute;
}

.gallery{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.galleryimage{
    width: 30vw;
    height: auto;
}

.gallery .container{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.thumb {
    display: inline-block;
    position: relative;
    width: 30vw;
    height: 20vw;
    overflow: hidden;
    margin: 1vw;
  }
  .thumb img {
    display: block;
    height: auto;
    position: static;
    width: 100%;
  }
  .overlay {
    background: rgba(244, 244, 244, 0.7);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 30vw;
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    -webkit-transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .info {
    padding: 1vw;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  
  .text {
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
  }
  .text p {
    font-size: 3vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0s;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .text h2 {
    font-family: "helvetica neue", sans-serif;
    margin: 0;
    font-size: 1vw;
    line-height: 1;
    opacity: 0;
    font-weight: 400;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0s;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .thumb:hover .overlay {
    opacity: 1;
  }
  .thumb:hover .info span {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.15s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transition-delay: 0.15s;
    -moz-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
  }
  .thumb:hover .info .text p {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 0.15s;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    -webkit-transition-delay: 0.15s;
    -moz-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
  }
  .thumb:hover .info .text h2 {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 0.25s;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
  }

  .contactsection{
    margin-top: 15vh;
    height: 105vh;
    width: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    h4{
        font-size: 1rem;
        font-weight: 400;
        margin: 0 20vw 0 20vw;
        color: #4d4d4d;
    }
    ul{
        display: flex;
        flex-direction: row;
    }
  }

  .formparent{
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:4vh;
  }

  .form{
    width: 60vw;
    height: 27.5vw;
    box-shadow: 0px 10px 20px 10px hsla(0, 0%, 30%, 0.1);
  }

  .namemail{
    text-align: start;
    /* margin: 4vw 2vw 2vw 2vw; */
    align-items: center;
    display: flex;
    flex-direction: row;
    padding: 3vw 3vw 1.5vw 3vw;
  }

  .input1{
    width: 30vw;
  }

  .input2{
    width: 30vw;
    padding-left: 2vw;
  }

  .input3{
    width: 60vw;
    margin-left: 1vw;
    text-align: start;
    padding-left: 2vw;
    margin-bottom: 2vw;
  }

  .nminput{
    height: 3vw;
    margin-top: 1vw;
    width: 25vw;
    padding: 1vw;
    resize: none;
  }

  .message{
    height: 8vw;
    margin-top: 1vw;
    width: 54vw;
    padding: 1vw;
    text-align: left;
    resize: none;
  }
  
  
  .footer{
    height: 5vh;
    background-color: #fd5956;
    margin: auto;
    p{
        color: #ffffff;
        font-weight: 300;
        font-size: 0.8rem;
        text-align: center;
        padding-top: 1vh;
    }
  }

  .techicons{
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2vh;
  }

  .techlayer{
    display: flex;
    align-items: center;
  }

  .technitem{
    display: flex;
    flex-direction: column;
    width: 12.5rem;
    height: 10rem;
    align-items: center;
  }

  .icon{
    width: 4rem;
    height: auto;
    color: #252525;
    transition: all 0.3s ease 0s;
}

.icon:hover{
    color: #fd5956;
}

.icontext{
    margin-top: 0.75rem;
    font-size: 1rem;
    color: #4d4d4d;
    text-align: center;
}

.icontext:hover{
    color: #fd5956;
} 