/*  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');
@import url('root.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: var(--bg-500);
    overflow-x: hidden;
    /* background: -webkit-linear-gradient(top, var(--bg-500), var(--bg_color2)); */
}

.spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, var(--primary-500), transparent 60%);
    mix-blend-mode: soft-light;
    transform: translate(-50%, -50%);
    z-index: 999;

}

html {
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #313131;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section {
    padding: 100px 0;
}

/* .max-width {
    max-width: 1200px;
    padding: 0 0px;
    margin: auto;
} */

.max-width {
    max-width: 100%;
    padding: 0 12vw;
    margin: 0;
    height: auto;
    box-sizing: border-box;
}

.about,
.projects,
.skills,
.teams,
.contact,
footer {
    font-family: 'Poppins', sans-serif;
    /* background: -webkit-linear-gradient(bottom, var(--bg-500), var(--bg-500), var(--bg_color2)); */
}

.about .about-content,
.projects .proj-content,
.skills .skills-content,
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.projects {
    flex-flow: column;
}

section .title {
    color: var(--secondary_accent);
    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: 5px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: var(--secondary_accent);
    transform: translateX(-50%);
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #ffffff;
    padding: 0 5px;
    background: #121010;
    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;
}

.navbar.sticky {
    padding: 15px 0;
    background: rgb(23, 22, 22, .9);
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(right, var(--tertiary_accent), var(--tertiary_accent), var(--primary_accent));
    background-clip: text;
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span {
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(right, var(--tertiary_accent), var(--primary_accent));
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: var(--secondary_accent);
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    opacity: .5;
}


/* menu btn styling */
.menu-btn {
    font-size: 3.5vw;
    cursor: pointer;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(left, #A3CEFF, #64ADFF);
    background-clip: text;
    display: none;
}

.scroll-up-btn {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    justify-content: center;
    align-items: center;
    padding: 12px 10px 15px 10px;
    height: max-content;
    width: 60px;
    border: 3px solid #64ADFF;
    box-shadow: 2px 2px 2px rgba(0, 119, 181, 1);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 32px;
}

.scroll-up-btn p {
    font-size: 1rem;
    line-height: 25px;
    font-weight: 500;
}

.scroll-up-btn:hover {
    transform: scale(1.05) rotate(-3deg);
}

.scroll-down-btn {
    position: fixed;
    height: 50px;
    width: 45px;
    /* background: -webkit-linear-gradient(right, #c3e5f1, var(--secondary_accent)); */
    border: 3px solid var(--primary_accent);
    box-shadow: 2px 2px 2px #0077b5;
    right: 30px;
    bottom: 30px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 1;
    display: block;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.scroll-down-btn:hover {
    transform: scale(1.05) rotate(3deg);
}

.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    /* display: block; */
    pointer-events: auto;
}

.scroll-down-btn.remove {
    opacity: 0;
    display: none;
}

.scroll-up-btn:hover,
.scroll-down-btn:hover {
    filter: brightness(90%);
}


/* home section styling */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
    padding-top: 150px;
}

.home .max-width {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .max-width .row {
    margin-right: 0;
}

.home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home .home-content .text-1 {
    font-size: 27px;
}

.home .home-content .text-2 {
    font-size: 35px;
    font-weight: 500;
    margin-left: -3px;
}

.span-1 {
    font-weight: 900;
}

.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;
}

.title-tile {
    display: flex;
    flex-direction: column;
    column-gap: 5vw;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tag {
    position: absolute;
    padding: 20px;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: left;
    border-radius: 30px;
    font-size: 2.5vw;
    font-weight: 300;
    color: var(--primary-500);
    /* text-shadow:
        0 .3ch 15px var(--shadow),
        3px -2px 4px #5e5d5d; */
    /* background-clip: text; */

}

.name-tag {
    top: 120px;
    right: 70px;
}

.position-tag {
    top: 320px;
    left: 70px;
}

.info-tag {
    font-size: 38px;
    position: unset;
    bottom: 20px;
    left: 70px;
    text-align: center;
}

.name-tag .harsh {
    font-weight: 900;
    font-size: 4vw;
}

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

.thumbnail svg {
    width: 40vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* #rect39, #rect40, #rect41, #rect42, #rect43, #rect44, #path44, #rect45, #rect46, #rect47, #rect48, #rect52, #rect53, #rect54, #rect55, #rect56, #rect57, #rect58, #rect59, #circle1, #path1-5, #path1-2, #path2  {
    transform: translateY(123px) translateX(30px) scale(.85) ;
    
} */

/* #rect50, #rect51, #rect60, #rect61, #rect62, #rect63, #path1, #path1-3, #path1-4{
    transform: translateY(123px) translateX(30px) scale(.85) ;

} */

#shadows {
    opacity: 0;
}

#block1,
#block2,
#dial,
#half-dial {
    opacity: 0;

}

