@charset "utf-8";
/* CSS Document: Mobile first design */
/*
@font-face {
    font-family: 'Roboto';
    font-weight: 400;
    src: url("fonts/roboto-regular-webfont.woff2") format('woff2'), url("fonts/roboto-regular-webfont.woff") format('woff');
}
*/
:root {
    --white: #FEFEFE;
    --black: #000;
    --black: #050810;
    --green: #01D722;
    --secondary-text-color: #707070;
    --dark-text-color: #008F63;
    --light-text-color: #A5A1FF;
    --soft-text-color: #A5A1FF80;
    --primary-bgcolor: #0B0B0C;
    --light-bgcolor: #B6DBCE;
    --soft-bgcolor: #E9E9FF;
    --dark-purple-bgcolor: #161723;
    scroll-behavior: smooth;
    font-size: 62.50%;
    color: #707070;
}
body {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
*::selection {
    background-color: var(--green);
    color: #000;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
a {
    text-decoration: none;
    color: var(--black);
}
ul {
    list-style: none;
    padding: 0rem;
    margin: 0rem;
}
.section-heading-bx {
    padding: 4rem;
}
.section-heading {
    font-size: 2rem;
    text-align: center;
    color: var(--white);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.015em;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}
.section-hr1, .section-hr2 {
    width: 100px;
    height: 3px;
    background-color: var(--white);
    margin: auto;
    margin-top: 4px;
}
.section-hr2 {
    width: 50px;
}
.section-para {
    color: var(--white);
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 1.1;
}
/* =================== Form submitted message-section ===================== */
.submitted-message {
    width: 350px;
    padding: .6rem 2rem;
    position: fixed;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    top: 530px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 5px 5px 1px #ffffff40;
}
.submitted-message > p {
    display: flex;
    align-items: center;
}
.submitted-message > p > svg {
    margin-right: 10px;
}
.submitted-message > p > span {
    font-size: 1.6rem;
}
.submitted-message > svg > path {
    display: inline-block;
}
.submitted-message > p > svg > path {
    color: green;
}
.success_alert {
    display: none;
    background-color: aqua;
    width: 400px;
}
/* ========================= header-section ============================ */
#site-header {
    height: 6vh;
    background-color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
.site-logo > img {
    width: 100px;
    height: auto;
}
.header-navigation {
    display: none;
}
.contact-button-container {
    display: none;
}
#hamburger {
    width: 40px;
    height: 40px;
    font-weight: 700;
    background-color: #000;
    background-size: cover;
    border-radius: 2px;
}
/* ============================ content-area ============================ */
#content-area {
    width: 100%;
}
#bg-image {
    position: fixed;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(70%);
}
/* ============================ hero-section ============================ */
#hero-section {
    width: 100%;
    height: calc(100vh - 9vh);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(238, 174, 202);
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
}
.hero-bx {
    height: 700px;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    animation: hero-anime 1s ease forwards;
}
@keyframes hero-anime {
    0% {
        opacity: 0.5;
        transform: translateX(-500px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
#hero-image-bx {
    width: 100%;
    height: 250px;
    border: 2px solid var(--black);
    border-radius: 5px;
}
#hero-img {
    width: 250px;
    height: auto;
    margin-bottom: 22vh;
    margin-top: -75px;
    margin-left: 16vw;
    filter: grayscale(30%);
}
#hero-content-wrapper {
    padding: 2rem 1rem 3.5rem;
    display: flex;
    align-items: center;
    border: 2px solid var(--black);
    border-radius: 5px;
}
#hero-content-bx > h1 {
    font-size: 2.8rem;
    line-height: 3rem;
    color: var(--black);
    margin: 0rem 0rem 2.2rem;
}
#hero-content-bx > h1:nth-child(2) {
    font-size: 3rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #000;
}
#hero-content-bx > p {
    font-size: 1.8rem;
    margin: 1rem 0rem 2rem;
    color: #000;
}
.btn {
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1.6rem;
    border-radius: 75px;
    margin-bottom: 1.1rem;
}
#view-projects {
    background-color: #000;
    border: 2px solid var(--black);
    color: var(--white);
}
/* ============================ Project-section ============================ */
.project-section {
    width: 100%;
    padding: 2rem 0rem 5rem;
    background-color: var(--black);
    overflow: hidden;
}
.project-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    gap: 30px 20px;
}
.project-card {
    width: 390px;
    padding: 1rem;
    border: 1px solid #872C86;
    border-radius: 5px;
    transition: transform 1s ease, opacity 1s ease, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.project-card:nth-child(2) {
    border: 1px solid #607EB5;
    transition: transform 1s ease .2s, opacity 1s ease .2s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    ;
}
.project-card:nth-child(3) {
    border: 1px solid #fff;
    transition: transform 1s ease .2s, opacity 1s ease .2s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    ;
}
.project-card:nth-child(4) {
    border: 1px solid #00ff00;
    transition: transform 1s ease .2s, opacity 1s ease .2s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    ;
}
.project-card:nth-child(5) {
    border: 1px solid #D8FF00;
    transition: transform 1s ease .2s, opacity 1s ease .2s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    ;
}
.project-card:nth-child(6) {
    border: 1px solid #003CFF;
    transition: transform 1s ease .5s, opacity 1s ease .5s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.project-card:hover {
    background-color: #872C86;
    box-shadow: 0px 0px 140px 1px #872C8680;
}
.project-card:nth-child(2):hover {
    background-color: #607EB5;
    box-shadow: 0px 0px 140px 1px #607EB580;
}
.project-card:nth-child(3):hover {
    background-color: #fff;
    box-shadow: 0px 0px 140px 1px #ffffff80;
}
.project-card:nth-child(4):hover {
    background-color: #00ff00;
    box-shadow: 0px 0px 140px 1px #00FF0080;
}
.project-card:nth-child(5):hover {
    background-color: #D8FF00;
    box-shadow: 0px 0px 140px 1px #D8FF0080;
}
.project-card:nth-child(6):hover {
    background-color: #003CFF;
    box-shadow: 0px 0px 140px 1px #003CFF80;
}
.project-card:hover > h1, .project-card:hover > div > span {
    color: #000;
}
.project-card:hover > p {
    color: #000;
}
.project-moniter {
    width: 330px;
    height: 280px;
    background-size: cover;
}
.project-img {
    padding: 1rem 1.3rem 1.2rem;
    width: 370px;
    height: 220px;
}
.project-card > div {
    margin: 1.5rem 0rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.project-language {
    color: var(--black);
    padding: 0.4rem 0.8rem;
    font-size: 1.3rem;
    border-radius: 5px;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    background-color: var(--white);
}

.project-name{
    background-color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    display: inline-block;
    font-size: 1.9rem;
    text-align: center;
    color: var(--black);
}
.project-card > p {
    margin-top: 1.5rem;
    padding: 2rem;
    font-size: 1.7rem;
    text-align: left;
    border-radius: 5px;
    color: var(--secondary-text-color);
    transition: background-color .7s ease-in-out, color .7s ease-in-out;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.13);
}
/* ============================ Template-section ========================= */
#template-section > .project-cards > .project-card:first-child {
    border: 1px solid #590017;
}
#template-section > .project-cards > .project-card:nth-child(2) {
    border: 1px solid #fff;
}
#template-section > .project-cards > .project-card:nth-child(3) {
    border: 1px solid #FF0000;
}
#template-section > .project-cards > .project-card:first-child:hover {
    background-color: #590017;
}
#template-section > .project-cards > .project-card:nth-child(2):hover {
    background-color: #fff;
}
#template-section > .project-cards > .project-card:nth-child(3):hover {
    background-color: #FF0000;
}
/* ============================ Passion-section ========================= */
#passion-section {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
}
.passion-text-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.passion-text-bx {
    position: relative;
    width: 400px;
    height: 70px;
    overflow: hidden;
}
.passion-h1 {
    height: 70px;
    line-height: 70px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.7rem;
    color: #fff;
    visibility: hidden;
    text-shadow: 0px 0px 50px #00000080;
    font-weight: 900;
}
#passion-text-h1-bg {
    position: absolute;
    width: 0px;
    height: 100px;
    background-color: grey;
    transform: translateX(0px);
    transition: width 0.3s ease, transform 0.3s ease;
}
/* ============================ service-section ============================ */
.service-section {
    width: 100%;
    padding: 2rem 0rem 0rem;
    background-color: var(--black);
}
.service-bx {
    width: 100%;
    padding: 0rem 2rem;
}
#service-row-wrapper {
    padding-bottom: 1rem;
}
.service-row {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    /*    background-color: yellowgreen;*/
}
.service-row_left {
    flex: 1 0 60%;
    height: 70px;
    padding: 2rem 5rem 1rem 2rem;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 75px;
    transition: transform 0.5s ease, border-radius 0.5s ease, opacity 0.5s ease;
    transform: translateY(0px, 0px);
}
.service-row_left_text > h3 {
    font-size: 1rem;
    font-weight: 625;
    margin: 0rem 0px 0rem;
}
.service-row_left_text > p {
    font-size: 0.7rem;
    margin: 5px 0px;
    color: var(--secondary-text-color);
}
.service-row_right {
    flex: 1 0 40%;
    height: 70px;
    color: var(--white);
    border-radius: 75px;
    padding: 3rem 1rem 2rem;
    transition: transform 0.5s ease;
    transform: translate(0px, 0px);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.13);
}
.service-row_right > h3 {
    font-size: 1rem;
    font-weight: 625;
    margin-bottom: 5px;
    text-align: center;
}
.service-row_right > p {
    font-size: .7rem;
    text-align: center;
    margin-top: 0px;
    color: #636363;
}
/* ============================ contact-section ============================ */
#contact-section {
    width: 100%;
    background-color: var(--black);
    padding-bottom: 5rem;
}
.contact-form-bx {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.contact-image {
    display: none;
}
.contact-image > img {
    width: 100%;
    height: auto;
}
.contact-form {
    width: 100%;
    padding: 3rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.2);
        border: 1px solid rgba(255, 255, 255);
    /*    background-color: #05429f40;*/
}
.contact-input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.2rem;
    color: #C4C4C4;
    margin-bottom: 2rem;
    background-color: #47474780;
    border: none;
    transition: box-shadow 0.2s linear;
    resize: vertical;
    border-radius: 4px;
}
input[type=submit].contact-input {
    padding: 1.5rem;
    color: #323232;
    background-color: rgba(137, 137, 139, 1.00);
    margin-bottom: 0rem;
    transition: background-color .2s linear, color .2s linear;
}
input[type=submit].contact-input:hover {
    cursor: pointer;
    color: #303037;
    background-color: var(--white);
}
.contact-input:focus {
    outline: none;
    box-shadow: 0px 0px 40px 1px #4444ff;
}
label {
    display: block;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}
