@font-face {
    font-family: 'Font Awesome 6 Free';
    /* The font family name */
    font-style: normal;
    font-weight: 900;
    /* Solid style */
    font-display: block;
    /* Controls font loading */
    src: url('../webfonts/fa-solid-900.woff2') format('woff2'),
        url('../webfonts/fa-solid-900.woff') format('woff');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    /* Font for brand icons */
    font-style: normal;
    font-weight: 400;
    /* Brand style */
    font-display: block;
    src: url('../webfonts/fa-brands-400.woff2') format('woff2'),
        url('../webfonts/fa-brands-400.woff') format('woff');
}

@font-face {
    font-family: 'Wasted Vindey';
    /* Choose a name for the font */
    src: url('../webfonts/Wasted-Vindey.ttf') format('truetype');
    /* Ensure the path is correct */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Qurova Demo Bold';
    /* Choose a name for the font */
    src: url('../webfonts/QurovaDEMO-Bold.otf') format('opentype');
    /* Ensure the path is correct */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Qurova Demo Light';
    /* Choose a name for the font */
    src: url('../webfonts/QurovaDEMO-Light.otf') format('opentype');
    /* Ensure the path is correct */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Qurova Demo Medium';
    /* Choose a name for the font */
    src: url('../webfonts/QurovaDEMO-Medium.otf') format('opentype');
    /* Ensure the path is correct */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Qurova Demo Regular';
    /* Choose a name for the font */
    src: url('../webfonts/QurovaDEMO-Regular.otf') format('opentype');
    /* Ensure the path is correct */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Qurova Demo Semi-Bold';
    /* Choose a name for the font */
    src: url('../webfonts/QurovaDEMO-SemiBold.otf') format('opentype');
    /* Ensure the path is correct */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Graphire';
    /* Choose a name for the font */
    src: url('../webfonts/Graphire.ttf') format('truetype');
    /* Ensure the path is correct */
    font-weight: normal;
    font-style: normal;
}

/* Apply the font */

* {
    font-family: 'Calibri', sans-serif;
    /* Fallback to sans-serif */
}

body {
    background: #111;
    /* Black background for corners */
    min-height: 100vh;
}
body::-webkit-scrollbar {
    width:5px;
}
body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.649);
    border-radius: 10px;
}
body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.middle_nav {

    /* display: flex; */
    align-items: center;
    gap: 16px;
    width: 100%;
}

.middle_nav button {
    font-size: 15px;
    align-self: flex-end;
    padding: 1% 2%;
    background: transparent;
    border: none;
    letter-spacing: 0px;
    font-weight: lighter;
}

nav {
    padding: 2% 5%;
}

nav h1 {
    font-weight: normal;
    font-size: 20px;
    padding-top: 5%;
    letter-spacing: 3px;
    display: inline;
}

nav .nav {
    display: flex;
    justify-content: flex-end;
}

nav .nav button {
    font-size: 15px;
    align-self: flex-end;
    padding: 1% 2%;
    background: transparent;
    border: none;
    letter-spacing: 0px;
    font-weight: lighter;
    /* color:rgba(255, 247, 173, 0.841);
    font-weight: lighter;
    color:#ffbf76;
    color:rgb(255, 203, 151); */

    /* background: linear-gradient(90deg, #ffbf76, #bf8f65); */
}

#section1 {
    padding-bottom: 15vh;
}

#homeTextContainer {
    padding-left: 10%;
}

.container#homeTextContent {
    width: 100%;
    padding: 0;
    margin: 0;
}


#bigText {
    margin-top: 20vh;
    font-size: 50px;
    font-family: 'Qurova Demo Bold';
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: bigTextFadeIn 1.2s cubic-bezier(0.7, 0, 0.2, 1) 0.2s forwards;
}

@keyframes bigTextFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    80% {
        opacity: 1;
        transform: translateY(-4px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



#bigDescription {
    letter-spacing: 0px;
    word-spacing: 1px;
    margin-top: 2vh;
    font-size: 20px;
    font-weight: lighter;
    font-family: 'Segoe UI';
    /* color:rgb(255, 203, 151); */
    max-width: 80%;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    animation: bigDescriptionFadeIn 1.3s cubic-bezier(0.7, 0, 0.2, 1) 0.3s forwards;
}

@keyframes bigDescriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    80% {
        opacity: 1;
        transform: translateY(-2px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta {
    margin-top: 4vh;
    /* background: linear-gradient(90deg, #ffbd71, #da663f); */
    border-left: 5px solid #111;
    opacity: 0;
    padding: 2% 15%;
    box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.237);
    transform: translateX(-40px) scale(0.98);
    animation: ctaSlideIn 1s cubic-bezier(0.7, 0, 0.2, 1) 0.7s forwards;
    transition: transform .2s !important;
}

@keyframes ctaSlideIn {
    0% {
        opacity: 0;
        margin-left:40px;
        /* transform: translateX(-40px); */
        padding-left:50%;
    }
    80% {
        opacity: 1;
        margin-left:-4px;
        /* transform: translateX(4px); */
        padding-left:30%;
    }
    100% {
        opacity: 1;
        margin-left:30px;
        /* transform: translateX(0); */
    }
}

.btn.cta:hover{
    /* padding:1% 20%; */
    /* width:70%; */
    padding-right: 30%;
    border-left: 15px solid #111;
    /* box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.414); */
}



#socials_box {
    padding: 2px 2px;
    /* display:flex;
    justify-content: flex-end;
    padding-right:5%; */
}

#socials_box button {
    text-align: center;
    border: none;
    background: transparent;
    font-size: 20px;
}
.profile-socials{
    /* width:10px; */
   
}
.profile-socials button {
    border-radius: 50px;
    border:none;
    padding:2%;
    margin-bottom:1vh;
    background: #111;
    color:white;
}

