@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');
body {
    font-family:poppins;
    margin:0px;
    padding: 0px;
    font-family: poppins;
    background-color: #111111;
}
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #2A84DD77;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #2A84DD77;
}

::-webkit-scrollbar-corner {
    border-radius: 10px;
    background: transparent;
}

ul {
    list-style: none;
}
a {
    text-decoration: none;
}
.navigation {
    position: fixed;
    left: 0px;
    top: 0px;
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 4;
    background-image: linear-gradient(180deg, rgb(17,17,17) 15%, transparent);
}
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
}
.menu li {
    padding: 20px;
}
.logo {
    height:33px;
    z-index: 3;
}
.logo img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.menu li a {
    color: #ffffffcc;
}
.hire-me {
    color: #46a0f5;
    z-index: 3;
    cursor: pointer;
}
.hire-me i {
    margin-left: 4px;
}
.menu li a:hover {
    color: #46a0f5;
    transition: all ease 0.5s;
}
.hire-me:hover {
    color: #1a82e2;
    transition: all ease 0.5s;
}
/*--main------------------------*/
#main {
    width:100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#main::before {
    content: '';
    position: absolute;
    width:130%;
    height: 100vh;
    left: -20%;
    top: -23%;
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgb(19,19,19) -10%, #141516);
    z-index: -1;
}
.main-text {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translate(-15%,-50%);
    width:500px;
}
.main-text h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 30px rgba(0,0,0,0.01);
    margin: 0px;
    line-height: 45px;
}
.main-text p {
    color: #8a94a7c0;
    font-size: 1rem;
    margin: 0px;
    margin-top: 10px;
}
.main-btns {
    display: flex;
    align-items: center;
    margin-top: 25px;
}
.main-btns a {
    width:180px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #ffffff;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.05);
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.download-cv-btn {
    background: linear-gradient(90deg, #2788e2 20%, #3b58b8);
    margin-right: 20px;
}
.hire-me-btn {
    background-color: #242830;
}
.hire-me-btn:hover {
    background-color: #0f7ce2;
    transition: all ease 0.3s;
}
.btn-primary {
    background: linear-gradient(90deg, #2065cc 20%,#3b58b8);
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 10px;
    padding: 5px;
}
.bg-danger {
    background: rgb(245, 60, 60);
}
.model {
    width: 40%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
}
.model img {
    width: 80%;
    height: 100%;
    object-fit: contain;
}
.model-bg {
    position: absolute;
    right: 10%;
    top: 17%;
    width: 35%;
}
.model-bg img {
    width:100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}
#skills {
    width:90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto auto 50px auto;
}
.skills-text-section {
    width:400px;
}
.skill-heading span {
    color: #416cdf;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}
.skill-heading h2 {
    color: #ffffff;
    font-size: 3.3rem;
    margin: 0px;
    font-weight: 400;
    letter-spacing: 1px;
}
.s-box-container {
    margin-top: 30px;
}
.skill-box {
    display: flex;
    margin: 25px 0px;
    cursor: pointer;
}
.s-box-icon {
    margin-right: 12px;
}
.s-box-icon i {
    width:40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f011;
    font-size: 1.1rem;
}
.skill-box strong {
    color: #ffffff;
    margin: 0px;
    font-weight: 400;
    font-size: 0.9rem;
}
.skill-box p {
    color: #8a94a783;
    font-size: 0.9rem;
}
.fa-html5 {
    color: #e06061;
}
.fa-css3-alt {
    color: #5d85f3;
}
.fa-python {
    color: #306998;
}
.fa-js {
    color: #f9ca31;
}
.fa-ellipsis-h {
    color: white;
}
.skill-img {
    width:600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.skill-img img {
    width:100%;
    height: 100%;
    object-fit: contain;
}
#introduction {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
    position: relative;
    text-align: center;
    max-width: 80%;
    border-top: 1px solid #292b32;
    padding: 5px 0px;
    border-bottom: 1px solid #292b32;
    margin: 5px auto;
    background-image: url('../img/landing/bg.png');
    background-size: 1000px;
    background-position: top;
}
.intro-heading {
    width:60%;
}
.intro-heading strong {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
}
.intro-heading p {
    color: #8a94a763;
}
#services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
    position: relative;
}
.services-heading {
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    width:90%;
    background-color: #141516;
    padding: 10px;
    display: flex;
}
.services-box-container {
    width:90%;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
.service-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px 20px 20px 20px;
}
.service-box i {
    font-size: 2.5rem;
    background: linear-gradient(90deg,#2788e2 20%,#3b67b8);
    margin-bottom: 10px;
    margin-right: auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.service-box p {
    color: #8a94a783;
    font-size: 0.95rem;
}
.service-box strong {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #e4e4e4;
}
#get-in-touch {
    width:90%;
    height:100px;
    background-color: #15181d;
    display: flex;
    margin: 60px auto;
    padding: 20px 40px;
    justify-content: space-between;
    align-items: center;
    background-image: url('../img/landing/bg-2.png');
    background-position: top right;
    background-size: 400px;
    background-repeat: no-repeat;
}
#get-in-touch span {
    color: #e4e4e4;
    font-size: 1.3rem;
    font-weight: 600;
}
#get-in-touch a {
    color: #ffffff;
    width:160px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg,#2788e2 20%,#3b4eb8);
}
#contact {
    width:100%;
    display:flex;
    justify-content: space-evenly;
    align-items: center;
}
#contact form {
    width:600px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#contact form input,