/* ============================ footer-section ============================ */
#footer-fluid {
    width: 100%;
    background-color: var(--black);
    border-top: 2px solid #363636;
}
.footer {
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.widget {
    width: 100%;
    margin-bottom: 4rem;
}
.widget h1 {
    color: #ffffff;
}
.widget > p, .widget li, .widget li a, .widget li > a > img {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #979797;
}
#footer-logo-img {
    width: 100px;
    height: auto;
}
.widget li {
    margin-top: 1rem;
}
.widget li a:hover {
    color: #fff;
}
.widget:first-child {
    order: 6;
}
.footer-social > ul > li {
    float: left;
}
.footer-menu > ul > li {
    float: left;
    margin-right: 2rem;
}
.footer-social-icon {
    width: 30px;
    height: 30px;
    background-size: cover;
    margin-right: 1rem;
}
@media screen and (min-width:993px) and (max-width:5000px) {
    #site-header {
        height: 9vh;
        padding: 3rem 3rem;
    }
    .header-navigation, .contact-button-container {
        display: block;
    }
    .hamburger-container {
        display: none;
    }
    .contact-button-container {
        width: 150px;
    }
    .menu-item {
        padding: 8px;
        float: left;
        margin: 0px 5px;
    }
    .menu-item > a {
        font-size: 1.7rem;
        padding: 5px 0px;
        color: var(--white);
        font-weight: 400;
    }
    .contact-button-link {
        float: right;
        border-radius: 75px;
        padding: 7px 20px;
        font-weight: 600;
        color: var(--white);
        border: 2px solid var(--secondary-text-color);
        font-size: 1.8rem;
    }
    /* ============================ hero-section ============================ */
    .hero-bx {
        width: 1079px;
        height: 327px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: row;
        border-radius: 1.7vw;
        border: 0px solid var(--green);
        backdrop-filter: blur(2px);
        animation: hero-anime 1s ease forwards;
        box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        background-color: rgba(255, 255, 255, 0.2)
    }
    @keyframes hero-anime {
        0% {
            opacity: 0.5;
            transform: translateX(-500px);
        }
        100% {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    #hero-image-bx {
        width: 40%;
        height: auto;
        border: none;
    }
    #hero-img {
        width: 340px;
        margin-bottom: 105px;
        margin-top: 0px;
        margin-left: 8vh;
    }
    #hero-content-wrapper {
        width: 60%;
        height: 50vh;
        padding: 4rem 0;
        display: flex;
        align-items: center;
        border: none;
    }
    #hero-content-bx > p {
        margin: 1rem 0rem 4rem;
    }
    /* ============================ project-section ============================ */
    .section-heading {
        font-size: 3rem;
    }
    .project-cards {
        width: 1300px;
        height: auto;
        margin: auto;
        flex-flow: row wrap;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 30px;
/*        flex-wrap: wrap;*/
    }
    .project-card {
        width: 400px;
        /*        transform: translateX(300px);*/
    }
    
    .project-img {
        width: 380px;
    }
    /* ============================ passion-section ============================ */
    .passion-text-bx {
        width: 1200px;
        height: 100px;
    }
    .passion-h1 {
        height: 100px;
        line-height: 100px;
        font-size: 5rem;
    }
    #passion-text-h1-bg {
        height: 70px;
    }
    /* ============================ service-section ============================ */
    .service-bx {
        width: 1200px;
        margin: auto;
    }
    .service-row {
        width: 1200px;
        height: 150px;
    }
    .service-row_left {
        flex: 1 0 750px;
        height: 150px;
        padding: 3rem 14rem 3rem 4rem;
        transform: translateX(310px);
    }
    .service-row_left_text > h3 {
        font-size: 1.8rem;
        margin: 1rem 0px 0rem;
    }
    .service-row_left_text > p {
        font-size: 1.6rem;
    }
    .service-row_right {
        flex: 1 0 550px;
        height: 150px;
        padding: 2rem 4rem;
        transform: translateX(-440px);
    }
    .service-row_right > h3 {
        font-size: 3rem;
        margin: 3rem 0px 10px;
    }
    .service-row_right > p {
        font-size: 1.9rem;
    }
    /*    js animation classes*/
    /* close animation class for js*/
    .close-left-anime {
        transform: translateX(310px);
        opacity: 0;
    }
    .close-right-anime {
        transform: translateX(-440px);
    }
    /* open animation class for js*/
    .open-left-anime {
        transform: translateX(0px);
        opacity: 1;
    }
    .open-right-anime {
        transform: translateX(-140px);
    }
    /* ====================== service-section ============================ */
    .contact-form-bx {
        flex-direction: row;
        padding: 0rem 5rem;
    }
    .contact-bx {
        margin: auto;
        width: 1200px;
    }
    .contact-image {
        display: block;
        width: 50%;
    }
    .contact-image > img {
        width: 100%;
        height: auto;
    }
    .contact-form {
        width: 50%;
        padding: 3rem 2rem;
        border-radius: 6px;
    }
    label {
        display: block;
        font-size: 1.8rem;
    }
    .contact-input {
        font-size: 1.7rem;
    }
    /* ============================ footer-section ============================ */
    .footer {
        padding: 4rem 0rem;
        width: 1200px;
        margin: auto;
        flex-direction: row;
        align-items: stretch;
    }
    .widget {
        width: auto;
    }
    .widget:first-child {
        order: 0;
    }
    .widget h1 {
        text-align: left;
    }
    .footer-menu > ul > li {
        float: none;
    }
}