/* * {
    font-family: "Red Rose", serif;
    ;
} */
html {
    scroll-behavior: smooth;
}

* {
    font-family: "Unbounded", "Fahkwang", "Iansui", "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 250;
    font-style: normal;
}

/* ham menu */

.ham-bar.come {
 top: 5rem
}

.ham-menu {
    display: none !important;

}

.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}

.line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

/* ham-menu */
.ham-bar a {
    color: rgb(0, 0, 0) !important;
    margin-bottom: 1.5rem;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    font-family: "Unbounded", "Fahkwang", "Iansui", "Josefin Sans", sans-serif;
}


.ham-bar {
    padding: 2rem 1rem 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    position: absolute;
    top: -18rem;
    left: 0;
    right: 0;
    width: 95vw !important;
    justify-self: center;
    background-color: white;
    border-radius: 2rem;
    box-shadow: 0 0 10px #0000001a;
    z-index: -10;
    transition: top 0.5s ease;
    cursor: pointer;
}


body {
    background-color: #F5F5F5 !important;
}

header {
    background-color: rgba(255, 255, 255, 0.281);
    backdrop-filter: blur(3px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 0 10px #0000001a;
}


.menus a {
    text-decoration: none;
    color: black;
    font-size: 13px;
    transition: 0.5s;
    font-weight: 400;
    transition: transform 0.4s;
    font-family: "Unbounded", sans-serif;
}


.menus a:hover {
    color: #7958FC;
    transform: scale(1.4);

}

.menus {
    display: flex;
    justify-content: end;
    gap: 70px;
}

.dev {
    color: #7958FC;
}

.Available-for-prjects {
    color: white;
    padding: 12px 13px;
    background-color: black;
    text-decoration: none;
    border-radius: 37px;
    font-weight: 400;
    font-size: 13px;
    box-sizing: border-box;
    transition: 0.3 ease-in-out;
   

}

.star-cta {
    margin-right: 8px;
    animation: rotateStar 4s linear infinite;
    height: 17px;
    font-weight: 800;
    color: white;
}

@keyframes rotateStar {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 
.say-hello {
    color: #161616;
    font-weight: 450;
    padding: 16px 56px;
    background-color: #C6FB50;
    text-decoration: none;
    border-radius: 37px;
    font-size: 14px;
    margin-top: 20px;
    box-sizing: border-box;
    border: 3px solid #C6FB50;
    transition: 0.3s ease-in-out;

} */


.hero-line {
    font-size: 2.7rem;
    max-width: 60rem;
    font-weight: 400;
}

.icon {
    margin-left: 10px;
}

.name-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    row-gap: 3rem;
}


.Hero-section {
    background-color: white;
    width: 95vw;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    border-radius: 25px;
    box-shadow: 0 0 10px #0000001a;
    margin-top: 8rem;
    margin-bottom: 3rem;
    border-radius: 48px;
    padding: 3rem 3rem;
    scroll-margin-top: 3rem;
    /* Adjust this value to scroll down by the desired amount */


}

.div-of-p {
    max-width: 60rem;
    text-align: center;
}

.p-in-hero {
    color: black;
    justify-self: center;
    font-weight: 350;
    font-size: 15px;
    max-width: 70vw;
   
}


/* gowing-btn */
.glowing-btn {
      padding: 9px 25px;
    border-radius: 2rem;
    background: none;
    border: 2px solid#C4F94F;
    font-size: 20px !important;
    letter-spacing: 2px;
    box-shadow: inset 0 0 0.5rem #C4F94F;
    cursor: pointer;
    position: relative;
    perspective: 6rem;
    color: #7958FC;
    animation: borderAnim 2s linear infinite;
    transition: all 0.3s;
    text-decoration: none;
}


.glowing-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 2rem;
    top: 0;
    left: 0;
    box-shadow: 0 0 1rem #C4F94F;
    transition: all 0.3s;
}

/* .glowing-btn::after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #C4F94F;
    opacity: 0.8;
    transform: translate(-50%, 130%) rotateX(45deg);
    scale: (1.0.35);
    filter: blur(3rem);
    pointer-events: none;
    transition: all 0.3s;
} */
.glowing-btn:hover::before {
    box-shadow: 0 0 15rem #C4F94F;
}

.glowing-btn:hover::after {
    width: 120%;
    height: 120%;
    transform: translate(-50%, 110%) rotateX(45deg)scale((1.0.35));
    filter: blur(5rem);
}

