*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

.navbar a:hover {
    color: aquamarine;
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

body {
    background-color: aliceblue;

    /* box-sizing: border-box; */
    color: white;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}

.INTRO {
    padding-top: 100px;
    padding-bottom: 30px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.5)), url(./background-image-1.webp);
    background-position: top;
    background-size: cover;
}

.header {
    position: relative;
}

.navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.s {
    text-underline-offset: 15px;
}

.navbar-header {
    margin-left: 60px;
    font-weight: 700;
    font-size: 30px;
}

.navbar-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-right: 100px;
}

@media(max-width:760px) {
    .navbar-items {
        flex-direction: column;
    }
}

.nav-item:hover {
    color: aquamarine;
    cursor: pointer;
    transform: translateY(-2px);
}

.nav-item {
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 10px;
}

.header {
    background-image: url(./background-image.jpg);
    background-size: cover;
    background-position: top;
    height: 100vh;
    /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); */
}

a {
    text-decoration: none;
    color: white;
}

.logos {
    position: absolute;
    top: 20%;
    right: 1%;
    margin: auto;
    backface-visibility: hidden;
}

.logo {
    margin-bottom: 20px;
    font-size: 40px;
}

.logo:hover {
    color: aquamarine;
    cursor: pointer;
    transform: translateY(-3px);
    transition: all .3s;
}

.Name-template {
    position: absolute;
    top: 45%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.name {
    animation: moveInRight 2s;
    /* animation: heading 2s; */
    display: inline-block;
    font-size: 70px;
    margin: auto;
    font-weight: 900;
    letter-spacing: 5px;
    word-spacing: 9px;
    /* letter-spacing: 100px; */
    text-transform: none;
}

.secondary-button {
    text-decoration: none;
    border: none;
    color: aquamarine;
    font-weight: 700;
    transition: all .4s;
}

.secondary-button:hover {
    transform: translateY(-3px);
    background-color: rgb(40, 180, 133);
    color: white;
    padding: 7px;
    font-weight: 700;
    border-radius: 2px;
}

.tag-line {
    letter-spacing: 2px;
    display: flex;
    flex-wrap: wrap;
    word-spacing: 3px;
    margin-bottom: 50px;
    word-spacing: 2px;
    font-family: 'Roboto Mono', monospace;
    font-size: 20px;
    text-transform: none;
}

@keyframes integrate {
    0% {
        opacity: 0;
        letter-spacing: 20px;
    }

    100% {
        opacity: 1;
        letter-spacing: 3px;
    }
}

@keyframes heading {
    0% {
        background-color: aliceblue;
    }

    100% {
        background-color: none;
    }
}

/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: orange;
    }
}

@media (min-width:1190px) {
    .tag-line {
        text-transform: none;
        overflow: hidden;
        /* Ensures the content is not revealed until the animation */
        border-right: .15em solid orange;
        /* The typwriter cursor */
        white-space: nowrap;
        /* Keeps the content on a single line */
        /* letter-spacing: .15em; */
        animation:
            typing 3.5s steps(40, end),
            blink-caret .75s step-end infinite;
    }
}

@media (max-width:768px) {
    .logo {
        font-size: 30px;
    }
}

.content {
    color: black;
    background-color: aliceblue;
    /* height: 100px; */
}

.heading {
    display: flex;
    justify-content: center;
    letter-spacing: 1px;
    word-spacing: 15px;
    text-transform: uppercase;
    background-image: linear-gradient(to left, rgb(30, 137, 237), rgb(0, 95, 154));
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.underline {
    font-weight: 900;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 40px;
}

.profile-pic {
    max-width: 250px;
    border-radius: 50%;
}

.about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 45px;
}

.profile-pic {
    margin-left: 100px;
}

.intro {
    word-spacing: 3px;
    text-transform: none;
    font-size: 23px;
    margin-left: 100px;
    align-self: center;
}

.s {
    color: aquamarine;
}