#contact form textarea {
    width:100%;
    height:50px;
    margin:5px 0px;
    padding: 10px;
    border: none;
    outline: none;
    background-color: #373a412d;
    color: #ffffff;
    border-radius: 5px;
}
#contact form textarea {
    height: 150px;
}
#contact form input[type="submit"] {
    height: 45px;
    background: linear-gradient(90deg, #2065cc 20%,#3b58b8);
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
}
#contact .contact-model img {
    width: 100%;
}

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #14151610;
    padding: 10px;
    margin-top: 50px;
    border-top: 1px solid #272729;
}
.copyright {
    color:#ffffff;
}
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-social a {
    width:35px;
    height: 35px;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #ffffff;
    background-color: #292b3252;
    margin: 5px;
    font-size: 0.9rem;
    font-weight: 400;
}
.footer-social a:hover {
    background-color: #2993f7;
    transition: all ease 0.5s;
}
::selection {
    color: #e4e4e4;
    background-color: #416cdf;
}
#services,
#introduction,
#skills {
    padding-top: 60px;
}
#introduction {
    padding-bottom: 60px;
}
.menu-icon,
.menu-btn {
    display: none;
}
@media(max-width:1200px) {
    .model-bg {
        display: none;
    }
    .model {
        width:400px;
        height: 400px;
        right: 5%;
        transform: translate(-5%,-50%);
    }
    .main-text {
        left: 10%;
        transform: translate(-10%,-50%);
    }
}
@media(max-width:1000px) {
    .navigation {
        justify-content: space-between;
        height: 65px;
        padding:35px 25px;
    }
    .navigation .menu {
        display: none;
        position: absolute;
        top: 65px;
        left: 0px;
        background-color: #111111;
        border-bottom: 4px solid #1b1b1b;
        width:100%;
        padding:0px;
        margin: 0px;
    }
    .navigation .menu li {
        width:100%;
        margin: 0px;
        padding: 0px;
    }
    .navigation .menu li a {
        width:100%;
        height: 40px;
        display: flex;
        align-items: center;
        margin: 0px;
        padding: 30px 20px;
        border: 1px solid rgba(38,38,38,0.03);
    }
    .navigation .menu li a:hover {
        color: #ffffff;
        background-color: #2065cc;
    }
    .menu-icon {
        display: block;
    }
    nav .menu-icon {
        cursor: pointer;
        float: right;
        padding: 5px;
        position: relative;
        user-select: none;
        z-index: 2;
    }
    nav .menu-icon .nav-icon {
        background-color: #ffffffcc;
        display: block;
        position: relative;
        height: 2px;
        transition: background 0.2s ease-out;
        width:25px;
    }
    nav .menu-icon .nav-icon:before,
    nav .menu-icon .nav-icon:after {
        background-color: #ffffffcc;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all ease-out 0.2s;
        width:100%;
    }
    nav .menu-icon .nav-icon:before {
        top: 5px;
    }
    nav .menu-icon .nav-icon:after {
        top: -5px;
    }
    nav .menu-icon .nav-icon,
    nav .menu-icon:checked ~ .menu-icon .nav-icon {
        background-color: transparent;
    }
    nav .menu-btn:checked ~ .menu-icon .nav-icon:before {
        transform: rotate(-45deg);
        top: 0px;
    }
    nav .menu-btn:checked ~ .menu-icon .nav-icon:after {
        transform: rotate(45deg);
        top: 0px;
    }
    nav .menu-btn:checked ~ .menu {
        display: block;
    }
    .menu::before {
        position: absolute;
        left: 0px;
        top: -60px;
        content: '';
        width:100%;
        height: 60px;
        background-color: #111111;
    }
    .model {
        display: none;
    }
    .main-text {
        left: 50%;
        transform: translate(-50%,-50%);
    }
    #skills {
        width:100%;
        justify-content: space-between;
        padding-left: 40px;
    }
    .skills-text-section {
        width:400px;
    }
    .skill-img {
        width:40%;
        height: 300px;
    }
    .skill-img img {
        object-fit: cover;
        object-position: left;
    }

}
@media(max-width:900px) {
    .intro-video iframe {
        width:700px;
        height: 400px;
    }
    .services-box-container {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }

    #contact .contact-model {
        display: none;
    }
}
@media(max-width:800px) {
    .intro-video {
        width:100%;
    }
    .intro-video iframe {
        width:100%;
        height: 38vh;
    }
    .intro-heading {
        width:80%;
    }
}
@media(max-width:620px) {
    #contact form {
        width:90%;
    }
    .main-text {
        width:85%;
    }
    .skill-heading h2 {
        font-size: 2.2rem;
    }
    .intro-video iframe {
        width:100%;
        height: 200px;
    }
}
@media(max-width:530px) {
    .skill-img {
        display: none;
    }
    .skills-text-section {
        width:85%;
    }
    .main-btns {
        flex-direction: column;
    }
    .main-btns a {
        width:100%;
        margin: 5px 0px;
    }
    .intro-heading {
        width:100%;
    }
    .intro-heading strong {
        font-size: 2rem;
    }
    #get-in-touch {
        padding: 20px 10px;
        text-align: center;
    }
    #get-in-touch span {
        font-size: 1.1rem;
    }
    .copyright {
        font-size: 0.8rem;
    }
    .intro-video iframe {
        height: auto;
    }
}
@media(max-width:300px) {
    .navigation {
        padding: 30px 10px;
    }
}