.glowing-text {
    text-shadow: 0 0 1rem rgba(201, 24, 74, 0.7) 0 0 1rem rgba(201, 24, 74, 0.7);
    animation: textAnim 3s linear infinite;
    font-weight: 450;
    font-size: 16px;
}

.glowing-btn:hover {
    background-color: #C4F94F;
    color: black;
    animation: none;
}

.glowing-btn:hover .glowing-text {
    animation: none;
}

@keyframes borderAnim {
    0% {
        opacity: 0.1;
    }

    2% {
        opacity: 1;
    }

    4% {
        opacity: 0.1;
    }

    8% {
        opacity: 1;
    }

    70% {
        opacity: .7;
    }

    100% {
        opacity: 1;
    }

}

@keyframes textAnim {
    0% {
        opacity: .1;
    }

    2% {
        opacity: 1;
    }

    8% {
        opacity: .1;
    }

    9% {
        opacity: 1;
    }

    12% {
        opacity: .1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: .3;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: .7;
    }

    72% {
        opacity: .2;
    }

    77% {
        opacity: .9;
    }

    100% {
        opacity: .9;
    }
}


/* glowing-btn-end */

/* staement sectoin */

.Statement-div {
    background-color: black;
    width: 95vw;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    border-radius: 3rem;
    margin-top: 2rem;
}

.Statement {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    padding: 10rem 2rem;
    text-align: center;
}

.Statement {
    position: relative;
    color: white;
    text-transform: uppercase;
    overflow: hidden;
    background: linear-gradient(90deg, black, #fff, black);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 6s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, .01);
}

@keyframes animate {
    0% {
        background-position: -500%;
    }

    100% {
        background-position: 500%;
    }
}


.About-container,
.skills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.skills span,
.About-container span {
    font-size: 2.3rem;
    font-weight: 450;
    color: #222;
}

.Asmaltl-list {
    font-size: 16px;
    color: #333;
    padding: 0 5px;
    font-weight: 350;
}


.iam-section,
span {
    font-size: 2.3rem;
    font-weight: 450;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: row;

}

/* About */
.second-dpara,
.first-para {
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

/* Skill Section */
.skills-section {
    padding-bottom: 13rem;
    padding-top: 8rem;

}

.skills {
    font-size: 3rem;
    margin-bottom: 8px;
}

.skill-icons-section {
    gap: 3%;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-bottom: 4rem;
    width: 100%;
}

.skill-icons-section img {
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 19px 1px;
    height: 5rem;
}


.About-container {
    position: relative;
    margin-bottom: 3rem;
}

/*  charactoristic boxes */
.charactorist-box {
    padding: 20px 25px;
    border-radius: 1.5rem;
    box-shadow: 0px 0px 7px 0px #00000029;
    background-color: white;
    color: black;

}


.charactorist-box h3 {
    padding-top: 6rem !important;

}

.pt-1{
    font-size: 15px;
}

.container-2 {
    margin-top: 8rem !important;
}

.ico {
    padding: 0.5rem;
    background-color: #C4F94F;
    border-radius: 50%;
    height: 50px;

}

/*  charactoristic boxes end */
.About-container::after {
    content: "";
    position: absolute;
    top: 43px;
    bottom: 0;
    left: 92px;
    right: 0;
    background-color: #7958FC;
    width: 105px;
    justify-self: center;
    height: 21px;
    z-index: -1;
}



.About-section {
    background-color: white;
    color: #222;
    padding-top: 3rem;
    padding-bottom: 5rem;
    width: 95vw;
    justify-self: center;
    border-radius: 4rem;
    margin-bottom: 5rem;
    box-shadow: 0 0 10px 0px #0000001a;

}

/* Animated section */

.containerof-marquee {
    white-space: nowrap;
    overflow: hidden;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    margin: 2px 0;

}



.RightToLeft {
    display: flex;
    gap: 6em;
    animation: RighToLeft 45s infinite linear;
}

/* .LeftToRight {
    display: flex;
    gap: 2em;
    animation: LeftToRight 20s infinite linear;
} */

.para {
    font-size: 5em;
    color: #161616;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0px;
    word-spacing: 1rem;
}



@keyframes RighToLeft {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-300%);
    }
}

/* @keyframes LeftToRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
} */

/* collab section */

