@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Itim&display=swap');
@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');

/* Pricipal configuration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
}

:root {
    --black-color: #000;
    --white-color: #fff;
    --background1-color: #06041c;
    --main-color: #ab46d2;
    --secondary-color: #FFA069;
    --border-reduis: 12px;
    --gray-color: #c3c3c3;
    --box-shadow: rgba(111, 111, 111, 0.196) 0px 7px 29px 0px;
}

body {
    background: var(--background1-color);
    overflow-x: hidden;
}

.container {
    width: 1140px;
    padding: 0px 15px;
    margin: auto;
}

/* loader */

.loader_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background1-color);
    z-index: 999999999;
}

.loader {
    width: 44.8px;
    height: 44.8px;
    color: var(--main-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(11.2px, currentColor 94%, #0000);
}

.loader:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(10.08px at bottom right, #0000 94%, currentColor) top left,
        radial-gradient(10.08px at bottom left, #0000 94%, currentColor) top right,
        radial-gradient(10.08px at top right, #0000 94%, currentColor) bottom left,
        radial-gradient(10.08px at top left, #0000 94%, currentColor) bottom right;
    background-size: 22.4px 22.4px;
    background-repeat: no-repeat;
    animation: loader 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes loader {
    33% {
        inset: -11.2px;
        transform: rotate(0deg);
    }

    66% {
        inset: -11.2px;
        transform: rotate(90deg);
    }

    100% {
        inset: 0;
        transform: rotate(90deg);
    }
}

section {
    padding: 60px 0;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--white-color);
    font-size: 1rem;
}

h1,
h2 {
    font-size: 2rem;
    color: var(--white-color);
}

button {
    outline: none;
    cursor: pointer;
    padding: 10px 14px;
    font-size: 1rem;
    border-radius: var(--border-reduis);
    font-weight: bold;
    border: none;
    color: var(--black-color);
    transition: all 0.3s ease;
}

button:hover,
#About .Left button:hover,
#Blog .BlogReight button:hover {
    background: var(--white-color);
    color: var(--black-color);
    box-shadow: var(--box-shadow);
}

.container__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}

p {
    color: var(--white-color) !important;
}

/* Notification */
.Notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 700000999;
    padding: 16px 12px;
    background: var(--main-color);
    border-radius: 5px;
    display: none;
    width: 400px;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
}

/* scroll top button */

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    cursor: pointer;
    display: none;
    place-items: center;
    box-shadow: var(--box-shadow);
    z-index: 1000;
}

#progress{
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--black-color);
}

/* Header */
header {
    width: 100%;
    height: 80px;
    line-height: 80px;
}

.sticky_header {
    position: sticky;
    left: 0;
    top: 0;
    box-shadow: var(--box-shadow);
    border-bottom: 1px solid var(--black-color);
    z-index: 888;
    background: var(--background1-color);
}

.header__links {
    display: flex;
    align-items: center;
    column-gap: 2rem;
}

.header__logo h2 a span {
    color: var(--main-color);
}

.header__logo h2 a {
    font-size: 1.7rem;
}

.menu__links {
    display: flex;
    align-items: center;
    column-gap: 2.7rem;
}

.link__item {
    font-weight: 400;
    font-size: .9rem;
    cursor: pointer;
    position: relative;
}

.link__item a {
    transition: all .2s ease-in-out;
    position: relative;
}

.link__item a:hover,
.activelinks {
    color: var(--main-color);
    font-weight: 600;
}

.link__item a::after {
    position: relative;
    content: '';
    position: absolute;
    height: 3px;
    left: 0;
    bottom: -10px;
    min-width: 0;
    background: var(--main-color);
    transition: min-width .5s ease-in-out;
    border-radius: var(--border-reduis);
}

.link__item a:hover::after {
    min-width: 70%;
}

.menu__mobile {
    display: none;
    position: relative;
    z-index: 9999999;
}

.menu__mobile span {
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--white-color);
}

header button {
    background: var(--main-color);
    color: var(--white-color);
}

/* Hero serction */

.Other_Titles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    line-height: 6.5rem;
    z-index: -1;
}

