@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --white: #F8F8FF;
    --white2: #f3f3f3;
    --purple: #A16AE8;
    --pastel-purple: #B88BE3;
    --black: #121212;
    --grey: #333333;
    --blue: #d39758;
}

body {
    background-color: #121212;
    width: 100%;
}

.header {
    width: calc(100% - 30px);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background-color: var(--grey);
    border-radius: 5px;
    margin: auto;
    margin-top: 10px;
    position: sticky;
    top: 10px;
    z-index: 10000;
    box-shadow: 0 0 20px #000000;
}

.header-section {
    width: 100%;
    height: 55px;
    background-color: var(--white);
    border-radius: 45px;
    border: 2px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px var(--white);
}

.header-left {
    width: calc(100% / 3 * 2 / 1.2);
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
}

.header-logo {
    width: 30%;
    font-size: 23px;
    color: #333333;
    font-weight: 600;
    background-image: url(logo3.PNG);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-navbar {
    width: 70%;
}

.header-right {
    width: calc(100% / 3 / 2);
}

.header-navbar-container {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    height: 100%;

}

.header-navbar-list {
    height: 100%;
}

.header-navbar-list-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.header-navbar-list-item:hover {
    color: var(--blue);
    text-shadow: 0 0 8px var(--blue);
}

.header-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.header-socials-links {
    text-align: none;
    color: var(--grey);
    font-size: 30px;
    transition: 0.2s ease;
}

.header-socials-links:hover {
    color: var(--blue);
    text-shadow: 0 0 8px var(--blue);
}

.header-active {
    color: var(--blue);
    text-shadow: 0 0 4px var(--blue);
}


/* ----------------------------------------- Home ----------------------------------------- */

.home {
    width: calc(100% - 30px);
    height: 65vh;
    margin: auto;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.home-slider {
    width: calc((100% / 3) * 9 + (10px * 9 / 3));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition: 0.3s ease;
    
}

.home-arrow {
    position: absolute;
    top: 47%;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    background-color: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white2);
    box-shadow: 0 0 5px var(--white2);
    transition: 0.2s ease;
    cursor: pointer;
    z-index: 100;
}

.home-arrow:hover {
    background-color: var(--white2);
    color: var(--grey);
    box-shadow: 0 0 5px var(--grey);
    transform: scale(1.1);
}

.home-arrow-left {
    left: 15px;
}

.home-arrow-right {
    right: 15px;
}

.home-card {
    height: 100%;
    width: calc(100% / 3);
    margin-right: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #333333;
    box-shadow: 0 0 4px var(--grey);
    transition: 0.2s ease;
}

.img1 {
    background-image: url(211-lenova-585x390.png);
}

.img2 {
    background-image: url(global-education-summit.png);
}

.img3 {
    background-image: url(tedx.png);
}

.home-card:hover {
    transform: scale(1.02);
}

.home-card-bottom {
    position: absolute;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-bottom: 5px;
}

.home-card-header {
    color: var(--white);
    font-size: 28px;
}

.home-card-bottom-section {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.home-card-bottom-left {
    background-color: var(--grey);
    color: var(--white2);
    padding: 0 10px 0 10px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
}

.home-card-bottom-right {
    background-color: var(--white2);
    color: var(--grey);
    padding: 0 10px 0 10px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
}


/* ----------------------------------------- About ----------------------------------------- */

.about {
    width: calc(100% - 30px);
    padding-top: 50px;
    padding-bottom: 50px;
    margin: auto;
}

.about-top {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 50px;
    color: var(--blue);
    text-shadow: 0 0 15px var(--blue);
}

.about-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10% 0 10%;
}

.about-bottom-left {
    width: 70%;
}

.about-bottom-profile {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #d39758;
    padding-bottom: 40px;
    margin-bottom: 10px;
    background-image: url(osmansitkimert.jpg);
    background-color: #333333;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px 20px 0px 0px;
    position: relative;
}

.about-bottom-profile-img {
    height: 300px;
    width: 300px;
    border-radius: 100%;
    margin-right: 30px;
}

.about-bottom-profile-dark {
    background-color: rgb(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    border-radius: 20px 20px 0px 0px;
}

.about-bottom-profile-texts {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
}

.about-bottom-profile-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
    text-shadow: 0 0 2px var(--blue);
    text-shadow: 0 0 5px #121212;

}

.about-bottom-profile-text {
    font-size: 80px;
    font-weight: 600;
    color: var(--grey);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e2e2e2;
    text-shadow: 0 0 10px #121212;
}

.about-bottom-texts {
    text-align: justify;
    color: #9b9b9b;
    font-size: 18px;
}

.about-bottom-right {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    height: 780px;
}

.about-bottom-right-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #353535;
    height: 170px;
    width: 250px;
    border-radius: 20px;
    color: var(--grey);
    font-weight: 500;
    box-shadow: 0 0 10px var(--blue);
}

.about-bottom-right-card-icon {
    font-size: 50px;
    color: var(--blue);
}

.about-bottom-right-card-text {
    font-size: 18px;
    color: #dadada;
}






.works {
    width: calc(100% - 30px);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    column-gap: 20px;
    padding: 0 10% 0 10%;
    position: relative;
    padding-bottom: 60px;
}

.works-headers {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.works-header {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    background-color: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white2);
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px #e2e2e2;
}

.works-headers-left {
    width: 65%;
}

.works-headers-right {
    width: 35%;
}

.works-bottom {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

.works-left {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 15px;
}

.works-left-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}

.works-left-card {
    width: 50%;
    background-color: #252525;
    border: 2px solid #3d3d3d;
    border-radius: 2px;
    box-shadow: 0 0 4px rgb(255, 167, 72, 0.8);
}

.works-left-card-img {
    background-image: url(osmansitkimert.jpg);
    background-color: #333333;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    border-radius: 2px 2px 0px 0px;
    border-bottom: 2px solid #3d3d3d;
}

.works-left-card-texts {
    padding: 10px;
    display: flex;
    flex-direction: column;
    color: #7c7c7c;
}

.works-left-card-texts-header {
    font-size: 22px;
    color: #cccccc;
}

.works-left-card-texts-date {
    margin-bottom: 10px;
    color: #a0a0a0;
}


.works-right {
    width: 35%;
}

.works-right-insta {
    width: 100%;
    height: auto;
}




.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid rgb(211, 151, 88, 0.6);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 15px 20% 50px 20%;
    background-color: #161616;
    color: #7c7c7c;
}

.footer-top-img {
    height: 250px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(204, 204, 204, 0.2);
    margin-bottom: 15px;
}

.footer-top-text1 {
    margin-bottom: 20px;
}

.footer-top-text2-mail {
    color: #F8F8FF;
    text-shadow: 0 0 5px #F8F8FF;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-top-text2-mail:hover {
    color: #cacaca;
    text-shadow: 0 0 5px #cacaca;
}

.footer-bottom {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #7c7c7c;
    background-color: #121212;
    border-top: 1px solid rgb(124, 124, 124, 0.4);
}

.footer-bottom-text-developer {
    color: var(--blue);
    text-shadow: 0 0 10px var(--blue);
    text-decoration: none;
    font-weight: 500;
}




.grey {
    background-color: #333333;
}