@import url('https://fonts.googleapis.com/css2?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');

* {
    font-family: "Poppins", sans-serif;
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #ebfbc6;
    background: linear-gradient(to right, #ffffff, #ecf0bf);
    color: rgb(0, 0, 0);
    overflow-x: hidden;

}

li,
a,
button {
    font-weight: 400;
    color: #000000;
    text-decoration: none;
}

.GreenText {
    background: linear-gradient(109.6deg, rgb(107, 187, 104) 11.2%, rgb(175, 230, 48) 96.7%);
    background-clip: text;
    color: transparent;
}


header {
    position: fixed;
    height: 12%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 1px 100px;
    backdrop-filter: blur(10px);
    top: 0;
    z-index: 100;
    box-shadow: 0 15px 8px -10px rgba(0, 0, 0, 0.4);
}

header img {
    border-radius: 100%;
    height: 50px;
    width: 50px;
    cursor: pointer;
}

.nav-links {
    list-style-type: none;
}

.nav-links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav-links li a {
    font-size: 18px;
    font-weight: 600;
    transition: all 0.1s ease-in 0s;
}

.nav-links li a:hover {
    filter: invert(1);
    color: rgb(160, 74, 163);
    border-bottom: rgb(160, 74, 163) 2px solid;

}

header a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 13%;

}