#Home h2 {
    font-size: 8rem;
    text-transform: uppercase;
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
}

#Home .First_Title {
    color: var(--main-color);
}

#Home .Mobile_Title {
    display: none;
    padding: 0 10px;
    position: relative;
    overflow-x: hidden !important;
}

#Home .Mobile_Title h2 {
    -webkit-text-stroke: 1px var(--main-color);
    color: transparent;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
}

.Other_Titles .Other_Title {
    -webkit-text-stroke: 3px var(--main-color);
    color: transparent;
    opacity: 0.8;
}

.Left,
.Right {
    width: 40%;
    position: relative;
}

.home_section .Main_Title {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(32%, -25%);

}

.home_section .Left img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.home_section .Right {
    padding: 20px;
    background: var(--background1-color);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    row-gap: .7rem;
    border-radius: var(--border-reduis);
}

.home_section .Right p {
    font-size: 1rem;
    font-weight: 400;
}

.home_section .Right ul {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.home_section .Right ul li a i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: .5s;
}

.home_section .Right ul li a i:hover {
    color: var(--white-color);
}

.DownloadMyCvIMG {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.DownloadMyCvIMG img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 0.46rem var(--secondary-color));
    animation: rotation 5s ease-in-out infinite;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* About me ---------- */
#About .Left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#About .Left h2 {
    font-size: 5rem;
    text-transform: uppercase;
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
    color: var(--main-color);
}

.contentleft {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

#About .Left .contentleft h3 {
    font-size: 1.7rem;
    color: var(--white-color);
    text-transform: uppercase;
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
}

#About .Left .contentleft h3 i {
    color: var(--secondary-color);
}

#About .Left .contentleft p {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 400;
}

#About .Left .contentleft ul {
    display: flex;
    gap: .2rem;
    flex-direction: column;
}

#About .Left .contentleft ul li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    word-break: break-all;
}

#About .Left .contentleft ul li span {
    font-size: 1rem;
    color: var(--white-color);
}

#About .Left .contentleft ul li span i {
    color: var(--secondary-color);
}

#About .Left button {
    background: var(--secondary-color);
    width: fit-content;
    position: relative;
    z-index: 13;
}

#About .Blur {
    position: absolute;
    box-shadow: 0 0 1000px 50px var(--secondary-color);
    z-index: -5;
    top: 10px;
    right: 0;
}

.ProfileCard {
    width: 100%;
    height: 100%;
}

.ProfileCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-reduis);
    cursor: pointer;
}

/* -------------------- */

.About_D .container__wrapper .Other_Titles h2 {
    font-size: 6rem;
    text-transform: uppercase;
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
    -webkit-text-stroke: 2px var(--main-color);
    color: transparent;
    opacity: 0.8;
    line-height: 5rem;
}

.About_D .container__wrapper .Other_Titles {
    left: 0;
    top: -40%;
    transform: unset;
}

.About_D .AboutLeft {
    position: relative;
    width: 60%;
    background: var(--black-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: var(--border-reduis);
    box-shadow: var(--box-shadow);
}

.About_D .AboutLeft::after,
.About_D .AboutLeft::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--gray-color);
}

.About_D .AboutLeft::after {
    width: 90%;
    height: 0px;
}

.About_D .AboutLeft::before {
    width: 0;
    height: 80%;
}

.About_D .AboutLeft .AboutLeftContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.About_D .AboutLeft .AboutLeftContent div {
    width: 45%;
    text-align: center;
    padding: 20px;
}

.About_D .AboutLeft .AboutLeftContent div h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
}

.About_D .AboutLeft .AboutLeftContent div h4 {
    font-size: 1rem;
    color: var(--white-color);
    text-transform: uppercase;
}

