@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Mochiy+Pop+One&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Mochiy+Pop+One&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{
    --primary-font: "Poppins", sans-serif; 
    --secondary-font : "Roboto" , sans-serif;
}

body {
    margin: 0;
    background-color: #ffffff;
    padding: 0;
    box-sizing: border-box;
    /* background: #00C9FF;
    background: -webkit-linear-gradient(to right, #92FE9D, #00C9FF);
    background: linear-gradient(to right, #92FE9D, #00C9FF) */
}
*::-webkit-scrollbar {
    width: 0;
}
html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}




/* Navbar section */
.nav {
    margin: 0 auto;
    height: 65px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0; /* Ensure centering works with fixed positioning */
    line-height: 60px;
    text-align: center;
    z-index: 100;
}


.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 4rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
    font-family: var(--primary-font);
    font-weight: 700;
}


.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 4rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #ffffff;
    line-height: 50px;
    font-family: var(--secondary-font);
    font-size: 1.5rem;
    display: inline-block; /* Changed to inline-block to allow transform */
    transition: transform 0.3s ease-in-out;
}

.nav div.main_list ul li a:hover {
    transform: scale(1.1);
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Navbar Animation */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: transparent;
    backdrop-filter: blur(30px);
}   
/* Navbar Ends */

#contact{
    min-height: 100vh;
}
#container3D {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
}

.section{
    margin: 0 auto;
}