@media (max-width: 768px) {

    .about {
        flex-direction: column;
        justify-content: space-evenly;
    }

    .profile-pic {
        margin-bottom: 30px;
        align-self: center;
        justify-self: center;
    }
}

.skills {
    background-image: linear-gradient(to right, rgb(0, 13, 70, 0.7), rgb(76, 129, 202, 0.7)), url(./background-image.jpg);
    background-size: cover;
    background-position: top;
    color: white;
    position: relative;
}

.skills-cover {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    letter-spacing: 1px;
    word-spacing: 15px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.skill-cards {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

.skill-card {
    border-top: 10px solid rgb(0, 13, 70);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    background-color: aliceblue;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 50px;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.4);
}

.skill-logo {
    color: rgb(2, 30, 151);
    font-weight: 700;
    font-size: 40px;
    text-align: center;
}

.skill-card-head {
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 5px;
}

.skill-tag-line {
    margin-bottom: 15px;
    text-transform: none;
    color: #777;
    font-weight: 700;
}

.skill-heading-two {
    font-size: 20px;
    color: rgb(30, 137, 237);
    font-weight: 700;
}

.skill-content-two {
    font-size: 40px;
    margin-bottom: 15px;
}

.skill-heading-three {
    font-weight: 700;
    color: rgb(30, 137, 237);
}

.skill-content-three img {
    width: 70px;
}

.pug {
    width: 70px;
}

#express {
    height: 60px;
    width: auto;
}

.footer {
    background-color: #ffffff;
    color: black;
    display: flex;
    flex: row wrap;
    justify-content: space-between;
}

.footer {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    padding: 20px;
    align-items: center;
}

.copyrights {
    /* align-self: flex-end; */
    font-size: 13px;
    text-transform: none;
}