#imageContainer {
    border-radius: 500px;
    margin-top: 15vh;
    padding: 5%;
    background: #111;
    overflow: hidden;
    margin-right:-70%;
    transition: all  1s cubic-bezier(0.65, 0, 0.35, 1);
}
.animatedImageContainer{
    width:800px;
}

#profileImg {
    width: 320px;
    object-position: 0px 0px;
    object-fit: contain;
    border-radius: 500px;
    box-shadow: 20px 10px 100px rgba(0, 0, 0, 1);
    transition: all  1s cubic-bezier(0.65, 0, 0.35, 1);
    rotate:50deg;
}
.animatedProfileImg{
    transform:rotate(-50deg);
}

#section2 {
    min-height: 100vh;
    /* padding-top:5vh; */
    border-top: 1px solid black;
    background: url('../img/blackbg.jpeg');
    /* background:white; */
    background-size: 101%;
    background-repeat: no-repeat;
    /* border-radius: 1%; */
    display: none;
}

#section2b {
    border-radius: 40px;
    background: #111;
    margin: 5%;
}

#section1infoBoxContainer {
    padding-top: 17vh;
    align-items: center;
}

.info_box {
    width: 80%;
    padding: 10%;
    /* border-top:1px solid black; */
    box-shadow: 5px 5px 100px rgba(0, 0, 0, 0.103);
    border-radius: 30px;
    margin: auto;
    margin-bottom: 2vh;
}
.info_header{
    /* background:rgba(0, 0, 0, 0.098); */
    box-shadow: 30px 5px 50px rgba(0, 0, 0, 0.08) ;
    width:110%;
    margin-left:-5%;
    /* color:white; */
    padding:5% 10%;
    border-radius:10px;
    /* border-top: 5px solid #111; */
    margin-bottom:2vh;
    background:#ffffff;
    color:#111;
    /* border:1px solid #e0e0e0; */
}

.info_box h5 {
    font-size: 20px;
    display:inline;
    font-weight:bolder;
}

.info_icon {
    font-size: 30px;
    fill: #ff6600;
}

.info_text {
    /* font-weight: lighter; */
    font-color:#555;
}

#skillsContainer button{
    border:none;
    background: #111;
    color:white;
    padding: 1% 5%;
    margin:2%;
    border-radius: 10px;
    box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.136);
    transition: all .3s;
}

.big_info {
    background: #121212;
    color: white;
    width: 90%;
    margin-bottom: 5vh;
}

#quote_box {
    text-align: center;
    /* margin-top:5vh; */
    padding: 10%;
    padding-top: 10vh;
    padding-bottom: 10vh;
    color: aliceblue;
}

#quote_box h2 {
    font-family: 'Qurova Demo Medium';
}

#quote_box h1 {
    font-family: 'Qurova Demo Bold';
    margin-top: 5vh;
}

#slide_container {
    position: relative;
    min-height: 340px;
    background: rgba(0, 0, 0, 0.149);
    width: 125%;
    margin-left: -15%;
    padding-left: 15%;
}

.slide {
    overflow: hidden;
    position: absolute;
    top: 10vh;
    /* right:25%; */
    width: 30%;
    border-radius: 30px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.265);
    transition: .8s;
    cursor: pointer;
}

.projectImg {
    width: 90%;
    border-radius: 30px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.104);
}

.slide:hover {
    z-index: 5;
    transform: scale(1.2)
}

#seeMoreBtn {
    border: 1px solid black;
    /* margin-top:-2h; */
    padding: 1% 5%;
    background-color: black;
    color: white;
}

#testimonialRow {
    margin: auto;
    overflow-x: auto;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* border-radius: 10px; */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.076);
}

#projectsRow {
    overflow-x: auto;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: rgba(0, 0, 0, 0.122);
    padding-top: 5vh;
    padding-bottom: 5vh;
    height: auto;
    display: none;
}

#testimonialRow::-webkit-scrollbar {
    display: none;
}

#testimonialBox {
    text-align: center;
    padding: 4% 8%;
    /* box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.136); */
    border-right: #11111119 solid 1px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.testimonialText {
    padding-top: 3vh;
    font-size: 16px;
}

.clientProfile {
    width: 50px;
    border-radius: 100px;
    margin-top: 1vh;
}

.clientName {
    margin-top: 2vh;
    margin-bottom: 0vh;
    font-weight: bolder;
}

.clientOccupation {
    font-size: 15px;
}