/* About section */
.container1{
    display: flex;
    justify-content: center;
    padding-top: 70px;
    align-items: center;
    background-image: url(images/scene-with-green-leaves.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 95vh;
}
.card{
    max-width: 950px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 530px;
    background-color: transparent;
    backdrop-filter: blur(50px);
    background-image: linear-gradient(
        120deg,
        rgba(0,0,0,0.2),
        rgba(255, 255 , 255 , 0.3)
    );
    padding: 2rem;
    z-index: 0;
    border-radius: 20px;
}

/* moving background container */

.section .container1 .card .card__image .inner__card .inner__card2 .chetan-image{
    width: 500px;
    height: 500px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 2s ease forwards;
}

.section .container1 .card .card__image .inner__card {
    background-color: #ffffff;
    animation: morphAlt 10s infinite ease-in-out;
}
@keyframes morphAlt {
    0% {
      border-radius: 80% 20% 50% 30% / 60% 40% 70% 50%;
    }
    10% {
      border-radius: 40% 60% 30% 80% / 50% 70% 30% 80%;
    }
    20% {
      border-radius: 50% 50% 70% 30% / 80% 30% 50% 70%;
    }
    30% {
      border-radius: 30% 80% 50% 60% / 50% 60% 80% 30%;
    }
    40% {
      border-radius: 60% 50% 70% 30% / 40% 80% 30% 50%;
    }
    50% {
      border-radius: 80% 60% 30% 70% / 50% 30% 60% 80%;
    }
    60% {
      border-radius: 30% 70% 40% 60% / 80% 60% 30% 50%;
    }
    70% {
      border-radius: 70% 40% 30% 50% / 60% 30% 80% 50%;
    }
    80% {
      border-radius: 40% 30% 70% 50% / 30% 50% 60% 80%;
    }
    90% {
      border-radius: 50% 60% 80% 30% / 40% 70% 30% 60%;
    }
    100% {
      border-radius: 80% 20% 50% 30% / 60% 40% 70% 50%;
    }
  }



.section .container1 .card .card__image .inner__card .inner__card2 {
    background: linear-gradient(to right, #1fa2ff, #12d8fa, #a6ffcb);
    animation: morph 10s infinite ease-in-out;
  }

  @keyframes morph {
    0% {
      border-radius: 50% 20% 40% 60% / 70% 30% 60% 50%;
    }
    10% {
      border-radius: 60% 30% 50% 70% / 60% 40% 80% 60%;
    }
    20% {
      border-radius: 70% 50% 30% 60% / 80% 50% 40% 30%;
    }
    30% {
      border-radius: 50% 70% 40% 50% / 40% 60% 70% 50%;
    }
    40% {
      border-radius: 60% 40% 50% 60% / 50% 40% 60% 70%;
    }
    50% {
      border-radius: 80% 20% 40% 60% / 70% 50% 60% 40%;
    }
    60% {
      border-radius: 70% 40% 60% 30% / 60% 80% 50% 20%;
    }
    70% {
      border-radius: 60% 50% 40% 70% / 50% 60% 30% 60%;
    }
    80% {
      border-radius: 50% 30% 60% 40% / 70% 30% 50% 60%;
    }
    90% {
      border-radius: 70% 60% 50% 40% / 40% 50% 60% 30%;
    }
    100% {
      border-radius: 50% 20% 40% 60% / 70% 30% 60% 50%;
    }
  }

.section .container1 .card div h1{
    color: #fff;
    font-family: var(--primary-font);
    font-size: 2.2rem;
    line-height: 45px;
    padding: 10px 0px 10px 0px ;
}

.section .container1 .card div p{
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 1.3rem;
    word-spacing: 2px;
    font-weight: 500;
    padding: 10px 30px 10px 0px ;
    overflow: auto;
}
.section .container1 .card div h1{
    opacity: 0;
    transform: translateY(100px);
    animation: fadeInUp 2s ease forwards;
}
.section .container1 .card div p{
    opacity: 0;
    transform: translateY(100px);
    animation: fadeInUp 2.5s ease forwards;
}
.section .container1 .card div .download {
    opacity: 0;
    transform: translateY(100px);
    animation: fadeInUp 3s ease forwards;
}

@keyframes fadeInUp {
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* From Ui verse.io by barisdogansutcu */ 
.section .container1 .card div .download {
    margin-top: 10px;
    padding: 17px 40px;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    color: rgba(90, 210, 223, 255);
    background-color: white;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.5s ease;
}




.section .container1 .card div .download:hover {
    letter-spacing: 3px;
    background-image: linear-gradient(to right, #1e8ded 0%, #05c1cb 100%);
    color: hsl(0, 0%, 100%);
    box-shadow: 0px 7px 29px 0px rgba(79, 172, 254, 0.7), 0px 7px 29px 0px rgba(0, 242, 254, 0.7); /* Matching box-shadow */
}
  
.section .container1 .card div .download:active {
    letter-spacing: 3px;
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    color: hsl(0, 0%, 100%);
    box-shadow: 0px 0px 0px 0px rgba(79, 172, 254, 0.7), 0px 0px 0px 0px rgba(0, 242, 254, 0.7); /* No shadow when active */
    transform: translateY(10px);
    transition: 100ms;
}



/* Media query section */
@media Screen and (min-width: 1025px) and (max-width: 1440px){
    .container {
        margin: 0;
    }
    .section .container1 .card .card__image .inner__card , .section .container1 .card .card__image .inner__card .inner__card2 , .section .container1 .card .card__image .inner__card .inner__card2 .chetan-image{
        height: 350px;
        width: 350px;
    }
    .section .container1 .card{
        height: 450px;
    }

}
@media Screen and (min-width: 601px) and (max-width: 1024px){
    .container {
        margin: 0;
    }
    .navTrigger {
        display: block;
    }
    .nav .container div.logo {
        margin-left: 15px;
        margin-top: 0px;
        padding-top: 0px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background: #00C9FF;
        background: -webkit-linear-gradient(to right, #92FE9D, #00C9FF);
        background: linear-gradient(to right, #92FE9D, #00C9FF);
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 2.5rem;
        padding: 10px;
    }
    .nav div.media_button {
        display: block;
    }
    .section .container1 .card .card__image .inner__card , .section .container1 .card .card__image .inner__card .inner__card2 , .section .container1 .card .card__image .inner__card .inner__card2 .chetan-image{
        height: 270px;
        width: 270px;
    }
    .section .container1 .card{
        height: 420px;
        width: 550px;
    }
    .section .container1 .card div h1{
        color: #ffffff;
        font-family: var(--primary-font);
        font-size: 1.5rem;
        line-height: 30px;
    }
    
    .section .container1 .card div p{
        color: #ffffff;
        font-family: var(--secondary-font);
        font-size: 1rem;
        font-weight: 500;
        padding: 0px ;
    }
    .section .container1 .card > div:nth-child(1) {
        height: 320px;
        overflow: auto  ;
        padding: 0px;
    }
    .section .container1 .card div .download {
        margin-top: 10px;
        padding: 15px 30px;
        border-radius: 50px;
        cursor: pointer;
        border: 0;
        background-color: white;
        box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-size: 10px;
        transition: all 0.5s ease;
    }
    .card__container{
        width: 610px;
        display: grid;
        height: 1000px;
        grid-template-columns: repeat(2 , 1fr);
        justify-content: center;
        gap: 10px;
      }
    .project__card{
        width: 650px;
        padding-top: 20px ;
        margin: 0 auto ;
    }
    

}

@media screen and (max-width:600px) {
    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 5px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        background-position: center top;
        background: #00C9FF;
        background: -webkit-linear-gradient(to right, #92FE9D, #00C9FF);
        background: linear-gradient(to right, #92FE9D, #00C9FF);
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 2rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
    .section .container1 .card .card__image .inner__card , .section .container1 .card .card__image .inner__card .inner__card2 , .section .container1 .card .card__image .inner__card .inner__card2 .chetan-image{
        width: 130px;
        height: 130px;
    }
    .section .container1 .card{
        height: 250px;
        width: 400px;
    }
    .section .container1 .card div h1{
        color: #ffffff;
        font-family: var(--primary-font);
        font-size: 1rem;
        line-height: 20px;
    }
    
    .section .container1 .card div p{
        color: #ffffff;
        font-family: var(--secondary-font);
        font-size: 0.6rem;
        font-weight: 500;
        padding: 0px ;
    }
    .section .container1 .card > div:nth-child(1) {
        height: 200px;
        padding: 0px;
        overflow: auto;
    }
    .section .container1 .card div .download {
        margin-top: 10px;
        padding: 8px 10px;
        border-radius: 50px;
        cursor: pointer;
        border: 0;
        background-color: white;
        box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.5rem;
        transition: all 0.5s ease;
    }
}


/* Project Section */


.container2 {
    background: #00C9FF; 
    background: -webkit-linear-gradient(to right, #92FE9D, #00C9FF);  
    background: linear-gradient(to right, #92FE9D, #00C9FF); 
    background-size: cover;
}


.project__card{
    width: 1140px;
    padding-top: 20px ;
    margin: 0 auto ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.project__heading{
    padding: 10px 10px 30px 40px;
    color: #fff;
}
  
.card__items {
    width: wrap;
    max-width: 300px;
    height: 450px;
    background-color: transparent;
    backdrop-filter: blur(30px);
    transition: all 0.5s ease;
    border-radius: 10px;
    background-size: cover;
    box-shadow: 0px 0px 10px 5px  rgba(0, 0, 0, 0.705);
    overflow: hidden;
    margin: 20px auto;
}
    
.card__items:hover {
    border-radius: 15px;
    cursor: pointer;
    transform: scale(1.1);
    box-shadow: 0px 0px 10px 5px  rgba(0, 0, 0, 0.705);
}
    
.first-content {
height: 100%;
width: 100%;
transition: all 0.5s;
opacity: 1;
border-radius: 10px;
}

.card__items:hover .first-content {
height: 0px;
opacity: 0;
}

.second-content {
    height: 0%;
    width: 100%;
    opacity: 0;
    padding: 10px;
    background-color: #ffffff; 
    border-radius: 15px;
    transition: all 0.5s;
    transform: rotate(90deg) scale(-1);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: auto;
}


.card__items:hover .second-content {
opacity: 1;
height: 100%;
font-size: 1.8rem;
transform: rotate(0deg);
}
.skills_used {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    width: 200px;
    margin-top: 10px;
}

.skills_used img {
    width: 100%;
}
.project__heading{
padding-bottom: 30px;
color: #fff;
font-family: var(--primary-font);
font-size: 2.5rem;
}

.product__card__image{
width: 300px;
}
.project__card__heading{
color: #000;
font-size: 1.5rem;
font-weight: 600;
font-family: var(--primary-font);
}
.project__card__paragraph{
color: #9c9c9c;
font-size: 1rem;
font-family: var(--secondary-font);
}

/* From Uiverse.io by cssbuttons-io */ 
.card__items__button {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin-top: 2rem;
}

.card__items__button:hover {
    background-color: #23c483;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
    transform: translateY(-7px);
}

.card__items__button:active {
    transform: translateY(-1px);
}
.card__container{
    display: grid;
    width: 1130px;
    grid-template-columns: repeat(3 , 1fr );
    justify-content: center;
    gap: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) { 
    .card__container{
    display: grid;
    width: 750px;
    margin-bottom: 20px;
    grid-template-columns: repeat(2 , 1fr );
    justify-content: center;
    gap: 30px;
    }
    .project__card{
    width: 800px;
    padding-top: 20px ;
    margin: 0 auto ;
    margin-bottom: 2rem;
    }
    .card__items {
    width: wrap;
    max-width: 250px;
    height: 400px;
    background-color: transparent;
    backdrop-filter: blur(30px);
    transition: all 0.5s ease;
    border-radius: 10px;
    background-size: cover;
    box-shadow: 0px 0px 10px 5px  rgba(0, 0, 0, 0.705);
    overflow: hidden;
    margin: 20px auto;
    }

    }

@media screen and (max-width: 768px){
    .card__container{
        display: grid;
        width: 500px;
        grid-template-columns: repeat(2, 1fr );
        justify-content: center;
        gap: 2rem;
    }
    .project__card{
        width: 380px;
        padding-top: 20px ;
        margin: 0 auto ;
    }
    .card__items {
        width: wrap;
        max-width: 200px;
        height: 350px;
        background-color: transparent;
        backdrop-filter: blur(30px);
        transition: all 0.5s ease;
        border-radius: 10px;
        background-size: cover;
        box-shadow: 0px 0px 10px 5px  rgba(0, 0, 0, 0.705);
        overflow: hidden;
        margin: 20px auto;
    }
    .skills_used {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
        width: 180px;
        margin-top: 10px;
    }

}

.skill_main_container {
    margin: 0 auto;
    width: 80%;
    margin-top: 2rem;
}

.skills__container {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 20px;
}
.skill__container__heading{
    color: #23c483;
    font-family: var(--primary-font);
    font-size: 2.5rem;
}

.skill__container__heading {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.skills__item {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, 1fr);
}
.skills_images_container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.skills__item img {
    width: 50%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.skills__item img:hover {
    transform: scale(1.3);
}
@media (max-width: 1024px) {
    .skills__item {
        grid-template-columns: repeat(4, 1fr);
    }
    .skills__container {
        padding: 40px;
        background-color: #ffffff;
        border-radius: 20px;
        margin-top: 250px;
    }
}

@media (max-width: 768px) {
    .skills__item {
        grid-template-columns: repeat(2, 1fr);
    }
    
}
@media screen and (max-width: 500px){
    .card__container {
            display: grid;
            width: 350px;
            grid-template-columns: repeat(1, 1fr);
            justify-content: center;
            gap: 2rem;
        }
    
        .project__card {
            width: 350px;
            padding-top: 20px;
            margin: 0 auto;
        }
        
}
/* Qualification section */

.qualification__container{
    margin: 0 auto ;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 1140px;
}
.container3 {
    background: #00C9FF;
    background: -webkit-linear-gradient(to right, #92FE9D, #00C9FF);
    background: linear-gradient(to right, #92FE9D, #00C9FF);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* the 3 div my skill container */
.skill__container {
    display: grid;
    gap: 2rem;
    padding: 5rem 1rem;
}

.section__subheader {
    max-width: fit-content;
    padding: 10px;
    margin-bottom: 0.5rem;
    font-family: var(--primary-font);
    font-size: 1.1rem;
    color: #ffffff;
    border-radius: 100%;
    border: 3px #ffffff solid;
}
.your-solution-oriented{
    font-family: var(--primary-font);
    color: #ffffff;
    font-size: 2.4rem;
    line-height: 1;
}
.your-solution-oriented-paragraph{
    font-family: var(--secondary-font);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.2;
}
.skill__grid {
    display: grid;
    gap: 1rem;
}
.skill__card {
    grid-area: 1 / 1 / 3 / 2;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skill__card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.35);
}
.skill__card:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
}
.heading-h4{
    color: black;
    font-size: 1.4rem;
    font-family: var(--primary-font);
    line-height: 1.2;
}
.paragraph-h4{
    color: #9c9c9c;
    font-family: var(--secondary-font);
    font-size: 1rem;
}
.skill__card:nth-child(2) {
    grid-area: 2/2/4/3;
}

.skill__card:nth-child(3) {
    grid-area: 3/1/5/2;
}
.skill__card span {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #4d49cf;
}

@media (max-width: 540px) {
    .skill__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }

    .skill__card:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .skill__card:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .skill__card:nth-child(3) {
        grid-area: 3 / 1 / 4 / 2;
    }
    .section__subheader {
        max-width: fit-content;
        padding: 10px;
        margin-bottom: 0.5rem;
        font-family: var(--primary-font);
        font-size: 0.9rem;
        color: #ffffff;
        border-radius: 100%;
        border: 3px #ffffff solid;
    }
    .your-solution-oriented {
        font-family: var(--primary-font);
        color: #ffffff;
        font-size: 2rem;
        line-height: 1;
    }

    .your-solution-oriented-paragraph {
        font-family: var(--secondary-font);
        color: #ffffff;
        font-size: 1rem;
        line-height: 1.2;
    }
}

@media (width > 768px) {
    .skill__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}
.slider-heading{
    color: #ffffff;
    font-family: var(--primary-font);
    font-size: 2.5rem;
}
/* slider of 10 images of certificate */
.slider {
    width: 80%;
    height: 150px;
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    mask-image: linear-gradient(to right, transparent, #fff 10%, #fff 90%, transparent);
}

.slider .list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item {
    height: var(--height);
    width: var(--width);
    position: absolute;
    left: 100%;
    animation: autoRun 15s linear infinite;
    animation-delay: calc((15s / var(--quantity)) * (var(--position) - 1));
}

.slider .list .item img {
    width: 100%;
}

@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: calc(var(--width) * -1);
    }
}

.slider:hover .item {
    animation-play-state: paused !important;
}

.slider .item:hover {
    border: 3px solid transparent;
}

/* my skills graph representation  */
.skills-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    width: 90%;
    font-family: var(--primary-font);
    padding: 20px;
    background: #ffffffe2;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.skills-section h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 2rem;
}


/* Contact me section  */
.contact_us_2 * {
    font-family: var(--primary-font);
}

.contact_us_2 .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
}

.contact_us_2 .responsive-cell-block {
    min-height: 75px;
}

.contact_us_2 input:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
}

.contact_us_2 .container-block {
    min-height: 75px;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: block;
}

.contact_us_2 .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.contact_us_2 .responsive-container-block.big-container {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    position: relative;
    height: auto;
}

.contact_us_2 .responsive-container-block.container {
    position: static;
    min-height: 75px;
    flex-direction: column;
    z-index: 2;
    max-width: 800px;
    margin-top: 120px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
}
/* submit btn */
.contact_us_2 .submit-btn {
    width: 98%;
    font-family: inherit;
    font-size: 20px;
    background: #00C9FF;
    background: -webkit-linear-gradient(to left, #92FE9D, #00C9FF);
    background: linear-gradient(to left, #92FE9D, #00C9FF);
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}

.contact_us_2 .submit-btn span {
    display: block;
    margin-left: 0.3em;
    transition: all 1s ease-in-out;
}

.contact_us_2 .submit-btn svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.contact_us_2 .submit-btn:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.contact_us_2 .submit-btn:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.contact_us_2 .submit-btn:hover span {
    transform: translateX(30em);
}

.contact_us_2 .submit-btn:active {
    transform: scale(0.95);
}   

@keyframes fly-1 {
    from {
        transform: translateY(0.2em);
    }

    to {
        transform: translateY(-0.2em);
    }
}


.contact_us_2 .container-block.form-wrapper {
    background-color: white;
    max-width: 799px;
    text-align: center;
    padding-top: 50px;
    padding-right: 40px;
    padding-bottom: 50px;
    padding-left: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

.contact_us_2 .text-blk.contactus-head {
    font-size: 36px;
    line-height: 50px;
    font-weight: 200;
}

.contact_us_2 .text-blk.contactus-subhead {
    color: #9c9c9c;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
}

.contact_us_2 .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 26px;
    margin-left: 0px;
    min-height: 50px;
}

.contact_us_2 .input {
    width: 96%;
    height: 50px;
    padding-top: 1px;
    padding-right: 15px;
    padding-bottom: 1px;
    padding-left: 15px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #eeeeee;
    border-right-color: #eeeeee;
    border-bottom-color: #eeeeee;
    border-left-color: #eeeeee;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    font-size: 16px;
    color: black;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.contact_us_2 .textinput {
    width: 98%;
    min-height: 150px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #eeeeee;
    border-right-color: #eeeeee;
    border-bottom-color: #eeeeee;
    border-left-color: #eeeeee;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    font-size: 16px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}



.contact_us_2 .form-box {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

.contact_us_2 .social-media-links {
    width: 250px;
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

.contact_us_2 .link-img {
    width: 30px;
    height: 30px;
}

.contact_us_2 .text-blk.input-title {
    text-align: left;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    color: #9c9c9c;
}

.contact_us_2 ::placeholder {
    color: #dadada;
}

.contact_us_2 .blueBG {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px;
    height: 300px;
    background: #00C9FF;
    background: -webkit-linear-gradient(to right, #92FE9D, #00C9FF);
    background: linear-gradient(to right, #92FE9D, #00C9FF);
}

@media (max-width: 768px) {
    .contact_us_2 .submit-btn {
        width: 100%;
    }

    .contact_us_2 .input {
        width: 100%;
    }

    .contact_us_2 .textinput {
        width: 100%;
    }

    .contact_us_2 .container-block.form-wrapper {
        margin-top: 80px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_2 .text-blk.input-title {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }

    .contact_us_2 .responsive-container-block.container {
        margin-top: 80px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
    }

    .contact_us_2 .container-block.form-wrapper {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_2 .text-blk.contactus-head {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 500px) {
    .contact_us_2 .container-block.form-wrapper {
        padding-top: 50px;
        padding-right: 15px;
        padding-bottom: 50px;
        padding-left: 15px;
    }

    .contact_us_2 .container-block.form-wrapper {
        margin-top: 60px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_2 .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 15px;
        margin-left: 0px;
    }

    .contact_us_2 .responsive-container-block {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 35px;
        margin-left: 0px;
    }

    .contact_us_2 .text-blk.input-title {
        font-size: 12px;
    }

    .contact_us_2 .responsive-container-block.container {
        margin-top: 50px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
    }

    .contact_us_2 .container-block.form-wrapper {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_2 .responsive-container-block.big-container {
        padding-top: 10px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
    }

    .contact_us_2 .text-blk.contactus-head {
        font-size: 26px;
        line-height: 34px;
    }

    .contact_us_2 .input {
        height: 45px;
    }
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
}

.wk-desk-1 {
    width: 8.333333%;
}

.wk-desk-2 {
    width: 16.666667%;
}

.wk-desk-3 {
    width: 25%;
}

.wk-desk-4 {
    width: 33.333333%;
}

.wk-desk-5 {
    width: 41.666667%;
}

.wk-desk-6 {
    width: 50%;
}

.wk-desk-7 {
    width: 58.333333%;
}

.wk-desk-8 {
    width: 66.666667%;
}

.wk-desk-9 {
    width: 75%;
}

.wk-desk-10 {
    width: 83.333333%;
}

.wk-desk-11 {
    width: 91.666667%;
}

.wk-desk-12 {
    width: 100%;
}

@media (max-width: 1024px) {
    .wk-ipadp-1 {
        width: 8.333333%;
    }

    .wk-ipadp-2 {
        width: 16.666667%;
    }

    .wk-ipadp-3 {
        width: 25%;
    }

    .wk-ipadp-4 {
        width: 33.333333%;
    }

    .wk-ipadp-5 {
        width: 41.666667%;
    }

    .wk-ipadp-6 {
        width: 50%;
    }

    .wk-ipadp-7 {
        width: 58.333333%;
    }

    .wk-ipadp-8 {
        width: 66.666667%;
    }

    .wk-ipadp-9 {
        width: 75%;
    }

    .wk-ipadp-10 {
        width: 83.333333%;
    }

    .wk-ipadp-11 {
        width: 91.666667%;
    }

    .wk-ipadp-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wk-tab-1 {
        width: 8.333333%;
    }

    .wk-tab-2 {
        width: 16.666667%;
    }

    .wk-tab-3 {
        width: 25%;
    }

    .wk-tab-4 {
        width: 33.333333%;
    }

    .wk-tab-5 {
        width: 41.666667%;
    }

    .wk-tab-6 {
        width: 50%;
    }

    .wk-tab-7 {
        width: 58.333333%;
    }

    .wk-tab-8 {
        width: 66.666667%;
    }

    .wk-tab-9 {
        width: 75%;
    }

    .wk-tab-10 {
        width: 83.333333%;
    }

    .wk-tab-11 {
        width: 91.666667%;
    }

    .wk-tab-12 {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .wk-mobile-1 {
        width: 8.333333%;
    }

    .wk-mobile-2 {
        width: 16.666667%;
    }

    .wk-mobile-3 {
        width: 25%;
    }

    .wk-mobile-4 {
        width: 33.333333%;
    }

    .wk-mobile-5 {
        width: 41.666667%;
    }

    .wk-mobile-6 {
        width: 50%;
    }

    .wk-mobile-7 {
        width: 58.333333%;
    }

    .wk-mobile-8 {
        width: 66.666667%;
    }

    .wk-mobile-9 {
        width: 75%;
    }

    .wk-mobile-10 {
        width: 83.333333%;
    }

    .wk-mobile-11 {
        width: 91.666667%;
    }

    .wk-mobile-12 {
        width: 100%;
    }
}

/* From Uiverse.io by vinodjangid07 */
.contact-me-btn {
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.contact-me-btn-github{
    background-color: rgb(31, 31, 31);
}

.contact-me-btn-linkedin {
    background: #0274b3;
}
.contact-me-btn .svgIcon {
    transition-duration: .3s;
}

.contact-me-btn .svgIcon path {
    fill: white;
}

.contact-me-btn .text {
    position: absolute;
    color: rgb(255, 255, 255);
    width: 120px;
    font-weight: 600;
    opacity: 0;
    transition-duration: .4s;
}

.contact-me-btn:hover {
    width: 110px;
    transition-duration: .4s;
    border-radius: 30px;
}

.contact-me-btn:hover .text {
    opacity: 1;
    transition-duration: .4s;
}

.contact-me-btn:hover .svgIcon {
    opacity: 0;
    transition-duration: .3s;
}
.linkedin-button {
    position: fixed;
    z-index: 20000;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    animation: sway 2s infinite alternate;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 500px;
    transition: transform 0.5s, box-shadow 0.5s;
}

.linkedin-button:hover {
    transform: scale(1.5) rotate(-360deg) translateY(-1em);
    box-shadow: 0 0 20px 0 rgba(29, 161, 242, 0.5);
}

.icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s;
}

.icon:hover {
    transform: scale(8);
    filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.9))
}