.compiler {
    width: 700px;
    margin-top: 20px;
    position: relative;
    max-width: 100%;
}
#source {
    height: 300px;
    text-align: left;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
#html-preview {
    border: none;
    height: 300px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: white;
    overflow: hidden;
    pointer-events: none;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
#stdout {
    height: 50px;
    text-align: left;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
#lang-code {
    width: 90%;
    height: 90%;
    text-align: left;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.btn-compiler {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 10px 14px;
}
.btn-compiler:hover {
    box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100vh; /* Full height */
    justify-content: center;
    align-items: center;
}
.login {
    position: relative;
    padding: 40px;
    font-family: 'Roboto', sans-serif;
    max-width: 90%;
}
.login::before,
.login .box1,
.login .box2 {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
}
.login::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 20px;
}
.login .box1 {
    position: absolute;
    z-index: 1;
    left: -50px;
    top: -50px;
    width: 100px;
    height: 100px;
    border-radius: 10px;
}
.login .box2 {
    position: absolute;
    z-index: 1;
    right: -30px;
    bottom: -30px;
    width: 70px;
    height: 70px;
    border-radius: 10px;
}
.login h1 {
    margin: 0 0 20px;
    font-size: 40px;
    color: #fff;
    text-align: center;
}
.form-input {
    display: block;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
}
.form-input input {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    outline: none;
}
.form-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    transition: .3s;
}
.form-input input:focus::placeholder {
    opacity: 0;
}
.form-button {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 15px 30px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #2065cc 20%, #3b58b8);
    border: 0;
    outline: none;
    cursor: pointer;
    transition: .2s ease-in-out;
}
.form-button:hover {
    transform: scale(1.1);
}
/* Modal Content/Box */
.modal-window {
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 0px 20px 0 rgba( 255, 255, 255, 0.5 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    width: 80%; /* Could be more or less, depending on screen size */
    height: 80%;
}
/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.social-btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 20px;
}

.social-btn {
    font-size: 22px;
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-btn:hover {
    transform: scale(1.1);
}