.page-rounded {
    background: #ffffff;
    border-radius: 32px;
    max-width: 93%;
    margin: 20px auto;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.25);
    min-height: 95vh;
    overflow: hidden;
    padding: 0;
}

#mainBtn {
    font-weight: bolder;
    outline:none;
    transition:all .3s !important;
}
#mainBtn:active{
    outline:none;
    border: none !important;
    /* transform: scale(.95) !important; */
}

#mobileNavMenu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin-top: 1vh;
    background: #111;
    border-radius: 32px;
    /* box-shadow:0 8px 40px rgba(0,0,0,0.25);  */
    z-index: 999;
}

#projectsSection {
    background: #111;
    padding: 2%;
    border-radius: none;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 0px;
    width: 60%;
    margin-left: 0%;
}

#homeNavBtn {
    display: inline;
}

#desktopNavBtns {
    display: none;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(-40px);
    animation: desktopNavBtnsDropIn 1s cubic-bezier(0.7, 0, 0.2, 1) 0.2s forwards;
}

@keyframes desktopNavBtnsDropIn {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    80% {
        opacity: 1;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#desktopNavBtns button {
    /* border-radius:10px; */
    border: 2px dashed transparent;
    transition-duration:.5s;
    margin-right: 5px;
}
#desktopNavBtns button:hover{
    padding-right: 3%;
    border-bottom:1px solid #11111177;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.056);
}

.mybtn{
    transition: all .2s;
}
.mybtn:active{
    transform: scale(.8);
}
#hiddenSocials{
    background:#111;
    padding:2%;
    border-radius: 10px;
    max-width:250px
}
#hiddenSocials button{
    /* border:1px solid black; */
    /* background:white; */
    border:none;
    background:transparent;
    color:white;
    padding: 1% 5%;
}


@media (max-width: 576px) {
    
    @keyframes ctaSlideIn {
        0% {
            opacity: 0;
            margin-left:40px;
            /* transform: translateX(-40px); */
            padding-left:80%;
        }
        80% {
            opacity: 1;
            margin-left:-4px;
            /* transform: translateX(4px); */
            padding-left:30%;
        }
        100% {
            opacity: 1;
            margin-left:90px;
            /* transform: translateX(0); */
        }
    }

    .cta{
        margin-top:8vh;
        /* margin-bottom:18vh; */
    }
    #hiddenSocials{
         margin-bottom:18vh;
         margin:auto;
         text-align: center;
         /* margin-left:90px; */
        margin-bottom:18vh;
    }
    .page-rounded {
        max-width: 100%;
        margin-top: 1vh;
    }

    .middle_nav {
        position: relative;
    }

    #desktopNavBtns {
        /* display: none !important; */
        background:rgba(255, 255, 255, 0.374);
        border:.5px solid rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(5px);
        z-index:50;
        position:fixed;
        left: 7%;
        bottom: 1vh;
        width:86%;
        border-radius:20px;
        
    }
    #desktopNavBtns button {
        padding:4% 3%;
        border-radius:20px;
        transition: padding .1s;
    }
    #desktopNavBtns button.active{
        font-weight:bolder;
        /* border:2px solid #111; */
        backdrop-filter: blur(2px);
        padding:1% 10%;
        /* background:rgba(255, 255, 255, 0.267); */
        /* box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1); */

}
#desktopNavBtns button:hover{
        /* padding-right: 3%; */
        border-bottom:none;
        box-shadow:none;
    }

    #mobileMenuBtn {
        /* display: block !important; */
        margin: auto;
    }

    #mobileNavMenu {
        display: none;
    }

    #mobileNavMenu.d-none {
        display: none !important;
    }

    #section1infoBoxContainer {
        padding-top: 5vh;
    }

    #homeTextContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #homeTextContent .middle_nav {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    #homeTextContainer {
        padding-left: 0%;
    }

    #bigText {
        text-align: center;
        margin-top: 15vh;
    }

    #bigDescription {
        text-align: center;
        max-width: 100%;
    }

    #mainBtnContainer {
        text-align: center;
        align-items: center;
    }

    #imageContainer {
        margin-top: 7vh;
        margin-bottom: 7vh;
        box-shadow: none;
    }
    .info_box{
        /* text-align:center; */
        /* border-top:1px solid #686868; */
        /* width:100%; */
        margin-bottom: 5vh;
        /* box-shadow:none; */
        box-shadow: 5px 50px 100px rgba(0, 0, 0, 0.08);
    }
    
    .info_box h5 {
        font-size: 17px;
    }
    .info_text {
        font-weight: normal;
        color:#454545;
        font-size:14px
    }

    .info_header{
        /* background:#252525;
        color:white; */
    }


    #section1 {
        padding-bottom: 5vh;
    }

    #projectsSection {
        margin-bottom: 13vh;
        width: 80%;
    }

    #projectsSection h3 {
        font-size: 20px;
        padding: 5%;
        /* padding-right:20%; */
    }

    .big_info {
        width: 100%;
    }

    .testimonialBox {
        width: 80%;
    }

    #section2b{
        margin:0;
    }
    .mysection{
        padding-top:5vh;
    }
}