.Lets-collab-section {
    background-color: #C6FB50;
    justify-self: center;
    width: 95vw;
    padding: 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 42px;
    margin: 6rem 0;
    box-shadow: 0 0 10px 1px #0000001a;
    flex-direction: column;
}

.lets-collab {
    font-size: 3rem;
    color: #161616;
    margin-bottom: 1rem;
    font-weight: 450;
}

.lets-collab-line {
    font-size: 16px;
    color: #161616;
    text-align: center;
    font-weight: 300;
    margin-bottom: 3rem;
}

.collab-line-div {
    max-width: 44rem;
}

/* Form-section */
.mail-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 38px;
    padding: 17px 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 450;
    text-decoration: none;
    color: #161616;
    transition: all 0.3s ease-in-out;

}

.mail-icon:hover {
    background-color: #161616;
    color: white;

}

/* .mail-icon i{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
   
} */
.form-wrapper {
    width: 38rem;
    height: 29rem;
    background-color: #fff;
    box-shadow: 0px 3px 21px 0px rgb(0 0 0 / 44%);
    border-radius: 1rem;
    position: relative;
    padding: 3rem 3rem;
    display: none;
    transition: all ease-in-out;
}

.change {
    display: block;
}

.close-btn {
    position: absolute;
    top: -0.7rem;
    right: -1.1rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fff;
    border: 0.1rem solid #eee;
    border-radius: 3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.close-btn:hover {
    background-color: #222;
    color: #fff;
    border: 0.1rem solid #fff;
}

.contact-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-self: center;
    justify-content: space-between;

}

.form-heading {
    font-size: 2.5rem;
    color: #333;
}

.input-groups {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.input-group {
    width: 30rem;
    height: 5rem;
}

.field-label {
    font-size: 1rem;
    color: #888;
}

.field {
    height: 100%;
    width: 100%;
    border: none;
    padding: 1rem;
    border-bottom: 2px solid #bbb;
    padding: 0 0 .1rem 0;
    transition: border-bottom 0.5s ease-in-out;
    outline: none;
}

.field:focus {
    border-bottom: .1rem solid #161616;
}

.field::placeholder {
    color: #222;
    transition: color 0.3s;
}

.field:focus::placeholder {
    color: transparent;


}

.textarea-group {
    display: flex;
    flex-direction: column;
}

.textarea-group textarea {
    height: 5rem;
    border-bottom: 0.1rem solid #bbb;
    padding-top: 10px;
    resize: none;
}

.submit-btn {
    width: 8rem;
    height: 45px;
    background-color: #ff4b5a;
    border: none;
    border-radius: 3rem;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 0.3rem 1rem rgba(255, 7, 90, 0.5);
    cursor: pointer;
    position: relative;
    transition: all 0.4s;
    margin-top: 1rem;
}

/* .submit-btn span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
} */

.submit-btn i {
    margin-left: 10px;
}

.submit-btn:hover {
    background-color: #333;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.445);
}

.submit-btn:hover i {
    right: 3rem;
}

.change .mail-icon {
    display: none;
}


/* footer start */

footer {
    background-color: #161616;
    width: 96vw;
    justify-self: center;
    margin: 1rem 0;
    border-radius: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.container-of-footer {
    max-width: 82rem;
}

.first-innter-of-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
    width: 95vw;
    margin-bottom: 6rem;


}

.second-inner-of-footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-between;
    width: 95vw;
    margin-bottom: 3rem;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.curious {
    font-size: 3rem;
    font-weight: 450;
    color: white;
    margin-bottom: 10px;
}

.feelfree {
    font-size: 16px;
    color: white;
    max-width: 45rem;
    word-spacing: 2px;
    text-align: center;

}

.navigaion-section {
    width: 8rem;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: end;

}

.navigaion-section a {
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: end;
    transition-duration: 1s;
    margin-bottom: 6px;
    font-size: 14px;
}

.navigaion-section a:hover {
    color: #C6FB50;
}

.navigaion-section h3 {
    color: white;
    font-size: 19px;
    font-weight: 400;
}

.Name-in-footer h1 {
    color: white;
    font-size: 3rem;
    font-weight: 450;
}

.vivek-in-footer {
    font-size: 14px;
    font-weight: 400;
    color: #7958FC;
    margin-left: 7px;
}


.Design-by {
    color: white;
    font-size: 14px;
    font-weight: 350;

}

.Design-by {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}