.About_D .AboutRight {
    position: relative;
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.About_D .AboutRight h2 {
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
    color: var(--main-color);
}

.About_D .AboutRight .AboutRightContent {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.About_D .AboutRight .AboutRightContent div i {
    color: var(--secondary-color);
    font-size: 3rem;

}

.About_D .AboutRight .AboutRightContent div h3 {
    color: var(--white-color);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.About_D .AboutRight .AboutRightContent div p {
    color: var(--white-color);
    font-size: .8rem;
    margin-top: 5px;
}

.EdexWrapper {
    gap: 0rem !important;
}

.Align_wrapper .edux {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 20px 0;
}

.Align_wrapper .edux h2 {
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
    color: var(--main-color);
}

.Align_wrapper .edux .container__wrapper div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1rem;
    width: calc(95%/3);
    background: var(--black-color);
    padding: 20px;
    border-radius: var(--border-reduis);
    height: 100%;
    min-height: 200px;
    box-shadow: var(--box-shadow);
}

.Align_wrapper .edux .container__wrapper div .year {
    padding: 8px 16px;
    font-weight: bold;
    font-size: 1.1rem;
    width: fit-content;
    min-height: fit-content;
    color: var(--black-color);
    background: var(--secondary-color);
    border-radius: var(--border-reduis);
}

.Align_wrapper .edux .container__wrapper div p {
    color: var(--white-color);
    font-size: 1rem;
}

/* Works ------------ */

.Align_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
    position: relative;
}

.Align_wrapper .shape {
    position: absolute;
    top: -110px;
    width: 170px;
    z-index: -1;
    opacity: .8;
    animation: rolate 2s ease-in-out infinite;
}

@keyframes rolate {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0%);
    }
}

.Align_wrapper .shape1 {
    left: 0;
}

.Align_wrapper .shape2 {
    right: 0;
}

.Align_wrapper .TopTitle {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.Align_wrapper .TopTitle::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0%;
    width: 30%;
    height: 4px;
    background: var(--secondary-color);
}

.filterWorks {
    display: none;
}

.filterWorks button {
    background: var(--main-color);
    color: var(--white-color);
}

.Filter_btns_works{
    padding: 10px 5px;
    border-radius: var(--border-reduis);
    background: var(--black-color);
    box-shadow: var(--box-shadow);
}

.Align_wrapper .TopTitle h3{
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.Align_wrapper .TopTitle h2 {
    font-size: 2.5rem;
    color: var(--white-color);
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
    word-break: break-all;
}

#Works .Align_wrapper .container__wrapper button {
    background: transparent;
    color: var(--white-color);
    text-transform: uppercase;
    transition: .3s;
}

#Works .Align_wrapper .container__wrapper button.active_btn,
#Works .Align_wrapper .container__wrapper button:hover {
    color: var(--secondary-color);
}

.Align_wrapper .work_List {
    flex-wrap: wrap;
    margin-top: 30px;
}

.Align_wrapper .work_List .work_item {
    width: calc(95%/3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: none;
}

.Align_wrapper .work_List .work_item.show {
    display: block;
}

.Align_wrapper .work_List .work_item img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: var(--border-reduis);
}

.Align_wrapper .work_List .work_item .show_details {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: max-height .5s ease-in-out;
    top: 0;
    left: 0;
    background: #3f3f3fa9;
    max-height: 0px;
    border-radius: var(--border-reduis);
}

.Align_wrapper .work_List .work_item:hover .show_details,
.Align_wrapper .work_List .work_item:hover .show_details span {
    visibility: visible;
    max-height: 300px;
}

.Align_wrapper .work_List .work_item .show_details span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--secondary-color);
    visibility: hidden;
}

/* Blog ------------------ */

#Blog .container__wrapper {
    border-bottom: 1px solid var(--gray-color);
    padding: 20px;
}

#Blog .container__wrapper:last-child {
    border: none;
}

.BlogLeft,
.BlogReight {
    width: 50%;
}

.BlogReight {
    align-items: flex-start;
}

.BlogLeft img,
#Blog .BlogItem img {
    width: 100%;
    border-radius: var(--border-reduis);
    cursor: pointer;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

.BlogReight h2 {
    line-height: 2.2rem;
    font-size: 2.3rem;
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
}

.BlogReight div,
#Blog .BlogItem div {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.BlogReight div span,
#Blog .BlogItem div span {
    font-size: .9rem;
    color: var(--gray-color);
}

.BlogReight div .author,
#Blog .BlogItem div .author {
    color: var(--main-color);
    font-weight: bold;
}