.animated {
    animation: skeleton-out-in 1.2s ease alternate;
    animation-delay: .2s;
}

.animated-alt {
    animation: skeleton-with-fill 1.2s ease forwards;
    animation-delay: .2s;
}

.animated-opacity {
    animation: block-opacity 1.2s ease forwards;
}

.animated-opacity-reverse {
    animation: block-opacity-reverse 1.2s ease forwards;
}


@keyframes skeleton-out-in {
    0% {}

    75% {

        transform: translateY(-123px) translateX(-80px) scale(1.2);
        stroke: var(--primary_accent);
        /* fill: #fff; */
    }

    100% {
        /* transform: translateY(0px) translateX(-25px) scale(1.1); */

    }

}

@keyframes skeleton-with-fill {
    0% {}

    87% {
        transform: translateY(-123px) translateX(-80px) scale(1.2);
        fill: var(--secondary_accent);
        /* fill: #fff; */
    }

    100% {}
}

@keyframes block-opacity {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes block-opacity-reverse {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}


/* about section styling */
.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: 6px;
}

.about .about-content .right {
    width: 55%;
}

.about .about-content .right .text {
    color: var(--secondary_accent);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about .about-content .right .text span {
    color: var(--primary_accent);
}

.about .about-content .right p {
    color: var(--secondary_accent);
    text-align: justify;
}

.about .about-content .right a {
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    /* border: 2px solid crimson; */
    transition: all 0.3s ease;
}

.about .about-content .right a:hover {
    color: var(--primary-500);
    background: none;
}

.about .about-content .right .download-btn a {
    display: inline-block;
    background: transparent;
    background-color: #75fac8;
    background-image: linear-gradient(90deg, #3a65efad, #06c77d);
}

.projects .title::after {
    content: "what I do";
}

.switch-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.switch-button {
    border-radius: 30px;
    border: 3px solid var(--primary_accent);
    overflow: hidden;
    width: 350px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
    position: relative;
    padding-right: 150px;
}

.switch-button:before {
    content: "Projects";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.switch-button-checkbox {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.switch-button-checkbox:checked+.switch-button-label:before {
    transform: translateX(180px);
    transition: transform 300ms linear;
    background: -webkit-linear-gradient(right, var(--secondary_accent), var(--primary_accent));
}

.switch-button-checkbox+.switch-button-label {
    position: relative;
    padding: 15px 0;
    display: block;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;

}

.switch-button-checkbox+.switch-button-label:before {
    content: "";
    background: -webkit-linear-gradient(left, var(--secondary_accent), var(--primary_accent));
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 25px;
    transform: translateX(0);
    transition: transform 300ms;
}

.switch-button-label-span {
    position: relative;
}

.project-container {
    display: none;
}

.project-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 50px;

}

.case-card,
.project-card {
    display: flex;
    flex-direction: row;
    gap: 5vw;
    border-radius: 30px;
    padding: 50px;
    color: rgb(172, 172, 172);
    /* border: 3px solid rgba(2, 90, 177, .5); */
    border: 3px solid rgb(100,173,255, 0.6);
    box-shadow: rgba(2, 90, 177, .20) 0 -25px 18px -14px inset, rgba(2, 90, 177, .25) 0 2px 4px, rgba(2, 90, 177, .25) 0 4px 8px, rgba(2, 90, 177, .25) 0 8px 16px, rgba(2, 90, 177, .25) 0 16px 32px;
}

.case-card .card-thumb {
    flex: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.case-card img,
.project-card img {
    width: 100%;
}

.case-card .card-txt {
    display: flex;
    flex-direction: column;
    padding-top: 5%;
    flex: 65%;
}

.case-card span,
.project-card span {
    font-weight: 300;

}

.btn-view-case {
    margin-top: 50px;
    align-self: flex-start;
    /* background-color: rgba(2, 90, 177, .7); */
    background-color: var(--primary_accent);
    border-radius: 100px;
    box-shadow: rgba(2, 90, 177, .2) 0 -25px 18px -14px inset, rgba(2, 90, 177, .15) 0 2px 4px, rgba(2, 90, 177, .15) 0 4px 8px, rgba(2, 90, 177, .15) 0 8px 16px, rgba(2, 90, 177, .15) 0 16px 32px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-family: CerebriSans-Regular, -apple-system, system-ui, Roboto, sans-serif;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.btn-view-case:hover {
    box-shadow: rgba(2, 90, 177, .35) 0 -25px 18px -14px inset, rgba(2, 90, 177, .25) 0 2px 4px, rgba(2, 90, 177, .25) 0 4px 8px, rgba(2, 90, 177, .25) 0 8px 16px, rgba(2, 90, 177, .25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
}

/* .case-card.card1 .btn-view-case {
    background-color: rgba(196, 0, 15, .8);
    box-shadow: rgba(196, 0, 15, .2) 0 -25px 18px -14px inset, rgba(196, 0, 15, .15) 0 1px 2px, rgba(196, 0, 15, .15) 0 2px 4px, rgba(196, 0, 15, .15) 0 4px 8px, rgba(196, 0, 15, .15) 0 8px 16px, rgba(196, 0, 15, .15) 0 16px 32px;

}

.case-card.card1 .btn-view-case:hover {
    box-shadow: rgba(196, 0, 15, .35) 0 -25px 18px -14px inset, rgba(196, 0, 15, .25) 0 1px 2px, rgba(196, 0, 15, .25) 0 2px 4px, rgba(196, 0, 15, .25) 0 4px 8px, rgba(196, 0, 15, .25) 0 8px 16px, rgba(196, 0, 15, .25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg); 
}*/

/* .case-card.card1 {
    border: 3px solid rgba(196, 0, 15, .5);
    box-shadow: rgba(196, 0, 15, .20) 0 -25px 18px -14px inset, rgba(196, 0, 15, .25) 0 2px 4px, rgba(196, 0, 15, .25) 0 4px 8px, rgba(196, 0, 15, .25) 0 8px 16px, rgba(196, 0, 15, .25) 0 16px 32px;

}

.case-card.card2 {
    border: 3px solid rgba(2, 90, 177, .5);
    box-shadow: rgba(2, 90, 177, .20) 0 -25px 18px -14px inset, rgba(2, 90, 177, .25) 0 2px 4px, rgba(2, 90, 177, .25) 0 4px 8px, rgba(2, 90, 177, .25) 0 8px 16px, rgba(2, 90, 177, .25) 0 16px 32px;

}

.case-card.card3 {
    border: 3px solid rgba(54, 74, 111, 1);
    box-shadow: rgba(2, 90, 177, .20) 0 -25px 18px -14px inset, rgba(2, 90, 177, .25) 0 2px 4px, rgba(2, 90, 177, .25) 0 4px 8px, rgba(2, 90, 177, .25) 0 8px 16px, rgba(2, 90, 177, .25) 0 16px 32px;

} */

/* .case-card.card2 .btn-view-case {
    background-color: rgba(2, 90, 177, .7);
    box-shadow: rgba(2, 90, 177, .2) 0 -25px 18px -14px inset, rgba(2, 90, 177, .15) 0 2px 4px, rgba(2, 90, 177, .15) 0 4px 8px, rgba(2, 90, 177, .15) 0 8px 16px, rgba(2, 90, 177, .15) 0 16px 32px;
}

.case-card.card2 .btn-view-case:hover {
    box-shadow: rgba(2, 90, 177, .35) 0 -25px 18px -14px inset, rgba(2, 90, 177, .25) 0 2px 4px, rgba(2, 90, 177, .25) 0 4px 8px, rgba(2, 90, 177, .25) 0 8px 16px, rgba(2, 90, 177, .25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);

} */

/* .case-card.card3 .btn-view-case {
    background-color: rgba(54, 74, 111, 1);
    box-shadow: rgba(54, 74, 111, .2) 0 -25px 18px -14px inset, rgba(54, 74, 111, .15) 0 2px 4px, rgba(54, 74, 111, .15) 0 4px 8px, rgba(54, 74, 111, .15) 0 8px 16px, rgba(54, 74, 111, .15) 0 16px 32px;
}

.case-card.card3 .btn-view-case:hover {
    box-shadow: rgba(54, 74, 111, .35) 0 -25px 18px -14px inset, rgba(54, 74, 111, .25) 0 2px 4px, rgba(54, 74, 111, .25) 0 4px 8px, rgba(54, 74, 111, .25) 0 8px 16px, rgba(54, 74, 111, .25) 0 16px 32px;
} */

.case-card.card1 img {
    transform: scaleX(-1);
}

.case-card.card3 {
    
}

.button-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.project-card .card-thumb {
    flex: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.project-card .card-txt {
    flex: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .project-card.card1 {
    border: 3px solid rgba(25, 135, 84, .3);
    box-shadow: rgba(25, 135, 84, .20) 0 -25px 18px -14px inset, rgba(25, 135, 84, .25) 0 2px 4px, rgba(25, 135, 84, .25) 0 4px 8px, rgba(25, 135, 84, .25) 0 8px 16px, rgba(25, 135, 84, .25) 0 16px 32px;

} */

/* .project-card.card1 .btn-view-case {
    background-color: rgba(16, 90, 60, 1);
    box-shadow: rgba(16, 90, 60, .2) 0 -25px 18px -14px inset, rgba(16, 90, 60, .15) 0 2px 4px, rgba(16, 90, 60, .15) 0 4px 8px, rgba(16, 90, 60, .15) 0 8px 16px, rgba(16, 90, 60, .15) 0 16px 32px;
}

.project-card.card1 .btn-view-case:hover {
    box-shadow: rgba(16, 90, 60, .35) 0 -25px 18px -14px inset, rgba(16, 90, 60, .25) 0 2px 4px, rgba(16, 90, 60, .25) 0 4px 8px, rgba(16, 90, 60, .25) 0 8px 16px, rgba(16, 90, 60, .25) 0 16px 32px;
} */


/* .project-card.card2 {
    border: 3px solid rgba(124, 140, 153, .3);
    box-shadow: rgba(124, 140, 153, .20) 0 -25px 18px -14px inset, rgba(124, 140, 153, .25) 0 2px 4px, rgba(124, 140, 153, .25) 0 4px 8px, rgba(124, 140, 153, .25) 0 8px 16px, rgba(124, 140, 153, .25) 0 16px 32px;
} */

/* .project-card.card2 .btn-view-case {
    background-color: rgba(62, 62, 62, 1);
    box-shadow: rgba(62, 62, 62, .2) 0 -25px 18px -14px inset, rgba(62, 62, 62, .15) 0 2px 4px, rgba(62, 62, 62, .15) 0 4px 8px, rgba(62, 62, 62, .15) 0 8px 16px, rgba(62, 62, 62, .15) 0 16px 32px;
}

.project-card.card2 .btn-view-case:hover {
    box-shadow: rgba(62, 62, 62, .35) 0 -25px 18px -14px inset, rgba(62, 62, 62, .25) 0 2px 4px, rgba(62, 62, 62, .25) 0 4px 8px, rgba(62, 62, 62, .25) 0 8px 16px, rgba(62, 62, 62, .25) 0 16px 32px;
} */








.skills .title::after {
    content: "what I know";
}

.skill {
    width: 100%;
}

.skill-name {
    width: 100%;
    text-align: left;
    color: var(--secondary_accent);
    letter-spacing: .2px;
    margin-top: 10px;
    font-family: Inter Regular, sans-serif
}

.skill-bar {
    height: 8px;
    background-image: linear-gradient(90deg, var(--secondary_accent), var(--primary_accent));
    border-radius: 20px
}


.ux {
    width: 90%;
}

.proto {
    width: 90%;
}

.code {
    width: 80%;
}

.vd {
    width: 80%;
}

.pd {
    width: 70%;
}

.ut {
    width: 60%;
}

.skill-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 52px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr
}

.skill-strength {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex
}

.skill-bar-bg {
    width: 78%;
    height: 8px;
    background-color: #e5f3ff;
    border-radius: 20px;
    margin-right: 10px;
}

.skill-percentage {
    width: 46px;
    color: var(--primary_accent);
    text-align: left;
    font-size: 15px;
    line-height: 16px;
}

/* contact section styling */
.contact .title::after {
    content: "get in touch";
}

.contact .contact-content .column {
    width: 100%;
    font-size: 1.5vw;
}

.contact .contact-content .left p {
    color: var(--secondary_accent);
    /* text-align: justify; */
}

.contact .contact-content .left  {
    margin: 10px 0;
}

.icons {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact .contact-content .row {
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info {
    color: var(--secondary_accent);
    margin-left: 30px;
}

.contact .contact-content .row i {
    font-size: 25px;
    color: var(--secondary_accent);
}

.contact .contact-content .info .head {
    font-weight: 500;
}

.contact .contact-content .info .sub-title {
    color: var(--secondary_accent);
    font-size: 1.2vw;
}

.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 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 23px;
    color: var(--primary_accent);
    text-align: center;
}

footer span a {
    color: var(--primary_accent);
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}

.social-row {
    display: flex;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-icons li {
    list-style: none;
}

.social-icons li a {
    display: flex;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    margin-right: 10px;
    display: block;
    border-radius: 25%;
    position: relative;
    overflow: hidden;
    border: 1px solid #9b9999;
    box-shadow: 0px 0px 2px #ffffff;
    z-index: 1;
}

.social-icons li a .icon {
    position: relative;
    color: #464545;
    transition: .5s;
    z-index: 3;
}

.social-icons li:nth-child(1) a:hover .icon {
    color: #0077B5;
}

.social-icons li:nth-child(1) a:hover {
    border: 1px solid #7ca0b4;
    box-shadow: 0px 0px 20px #0077B5;
}

.social-icons li:nth-child(2) a:hover .icon {
    color: #c71610;
}

.social-icons li:nth-child(2) a:hover {
    border: 1px solid #f67672;
    box-shadow: 0px 0px 20px #c71610;
}

.social-icons li:nth-child(3) a:hover .icon {
    color: #6e5494;
}

.social-icons li:nth-child(3) a:hover {
    border: 1px solid #817691;
    box-shadow: 0px 0px 20px #6e5494;
}

.social-icons li:nth-child(4) a:hover .icon {
    color: #ea4c89;
}

.social-icons li:nth-child(4) a:hover {
    border: 1px solid #e76f9d;
    box-shadow: 0px 0px 20px #ea4c89;
}





/* responsive media query start */

@media (hover: none) and (pointer: coarse) {

    .spotlight {
        display: none;
    }

    /* Add styles for mouseless devices here */
    .social-icons li a .icon {
        position: relative;
        color: #464545;
        transition: .5s;
        z-index: 3;
    }

    .social-icons li:nth-child(1) a .icon {
        color: #0077B5;
    }

    .social-icons li:nth-child(1) a {
        border: 1px solid #7ca0b4;
        box-shadow: 0px 0px 20px #0077B5;
    }

    .social-icons li:nth-child(2) a .icon {
        color: #c71610;
    }

    .social-icons li:nth-child(2) a {
        border: 1px solid #f67672;
        box-shadow: 0px 0px 20px #c71610;
    }

    .social-icons li:nth-child(3) a .icon {
        color: #6e5494;
    }

    .social-icons li:nth-child(3) a {
        border: 1px solid #817691;
        box-shadow: 0px 0px 20px #6e5494;
    }
}

@media (max-width: 1367px) {

    .thumbnail {
        width: 110%;
    }

    .thumbnail svg {
        width: 70%;
    }

    .info-tag {
        font-size: 3.5vw;
    }

    .home {
        padding-top: 20vh;
    }

    .contact .contact-content .column {
        width: 80%;
        font-size: 2.5vw;
    }

}



@media (max-width: 1104px) {
    .max-width {
        padding: 0 50px;
    }


    .about .about-content .left img {
        height: 350px;
        width: 350px;
    }

    .thumbnail {
        width: auto;
    }

    .thumbnail svg {
        width: 70vw;
    }

}

@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }

    .title-tile {
        flex-direction: column;
        row-gap: 7vw;
        /* justify-content: center;
        align-items: center; */
    }

    .skill-grid {
        grid-column-gap: 48px;
        grid-template-rows: auto auto auto auto auto auto;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before {
        content: "\f00d";
        -webkit-text-fill-color: transparent;
        background: -webkit-linear-gradient(left, #A3CEFF, #64ADFF);
        background-clip: text;
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: var(--bg-500);
        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: 45px;
    }

    .home {
        height: auto;
    }

    .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;
    }

    .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%;
    }

    .skills .skills-content .column,
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 912px) {
    .home .home-content .text-2 {
        font-size: 60px;
    }

    .home .home-content .text-3 {
        font-size: 32px;
    }

    .home .home-content a {
        font-size: 20px;
    }

    .case-card,
    .project-card {
        flex-direction: column;
    }

    .case-card.case-card.card1,
    .case-card.card3 {
        flex-direction: column-reverse;
    }

    .project-card.card2 {
        flex-direction: column-reverse;
    }


    .case-card img,
    .project-card img {
        width: 40vw;
    }


}

@media (max-width: 768px) {
    .navbar .menu li a {
        font-size: 40px;
        margin-left: 10px;
    }
}

@media (max-width: 500px) {
    .menu-btn {
        font-size: 4.5vw;
    }

    section {
        padding: 20px 0;
        font-size: 70%;
    }

    .navbar .menu li a {
        font-size: 30px;
        margin-left: 8px;
    }

    .home {
        padding-top: 10vh;
    }

    .home .home-content .text-2 {
        font-size: 50px;
    }

    .home .home-content .text-3 {
        font-size: 27px;
    }

    .thumbnail {
        width: auto;
    }

    .contact .right form .fields {
        flex-direction: column;
    }

    .contact .right form .name,
    .contact .right form .email {
        margin: 0;
    }

    .right form .error-box {
        width: 150px;
    }

    .contact .contact-content .column {
        width: 80%;
        font-size: 3vw;
    }

    .button-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .btn-view-case {
        align-self: auto;
        font-size: 16px;
    }

    .project-card .btn-view-case:nth-child(2) {
        margin-top: 0px;
    }

    .scroll-up-btn {
        right: 25px;
        bottom: 25px;
        height: max-content;
        width: min-content;
        font-size: 23px;
        line-height: 38px;
    }

    .scroll-down-btn {
        display: flex;
        right: 25px;
        bottom: 25px;
        height: 50px;
        width: 45px;
        font-size: 23px;
        line-height: 38px;
        justify-content: center;
        align-items: center;
    }

}

@media screen and (max-width: 479px) {
    .skill-grid {
        grid-row-gap: 16px;
        grid-template-columns: minmax(200px, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .skill-grid {
        grid-column-gap: 32px;
        grid-row-gap: 18px;
        grid-template-columns: minmax(160px, 3fr) minmax(160px, 3fr);
        margin-top: 8px;
    }
}