.footer-head {
    color: rgb(0, 13, 70);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-icon {
    text-transform: none;
    font-weight: 700;
    font-size: 20px;
    margin-right: 130px;
    margin-left: 70px;
    ;
}

.projects {
    background-image: linear-gradient(to left, rgba(24, 66, 203, 0.8), rgba(0, 12, 78, 0.8)), url(./Proj.jpg);
    background-size: cover;
    background-position: top;
    /* height: 100vh; */
    padding-bottom: 80px;
}

.Projects {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.project-card {
    flex-basis: 550px;
    color: black;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px;
    border-radius: 3%;
    padding: 10px;
    transition: all .4s;
    border-bottom: 10px solid rgb(108, 0, 85);
}

.project-card:hover {
    scale: 1.05;
    border: 10px solid aquamarine;
    background-color: rgb(209, 255, 240);
}

.project-domain {
    text-transform: none;
    font-weight: 700;
    font-size: 22px;
    color: rgb(0, 0, 140);
    margin-bottom: 16px;
}

.Project-Heading {
    margin-top: 20px;
    text-align: center;
    color: aliceblue;
    text-underline-offset: 30px;
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 3px;
}

.project-title {
    font-size: 30px;
    font-weight: 900;
    text-underline-offset: 20px;
    margin-bottom: 35px;
}

.project-image {
    width: 550px;
    height: 300px;
    size: cover;
}

.project-description {
    display: inline-block;
    padding: 5px;
    text-transform: none;
    font-size: 18px;
    margin-bottom: 10px;
}

@media(max-width: 550px) {
    .project-image {
        width: 450px;
    }
}

.project-languages {
    color: #777;
    font-weight: 700;
    font-size: 20px;
}

.hobbies {
    background-image: linear-gradient(to left, rgba(210, 140, 0, 0.8), rgba(126, 0, 0, 0.8)), url(./360_F_166474363_tR9EAqmceFliSN9gCOSK4dfRiYEVsT8b.jpg);
    background-size: cover;
    background-position: top;
    /* height: 100vh; */
    padding-bottom: 80px;
}

.Hobbies {
    height: 70vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.checkbox {
    font-family: 'Comic Neue', cursive;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 30px;
    text-transform: none;
    font-family: 'Prompt', sans-serif;
}

.check__box {
    display: none;
}

.hobbies-heading {
    display: none;
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    word-spacing: 4px;
    margin-top: 40px;
    margin-left: 10px;
    text-underline-offset: 30px;
    animation: integrate 1.2s;
}

.checkbox__box {
    height: 30px;
    width: 30px;
    border: 1px solid white;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .2s;
}

.check__box:checked+.checkbox::after {
    content: '';
    color: aquamarine;
}

.check__box:checked+.checkbox__box::after {
    content: '\2713';
    color: white;
}

.check__box:checked+.checkbox__box {
    background-color: rgb(0, 255, 0);
    border: 1px solid rgb(0, 255, 0);
}

.primary-button:link,
.primary-button:visited {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    color: #777;
    background-color: white;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 40px;
    border-radius: 100px;
    animation: moveUp 2s;
    transition: all 0.2s;
    position: relative;
    /*for primary-button::after positioning*/
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgb(75, 255, 75);
    color: white;
}

.primary-button:active {
    transform: translateY(-1px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.primary-button::after {
    /* this is a child button of .primary-button(we can set it behind by z-index -1, above by z-index 1) */
    content: "";
    /*content dosent matter but its comulsory to mention*/
    display: inline-block;
    background-color: white;
    /*as parent's*/
    height: 100%;
    width: 100%;
    border-radius: 100px;
    /*positioning*/
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.4s;
}

.primary-button:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

@keyframes moveUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@media(min-width:625px) {
    .Project-Heading {
        animation: integrate 2.3s;
    }

    .hobbies-heading {
        animation: integrate 2.3s;
    }
}

.hobby {
    background-image: linear-gradient(to left, rgba(210, 140, 0, 0.8), rgba(126, 0, 0, 0.8)), url(./360_F_166474363_tR9EAqmceFliSN9gCOSK4dfRiYEVsT8b.jpg);
    background-size: cover;
    background-position: top;
    padding-bottom: 80px;
}

.hobbies-heading {
    text-align: center;
}

.hobbbies {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.badmintonn {
    background-image: linear-gradient(to left, rgb(255, 157, 0.1), rgba(255, 174, 0, 0.1)), url(./Badminton.jpg);
    background-position: top;
    background-size: cover;
}

.webb {
    background-image: linear-gradient(to left, rgba(0, 0, 95, 0.5), rgba(135, 135, 214, 0.5)), url(./web.webp);
    background-position: bottom;
    background-size: cover;
}

.artt {
    background-image: linear-gradient(to left, rgb(255, 0, 0, 0.4), rgb(0, 153, 255, 0.4)), url(./Art.webp);
    background-position: top;
    background-size: cover;
}

.musicc {
    background-image: linear-gradient(to left, rgba(0, 0, 95, 0.5), rgba(135, 135, 214, 0.5)), url(./Music.webp);
    background-position: top;
    background-size: cover;
}

.hobbyy {
    width: 60%;
    padding: 3%;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}

.hobbyy .heading {
    color: white;
    text-underline-offset: 20px;
    margin-bottom: 50px;
}

.hobbyy .description {
    display: inline-flex;
}

@media(max-width:768px) {
    .hobbyy {
        width: 70%;
    }

    .badmintonn {
        background-position: right;
    }
}

.friends {
    background-image: linear-gradient(to right, rgb(255, 0, 0, 0.4), rgb(0, 153, 255, 0.4)), url(./frinds.jpeg);
    background-position: center;
    background-size: cover;
}

@media(max-width:844px) {
    .friends .heading {
        text-decoration: none;
    }
}

.before-form {
    display: block;
    animation: fadeIn 2s;
}

.underline-friends {
    font-weight: 900;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 40px;
}

.footer._hobby {
    background-color: antiquewhite;
}

.contact {
    background-image: linear-gradient(to right, rgba(255, 0, 0, 0.8), rgba(0, 102, 255, 0.8)), url(./cont.jpg);
    background-size: cover;
    background-position: top;
    min-height: 90vh;
    padding-bottom: 80px;
}

._contact {
    font-size: 35px;
    margin-top: 40px;
    color: white;
    text-underline-offset: 30px;
    animation: moveInLeft 2s;
}

.contact-boxes {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    font-size: 30px;
}

.contact-box {
    flex-basis: 420px;
    background-color: #4267B2;
    padding: 1%;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
    transition: all .4s;
}

.contact-box:hover {

    scale: 1.1;
}

.facebook {
    background-color: #1778F2;
}

.insta {
    background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
}

.whatsapp {
    background-color: #4FCE5D;
}

.call {
    background-color: blue;
}

.github {
    background-color: #171515;
}

.gmail {
    background-color: white;
    color: red;
}

.tagline__contact {
    text-align: center;
    margin-top: 40px;
    text-transform: none;
    font-size: 20px;
    animation: moveInRight 2s;
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.education {
    background-image: linear-gradient(to right, rgb(126, 213, 111, 0.8), rgb(40, 180, 133, 0.8)), url(./ed.cms);
    background-size: cover;
    background-position: top;
    /* height: 100vh; */
    padding-bottom: 80px;
}

.Hobby {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

td {
    margin-bottom: 5px;
    margin-top: 5px;
}

#c {
    border-radius: 100px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);

}

.edcation {
    background-image: linear-gradient(to right, rgb(126, 213, 111, 0.8), rgb(40, 180, 133, 0.8)), url(./ed.cms);
    background-size: cover;
    background-position: top;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 80vh;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.rkps {
    background-image: linear-gradient(to right, rgba(204, 255, 63, 0.7), rgba(255, 116, 69, 0.7)), url(./WhatsApp\ Image\ 2022-08-16\ at\ 9.01.01\ PM.jpeg);
    background-position: center;
    padding-left: 5%;
    padding-right: 10%;
    text-align: left;
    padding-bottom: 15%;
}

@media (max-width: 768px) {
    .rkps {
        padding-top: 15%;
    }
}

.sc {
    background-image: linear-gradient(to left, rgba(191, 255, 63, 0.7), rgba(69, 249, 255, 0.7)), url(./sc.webp);
    padding-left: 10%;
    padding-right: 5%;
    text-align: right;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    transform: translateY(-15%);
    padding-bottom: 15%;
    padding-top: 15%;
}

.pratiba {
    background-image: linear-gradient(to right, rgba(63, 255, 220, 0.7), rgba(131, 69, 255, 0.7)), url(./WhatsApp\ Image\ 2022-08-17\ at\ 1.34.56\ AM.jpeg);
    padding-left: 5%;
    padding-right: 10%;
    text-align: left;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    transform: translateY(-30%);
    padding-bottom: 15%;
    padding-top: 15%;
}

.iitb {
    background-image: linear-gradient(to left, rgba(181, 63, 255, 0.7), rgba(255, 69, 69, 0.7)), url(./iitbcover.webp);
    padding-left: 10%;
    padding-right: 5%;
    text-align: right;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    transform: translateY(-45%);
    padding-bottom: 15%;
    padding-top: 15%;
}

.edcation .heading {
    color: white;
    text-underline-offset: 20px;
}

.edcation .description {
    font-size: 30px;
    text-transform: none;
    font-family: 'Comic Sans MS', sans-serif;
}

.edd {
    height: 460vh;
}

.footer a :hover {
    color: rgb(67, 40, 163);
}

.footer a {
    color: black;
}

.contact-box a:hover {
    color: aquamarine;
}

.gmail a {
    color: red;
}

.gmail a:hover {
    color: rgb(255, 104, 104);
}

.hobbyy .description {
    font-size: 18px;
    text-transform: none;
    font-family: 'DynaPuff', cursive;
}