.BlogReight p {
    color: var(--white-color);
    font-size: 1rem;
}

#Blog .BlogReight button {
    background: var(--secondary-color);
    color: var(--black-color);
}

#Blog .container__wrapper .BlogItem {
    width: calc(90%/3);
    overflow: hidden;
}

#Blog .container__wrapper .BlogItem h2 {
    text-align: center;
    line-height: 1.5rem;
}

#Blog .container__wrapper .BlogItem h2 a {
    font-size: 1.5rem;
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
    transition: .5s;

}

#Blog .container__wrapper .BlogItem h2 a:hover {
    color: var(--secondary-color);
}

/* contact------------------ */

#contact .container {
    background: var(--black-color);
    padding: 20px;
    border-radius: var(--border-reduis);
}

#contact .container .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact .container .content .left-side {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}

#contact .content .left-side::before {
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-color);
}

#contact .content .left-side .details {
    margin: 14px;
    text-align: center;
}

#contact .content .left-side .details i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

#contact .content .left-side .details .topic {
    font-size: 18px;
    font-weight: bold;
    color: var(--white-color);
}

#contact .content .left-side .details .text-one {
    font-size: 14px;
    color: var(--white-color);
}

#contact .container .content .right-side {
    width: 70%;
    margin-left: 75px;
}

#contact .content .right-side .topic-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);

}

#contact .right-side p {
    color: var(--gray-color);
    font-size: 1rem;
    margin: 16px 0;
}

#contact .right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
}

#contact .right-side .input-box input,
#contact .right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    border-radius: var(--border-reduis);
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    padding: 0 15px;
    resize: none;
}

#contact .right-side .message-box {
    min-height: 110px;
}

#contact .right-side .input-box textarea {
    padding-top: 6px;
}

#contact .right-side .button {
    display: inline-block;
    margin-top: 12px;
}

#contact .right-side .button button {
    color: var(--black-color);
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

#contact .button button:hover {
    background: var(--white-color);
}

/*footer ------------- */
footer {
    padding: 30px;
}

footer .header__logo h2 a {
    font-size: 2.2rem;
}

footer .container .Align_wrapper ul li a {
    font-size: .9rem;
    color: var(--gray-color);
}

footer .container .Align_wrapper p {
    color: var(--gray-color);
    font-size: .9rem;
}

footer .container .Align_wrapper p span {
    color: var(--main-color);
}

/* Modal */

.Modal {
    background: rgba(66, 66, 66, 0.311);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 77777777;
    display: none;
}

.ActiveModal {
    display: block;
}

.ModalContainer {
    background: var(--white-color);
    border-radius: var(--border-reduis);
    width: 95%;
    height: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
}

.Modal .CloseModal div {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 5px 5px 8px var(--gray-color);
    background: var(--black-color);
    cursor: pointer;
    transition: all .5s ease;
    z-index: 5;
}

.Modal .CloseModal div:hover {
    transform: rotate(180deg);
}

.Modal .ModalContainer .CloseModal div i {
    color: var(--white-color);
    font-size: 1.6rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Modal .Align_wrapper {
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: .5rem;
}

.Modal .Align_wrapper .container__wrapper {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-color);
}

.Modal .Align_wrapper .container__wrapper img {
    width: 50%;
    height: auto;
    object-fit: contain;
}

.Modal .Align_wrapper .container__wrapper div {
    width: 50%;
}

.Modal .Align_wrapper h2 {
    text-align: center;
    color: var(--main-color);
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    width: 85%;
    margin: 0 auto;
}

.Modal .Align_wrapper .ModalContent {
    width: 100%;
}

.Modal .Align_wrapper .ModalContent div {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-color);
}

.Modal .Align_wrapper .ModalContent div:last-child {
    border: none;
}

.Modal .Align_wrapper p {
    font-size: 1rem;
    color: var(--black-color) !important;
}

.Modal .Align_wrapper .ModalContent div h3,
.Modal .Align_wrapper .container__wrapper div h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.Modal .Align_wrapper .ModalContent div ul li {
    font-size: 1rem;
}

.Modal .Align_wrapper .ModalContent div ul li strong {
    font-weight: 600;
}