.colour-img {
    filter: invert(1);
    background-color: white;
    width: 40px;
    height: auto;
    border-radius: 50%;
    padding: 1px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.colour-img:hover {
    transform: rotate(360deg);
}

.btn {
    filter: invert(1);
    border: none;
    font-weight: 900;
    font-size: 18px;
    padding: 12px;
    background-image: linear-gradient(109.6deg, rgb(160, 74, 163) 11.2%, rgba(87, 27, 226, 1) 96.7%);
    border-radius: 8px;
    cursor: pointer;
    transform: scale(0.99);
    transition: all 0.2s ease-in-out;
    color: white;
}

.btn:hover {
    filter: invert(1);

    color: black;
    transform: scale(1.04);
}

.Hbtn img {            filter: invert(1);

    background-color: white;
    position: fixed;
    top: 90%;
    right: 1%;
    width: 38px;
    border-radius: 50%;
    animation: HbtnAni 1s alternate-reverse 0.1ms infinite;
    z-index: 100;
}

@keyframes HbtnAni {
    from {}

    to {
        transform: translateY(-10px);
    }
}

.section {
    scroll-margin-top: 5px;
}

.sec1 {
    margin-top: 200px;
    margin-bottom: 100px;
}

.home {
    width: 85vw;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* gap: 50px; */
}


.Himg{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
}

.container {
    filter: invert(1);
    display: flex;
    font-family: 'Bebas Neue', cursive;
  }

  .container .eyes {
    filter: invert(1);
    position: relative;
    width: 120px;
    height: 120px;
    display: block;
    background-color: #fff;
    margin: 0 15px;
    border-radius: 50%;
    box-shadow:
      0 5px 45px rgba(0, 0, 0, 0.2),
      inset 0 0 25px #767574;
  }

  .container .eyes::before {
    content: "";
    top: 50%;
    left: 45px;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    border: 5px solid rgba(0, 0, 255, 0.2);
    box-sizing: border-box;
  }

.home-text {
    width: 51%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-text h1 {
    font-weight: 700;
    font-size: 64px;
    width: 70%;
}

.ok {
    /* margin-right: 64px; */
    width: 36vw;
}

.Hbtns {
    margin-top: 12px;
    margin-left: 50px;
}

.home-text p {
    width: 80%;
    margin: 20px 50px;
    font-weight: 400;
    font-size: 22px;
}

.btn1 {
     filter: invert(1);
    border: rgb(160, 74, 163) 2px solid;
    font-weight: 800;
    font-size: 18px;
    padding: 10px;
    background-color: transparent;
    color: rgb(160, 74, 163);
    border-radius: 8px;
    cursor: pointer;
    transform: scale(0.99);
    transition: all 0.2s ease-in-out;
    margin: 0px 12px 0px 0px;
}

.btn1:hover {            filter: invert(1);

    background-image: linear-gradient(109.6deg, rgb(160, 74, 163) 11.2%, rgba(87, 27, 226, 1) 96.7%);
    color: white;
    font-weight: bold;
}

.btn2 {
    filter: invert(1);
    border: none;
    font-weight: 900;
    font-size: 18px;
    padding: 12px;
    background-image: linear-gradient(109.6deg, rgb(148, 68, 151) 11.2%, rgb(80, 25, 207) 96.7%);
    border-radius: 8px;
    cursor: pointer;
    transform: scale(0.99);
    transition: all 0.2s ease-in-out;
    color: white;
}

.btn2:hover {            filter: invert(1);

    color: black;
}

.sec2,
.sec3,
.sec4 {
    width: 200px auto;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec2 hr,
.sec3 hr {
    opacity: 0.5;
    width: 70%;
    margin-top: 2%;
}

.sec2 h1,
.sec3 h1 {
    font-weight: 700;
    font-size: 48px;
}

.sec2>p,
.sec3>p {
    margin: 25px 0;
}

.Sbox {
    filter: invert(1);
    width: 60%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 30px;
    padding: 75px 100px;
    background: linear-gradient(109.6deg, rgb(160, 74, 163) 11.2%, rgba(87, 27, 226, 1) 96.7%);
    border-radius: 10px;
}

.Skills {            filter: invert(1);

    padding: 5%;
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background-color: transparent;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.Skills:hover {
    transform: scale(1.2);
}

.Skills img {
    position: relative;
}

.txt {            filter: invert(1);

    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: smaller;
    line-height: 0%;
    margin-bottom: 2px;
    z-index: 1;
}

.Skills:hover .txt {
    opacity: 1;
    padding: 10%;
}

.sec3 {
    margin-top: 10%;
}

.container {
    filter: invert(1);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 100px;
    z-index: 1;

}

.Pbox {
    /* filter: invert(1); */
    margin-top: 2%;
    border: 1px solid rgba(104, 45, 159, 0.658);
    border-radius: 5px;
    padding: 30px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease-out;

}
.Pbox:hover {
    /* filter: invert(1); */
    transform: scale(1.05);
}



.Pbox video{
    /* filter: invert(1); */
    width: 400px;
    height: 200px;
}

.Pbox span {
    /* filter: invert(1); */
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(252, 252, 252);
    transition: all 0.4s ease;
    font-size: 20px;
    font-size: 20px;
    background: linear-gradient(109.6deg, rgb(95, 181, 92) 11.2%, rgba(168, 228, 29,1) 96.7%);
    border-radius: 8px;

}


.PSbox {
    filter: invert(1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin: 10px;
}

.PSbox p {
    /* filter: invert(1); */
    color: white;
    background: linear-gradient(109.6deg, rgb(95, 181, 92) 11.2%, rgba(168, 228, 29,1) 96.7%);
    border-radius: 8px;
    font-size: 1rem;
    margin: 2px 5px;
    padding: 2px 7px;
}

.sec5 {
    filter: invert(1);
    width: 49%;
    margin: auto;
    margin-top: 10%;
    margin-bottom: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #cbd5e0, #ecc94b, #fbb6ce);
    text-align: left;
    height: auto;
    color: rgb(0, 0, 0);
    padding: 15px 20px;
    border-radius: 10px;
    padding-bottom: 2.5%;
}

.connect {
    margin-left: 7px;
}

.connect h1 {
    text-align: left;
    padding-top: 1.5rem;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.Lbts {
    display: flex;
    align-items: center;
    width: 15vw;
    margin: auto;
    justify-content: center;
    margin-top: 44px;
    margin-left: 10px;

}

.Lbtn {            filter: invert(1);

    color: #fff;
    background-color: black;
    transition: all 0.2s ease-in-out;
    padding: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

.Lbtn:hover {            filter: invert(1);

    color: black;
    background-color: white;
}


.Pbox video {
    filter: invert(1);
    width: 500px;
    height: auto;
}

.Pbox span {            filter: invert(1);

    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: smaller;
    line-height: 0%;
    margin-bottom: 2px;
    z-index: 1;
}

.Pbox:hover span {
    opacity: 1;
    padding: 5%;
    font-size: larger;
}




footer {
    width: 60vw;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-bottom: 15px;
}

footer p {
    padding-left: 40px;
}

.social {
    padding-right: 326px;
    width: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.social img {            filter: invert(1);

    cursor: pointer;
    padding: 10px;
    width: 100%;
    height: auto;
    margin: 0 10px;
    padding: 10px;
    border-radius: 10px;
    background-image: linear-gradient(109.6deg, rgb(160, 74, 163) 11.2%, rgba(87, 27, 226, 1) 96.7%);
    transition: all 0.2s ease-in-out;
}

.social img:hover {
    translate: 0 -5px;
    opacity: 0.6;
}

.Himg iframe {
    width: 600px;
    height: 400px;
}

.Himg {
    margin: 0;
    padding: 0;
}
