
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalnia+Glaze:wdth,wght@101.2,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ramabhadra&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Sevillana&display=swap');




* {
    margin: 0;
    padding: 0;
    /* font-family: "Roboto", system-ui; */
}

:root {
    --primary-color: #edf2fc;
    --secondary-color: #080808;
    --text-shadow: 0px 0px 22vh rgb(11, 74, 211), 0 0 1em rgb(243, 7, 35), 0 0 0.2em rgb(251, 151, 228);
    --border: 1px 1px 10px rgb(204, 0, 255);
    --border2: 1px 1px 10px rgb(190, 188, 190);
    --p-text: rgb(166 160 160 / 75%);
    ;
    --back: rgb(71 4 56 / 83%);
    --h2-text: linear-gradient(to right, rgb(17, 14, 230), rgb(255, 0, 0));
}

.dark-mode {
    --primary-color: #000106;
    --secondary-color: #fff;
    --text-shadow: 0px 0px 10vh rgb(255, 192, 203), 0 0 1em rgb(255, 192, 203), 0 0 0.2em rgb(255, 192, 203);
    --border: 1px 1px 10px rgb(244, 97, 227);
    --p-text: rgb(26, 24, 24);
    --back: rgba(255, 255, 255, 0.027);
    --img-d-shadow: drop-shadow(0px 0px 20vh rgba(248, 248, 248, 0.911));
    --h2-text: linear-gradient(to right, rgb(216, 16, 49), rgb(96, 53, 255));
}


html {
    scroll-behavior: smooth;
}

/* body {
    --tw-bg-opacity: 1;
    background-color: rgb(19 15 24 / var(--tw-bg-opacity));

} */

#check {
    display: none;
}

#chack,
input,
label {
    opacity: 0;

}

.main {
    z-index: 999;
    position: absolute;
}

.manu {
    display: flex;
}

.nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 8.5vh;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 96%);
    border-radius: 50px;
    border: 1px solid rgba(204, 107, 190, 0.24);
    background: linear-gradient(to right, rgb(5, 2, 7), rgb(30, 3, 15), rgb(0, 0, 0));
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    /* background: var(--secondary-color) */
}

.nav .nav-items {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.n-logo img {
    height: 7vh;
    width: 7vh;
    filter: drop-shadow(1px 1px 5px rgb(255, 0, 208));
}

.nav .n-items a {
    padding: 6px 12px;
    /* margin: 2px 6px; */
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1rem;
    border-radius: 8px;
    /* text-shadow: 1px 1px 20px rgb(122, 20, 125), 0 0 1em rgb(70, 16, 59), 0 0 0.2em rgba(0, 0, 255, 0.001); */
    transition: 0.25s ease-in-out;
    font-family: "Concert One", sans-serif;
    border: none;
}

.nav .n-items a:hover {
    transform: translateY(-1px);
    text-shadow: 1px 1px 20px red, 0 0 1em rgb(70, 16, 59), 0 0 0.2em rgb(255, 191, 0);
    background: rgba(233, 7, 165, 0.12);
    color: #fff;
    border-bottom: 2px solid rgb(203, 182, 188);

}

.nav .btn a {
    text-decoration: none;
}

.nav .dropbtn {
    padding: 6px 12px;
    /* margin: 2px 6px; */
    text-decoration: none;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    font-family: "Concert One", sans-serif;
    transition: 0.25s ease-in-out;

}

.nav .dropdown {
    position: relative;
    display: inline-block;

}

.nav .dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    backdrop-filter: blur(8px);
    min-width: 180px;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(204, 107, 190, 0.24);
}


.nav .dropdown-content a {
    color: #dcdcdc;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    background-color: #171216;

}

.nav .dropdown-content a:hover {
    background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 11, 136));
    color: #fff;
}

.nav .dropdown:hover .dropdown-content {
    display: block;
}

.nav .dropdown:hover .dropbtn {
    background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 11, 136));
}

.nav .btn button {
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    cursor: pointer;
    border: none;
    color: rgb(244, 240, 240);
    text-shadow: 1px 1px 20px rgb(235, 8, 8), 0 0 1em rgb(70, 16, 59), 0 0 0.2em rgba(0, 0, 255, 0.001);
    transition: 0.25s ease-in-out;
        background: rgba(233, 7, 165, 0.14);
    filter: drop-shadow(0px 0px 14px rgb(255, 65, 248));
}

.nav .btn button h3 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.1;
    /* text-shadow: 1px 14px 40px red, 0 0 1em blue, 0 0 0.2em blue; */
}

.nav .btn button:hover {
    transform: translateY(-1px);
    color: rgba(255, 255, 255, 0.984);
    background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 11, 136));
}

.btn .material-symbols-outlined {
    justify-self: center;

}

.caintant {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.caintant .h-share {
    position: fixed;
    right: 0px;
    top: 41vh;
    color: #f88bf8;
    z-index: 9;
}



.h-share .r-share-item {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;


}

.h-share .r-share-item a {
    margin: 10px;
}

.h-share .r-share img {
    height: 4vh;
    padding: 1px;
    /* background-color: rgba(240, 6, 220, 0.534); */
    box-shadow: 0px 0px 10vh rgb(11, 74, 211), 0 0 1em rgb(243, 7, 35), 0 0 0.2em rgb(28, 6, 226);
    backdrop-filter: blur 10px;
    border-radius: 50%;
    transition: 1s ease-in-out;
    opacity: 0.7;

}

.h-share .r-share img:hover {
    background-color: rgb(250, 215, 250);
    backdrop-filter: blur 40px;
    transform: scale(1.1);
    opacity: 1;

}


/* body {
    margin: 0;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
} */


#dark {
    width: 30px;
    height: 30px;
    padding: 4px;
    border-radius: 50%;
    background: rgba(233, 7, 165, 0.14);
    border: 1px solid rgba(233, 7, 165, 0.28);
    cursor: pointer;
    position: absolute;
    right: 10px;
    transition: 0.25s ease-in-out;

}

#dark:hover {
    background: rgba(233, 7, 165, 0.25);
    transform: translateY(-1px);

}

.nav-items .n-items {
    flex: 1;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}



.caintant #chome {
    width: 100%;
    height: 100vh;
    /* background-image: url(backvideo.mp4);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    background-color: var(--secondary-color);
    z-index: 1;
}

/* .background-clip {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -2;
    width: 100%;
    height: auto;

}

@media (min-aspect-ratio:16/9) {
    .background-clip {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .background-clip {
        width: auto;
        height: 100%;
    }
} */

.home .backimg img {
    position: absolute;
    top: 6%;
    right: -21%;
    left: 27%;
    bottom: -43%;
    z-index: -10;
    /* opacity: 0.5; */
    height: auto;
    width: 80vh;
    filter: drop-shadow(1px 1px 40vh rgb(11, 74, 211));
    transition: 2s ease-in-out;
    animation: backimg 14s infinite linear;


}


@keyframes backimg {


    100% {
        transform: rotate(360deg);
    }

}




/* .sideback img {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    height: 100vh;
    width: 20%;
    z-index: -2;
    opacity: 0.2;
    filter: drop-shadow(1px 1px 20vh rgb(150, 18, 123));
    transition: 2s ease-in-out;

}

.sidebackright img {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
    height: 100vh;
    width: 20%;
    z-index: -2;
    opacity: 0.2;
    filter: drop-shadow(1px 1px 20vh rgb(150, 18, 123));
    transition: 2s ease-in-out;
    transform: rotate(180deg);

} */

.dot {
    position: absolute;
    background-color: white;
    height: 20px;
    width: 20px;
    z-index: 900;
    mix-blend-mode: difference;
    border-radius: 50%;
    transition: 0.5s;
}



.home {

    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 92vh;
    padding-top: 4vh;
    align-items: center;
    transition: 1s ease-in-out;
    position: relative;

    /* backdrop-filter: brightness(90%);
    background-color: rgb(6 5 6 / 68%); */
    ;

}

/* .home .speed {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9999;
    transition: 2s ease-in-out;
animation: spd 5s infinite linear;
      

} */

.home .speed img:nth-last-child(1) {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9999;
    height: 13vh;
    width: 7vh;
    opacity: 10;
    filter: drop-shadow(1px 1px 5vh rgb(11, 211, 48));
    transition: 2s ease-in-out;
    transform: rotate(180deg);
    animation: spd 5s infinite linear;


}

@keyframes spd {
    0% {
        transform: translate(0);
    }


    100% {
        transform: translate(-450px, 920px);
    }

}

.speed img:nth-last-child(2) {
    position: absolute;
    bottom: 0;
    left: 1px;
    z-index: 9999;
    height: 13vh;
    width: 7vh;
    filter: drop-shadow(1px 1px 5vh rgb(11, 211, 54));
    transition: 2s ease-in-out;
    animation: spds 5s infinite linear;
}

@keyframes spds {
    0% {
        transform: translate(0);
    }


    100% {
        transform: translate(720px, -950px);
    }

}

.home:hover .ph-on {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -190px;
    top: -190px;
    height: 30vh;
    width: 30vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: pp-on 1s infinite alternate;

}

@keyframes pp-on {
    100% {
        right: -100px;
        top: -100px;

    }
}

.home:hover .ph-on1 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    top: -150px;
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: pr-on1 1s infinite alternate;

}

@keyframes pr-on1 {
    100% {
        right: -65px;
        top: -65px;

    }
}

.home:hover .ph-on2 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    top: -150px;
    height: 10vh;
    width: 10vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: pr-on2 1s infinite alternate;

}

@keyframes pr-on2 {
    100% {
        right: -35px;
        top: -35px;

    }
}


/* .home:hover .ph-bott {
    position: absolute;
    z-index: -20;
    opacity: 0.5;
    left: -150px;
    bottom: -150px;
    height: 24vh;
    width: 24vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(204, 0, 255);
    animation: phh-bott 1s infinite alternate;

}

@keyframes phh-bott {
    100% {
        left: -50px;
        bottom: -50px;

    }
} */



.home h2 {

    font-size: 2.3em;
    color: var(--primary-color);
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    ;
    font-style: normal;
    font-weight: 700;
    word-spacing: 0.25rem;
    /* text-shadow: var(--text-shadow); */

}

.home h1 {
    /* color: var(--primary-color); */
    word-spacing: -20px;
    margin: 5px;
    padding: 15px 10px;
    font-weight: 700;
    font-size: 4.3rem;
    text-align: center;
    cursor: pointer;
    color: #ffffff;

    /* text-shadow: var(--text-shadow); */
    /* text-shadow: 0px 0px 10vh rgb(11, 74, 211), 0 0 1em rgb(243, 7, 35), 0 0 0.2em rgb(251, 151, 228); */
    font-family: "IBM Plex Mono", monospace;
}



/* .type {
    color: var(--primary-color);
    width: 14ch;
    animation: typing 6s steps(14) forwards infinite,
        blink 3s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 2rem;

}

@keyframes typing {

    0%,
    100% {
        width: 0;
    }

    50% {
        width: 14ch;
    }

}

@keyframes blink {
    50% {
        border-color: blue;
    }
} */

.home p {
    text-align: center;
    width: 75%;
    font-size: 1.4em;
    /* line-height: 2rem; */
    color: transparent;
    margin-bottom: 20px;
    text-shadow: 0px 0px 60px rgba(255, 0, 0, 0.441);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: linear-gradient(to right, red, blue);
    -webkit-background-clip: text;
    /* animation: anime 1s infinite alternate; */

}

/* @keyframes anime {
    100% {
        background: linear-gradient(to right, rgb(149, 4, 4), rgb(243, 83, 4));
        text-shadow: 0px 0px 60px rgba(25, 0, 255, 0.441);
    }
} */

/* button */

.home .btn {
    margin: 10px;
    padding: 10px;
}

.home .btn a {
    text-decoration: none;
}

.home .btn a button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, rgb(180, 50, 141), rgb(11, 11, 136));
    filter: drop-shadow(1px 1px 20vh rgba(179, 7, 173, 0.899));
    border-radius: 50px;
    padding: 7px 15px;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 70px #a803ab69;
    transition: 0.3s ease-in-out;
    animation: dm 1s infinite alternate;
}

.home .btn a button:hover {
    opacity: 1;
    background: linear-gradient(150deg, rgb(244, 165, 220), rgb(41, 41, 215));
    filter: drop-shadow(1px 1px 1px rgb(249, 49, 242));


}



.home .btn a button h3,
i {
    font-size: 13px;
    text-decoration: none;
    color: rgb(255, 244, 244);
    padding: 4px;
    text-shadow: 0px 0px 20px rgba(241, 10, 2, 0.841), 0 0 1em rgb(70, 16, 59), 0 0 0.2em rgba(0, 0, 255, 0.001);
    animation: anime2 1s infinite alternate;

}

@keyframes anime2 {
    100% {
        text-shadow: 0px 0px 60px rgba(25, 0, 255, 0.441);
    }
}




.infoshare {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: absolute;
    bottom: 33px;


}

.infoshare a {
    color: rgba(8, 27, 153, 0.687);
    padding: 1vh;
    font-size: 1.5vh;
    margin: 2vh;
    border: 1px solid rgba(68, 10, 65, 0.582);
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0px 0px 20vh rgba(103, 4, 103, 0.542);
}

.infoshare img {
    height: 4.5vh;
    background: linear-gradient(150deg, rgb(244, 165, 220), rgb(11, 11, 136));
    filter: drop-shadow(0px 0px 20vh rgb(255, 65, 248));
    border-radius: 50%;
    transition: 0.3s;
    opacity: 0.8;

}

.infoshare img:hover {
    transform: scale(1.2);
    background: linear-gradient(150deg, rgb(229, 17, 144), rgb(52, 168, 210));
    filter: drop-shadow(0px 0px 10px rgb(243, 120, 212));
    opacity: 1;
    box-shadow: 0px 0px 10px rgb(249, 92, 249);
}


.back1 {
    filter: blur(100px);
    background-color: rgba(61, 6, 48, 0.83);
    height: 80vh;
    border-radius: 999px;
    width: 38%;
    position: absolute;
    top: 78vh;
    right: -199px;
    z-index: 2;
    opacity: 0.55;
    box-shadow: var(--boxx-shadow);
    animation: wevee 20s infinite alternate;

}

@keyframes wevee {
    0% {
        transform: rotate(0deg);
    }


    100% {
        transform: rotate(360deg);

    }
}

.back4 {
    filter: blur(107px);
    background-color: rgb(33 7 27 / 83%);
    height: 65vh;
    border-radius: 999px;
    width: 41%;
    transform: rotate(45deg);
    position: absolute;
    top: -19vh;
    left: -242px;
    z-index: 2;
    opacity: 0.55;
    box-shadow: var(--boxx-shadow);
    animation: wevi 10s infinite alternate;

}

/* @keyframes wevi{
    0%{
        transform: rotate(360deg);
    }


    100%{
        transform: rotate(0deg);
      
    }
} */

/* servises */

.serback {
    /* background-image: url(back16.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#services {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* height: 120vh; */
    padding-top: 5.5vh;
    color: wheat;
    padding-bottom: 10px;
    /* background-color: rgba(0, 0, 0, 0.599); */
    backdrop-filter: blur(10px);

}


#services a {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    color: rgb(255, 255, 255);
    width: 12vh;
    border-radius: 30px;
    padding: 7px 12px;
    text-decoration: none;
    background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 11, 136));
}


.ser-head {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin-top: 50px;
}

.ser-head p {
    color: #b1afaf;
    margin: 15px;
    font-size: 20px;
    font-family: sans-serif;

}


#services .ser-head h1 {
    color: var(--primary-color);
    font-size: 2.3em;
    margin-top: 4vh;
    margin-bottom: 4vh;

}

#services .ser-head h2 .line {
    padding-right: 20px;
}

#services .ser-head h2 {
    font-size: 6vh;
    /* text-decoration: rgba(3, 42, 57, 0.682) underline; */
    padding: 5px;
    margin: 5px;
    background: linear-gradient(red, blue);
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: transparent;
    -webkit-background-clip: text;
    animation: anime 1s infinite alternate;

}

@keyframes anime {
    100% {
        text-shadow: 0px 0px 60px rgba(255, 0, 85, 0.692);

    }
}




.ser-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    width: 85%;
    /* height: 70vh; */
    margin: 10px;
    border-radius: 10px;
    gap: 10px;

}

.ser-parts {

    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 10px;
    height: 30vh;
    width: 40vh;
    border-radius: 10px;
    background-color: #22012b3d;
    transition: all 0.2s ease-in-out;
    backdrop-filter: blur(60px);
    overflow: hidden;
    position: relative;
    box-shadow: 1px 1px 10px rgb(72 48 72);
}

.ser-parts:hover {
    transform: scale(1.001);
    box-shadow: var(--border);
    /* opacity: 1;
    background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 11, 136)); */
}


.ser-parts img {
    width: 7vh;
    margin: 7px;
    filter: drop-shadow(1px 1px 10px rgb(209, 15, 148));
}


.ser-parts .ser-info {

    display: flex;
    flex-direction: column;
    margin-top: 10px;
    font-family: "Roboto", system-ui;
    font-style: normal;
    z-index: 10;
    /* padding-left: 50px; */

}



.ser-info h1 {
    color: var(--primary-color);
    margin-top: 0px;
    font-size: 1.5em;

}

.si-para {
    margin-top: 15px;
}

.ser-info p {
    margin-top: 10px;
    font-size: 1em;
    color: var(--p-text);
}

.ser-parts:hover .s-on {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -190px;
    top: -190px;
    height: 30vh;
    width: 30vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: s-on 1s infinite alternate;

}

@keyframes s-on {
    100% {
        right: -100px;
        top: -100px;

    }
}

.ser-parts:hover .s-on1 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    top: -150px;
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: s-on1 1s infinite alternate;

}

@keyframes s-on1 {
    100% {
        right: -65px;
        top: -65px;

    }
}

.ser-parts:hover .s-on2 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    top: -150px;
    height: 10vh;
    width: 10vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: s-on2 1s infinite alternate;

}

@keyframes s-on2 {
    100% {
        right: -35px;
        top: -35px;

    }
}


.ser-parts:hover .s-bott {
    position: absolute;
    z-index: -20;
    opacity: 0.5;
    left: -150px;
    bottom: -150px;
    height: 18vh;
    width: 18vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(204, 0, 255);
    animation: s-bott 1s infinite alternate;

}

@keyframes s-bott {
    100% {
        left: -50px;
        bottom: -50px;

    }
}



/* .about_items */


#about {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-family: "Ubuntu", sans-serif;
    border-radius: 15px;
    transition: 1s ease-in-out;
    background-color: var(--secondary-color);
    z-index: 1;
    margin-bottom: 9vh;
    margin-top: 10vh;
}

#about .ab-name {
    font-size: 2.5vh;
    padding: 15px;
    margin: 15px;
    margin-top: 4vh;
    font-weight: 100;
    text-align: center;
    transition: 1s ease-in-out;
    background: linear-gradient(to right, red, blue);
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: transparent;
    -webkit-background-clip: text;
    animation: anime 1s infinite alternate;

}

@keyframes anime {
    100% {
        text-shadow: 0px 0px 60px rgba(255, 0, 85, 0.692);

    }
}


.about_items {
    width: 100%;
    /* height: 60vh; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;



}

#about .leftt {
    width: 35%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-right: 25px;

}

.about_items .im1 {
    position: absolute;
    z-index: -1;
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(197, 11, 206);
    animation: imi 1s infinite alternate;

}

@keyframes imi {
    100% {
        transform: scale(2.1);
    }
}

.about_items .im2 {
    position: absolute;
    z-index: -1;
    height: 17vh;
    width: 17vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: imi2 1s infinite alternate;

}

@keyframes imi2 {
    100% {
        transform: scale(2.1);
    }
}

#about .leftt img {
    overflow: hidden;
    height: 39vh;
    width: 38vh;
    border-radius: 50%;
    filter: drop-shadow(1px 1px 20px rgb(87, 10, 62));
    transition: 1s ease-in-out;
}

#about:hover img {
    filter: var(--img-d-shadow);
}

.right {
    width: 55%;
    color: rgb(202, 182, 203);
    display: flex;
    margin: 20px;
    padding: 10px;
    align-items: center;
    flex-direction: column;
    transition: 0.3s ease-in-out;

}

.right .into {
    width: 100%;
    /* height: 40vh; */
    overflow: hidden;
    transition: 1s ease-in-out;
}

.right .into h3 {
    color: var(--primary-color);
    ;
    padding: 10px;
    font-size: 4vh;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
}

.right .into h2 {
    padding: 5px 10px;
    font-size: 3.5vh;
    background: var(--h2-text);
    color: transparent;
    -webkit-background-clip: text;


}


.right .into p {
    color: rgb(122, 9, 163);
    padding: 10px;
    font-size: 19px;

}

#about .right .infos {
    display: flex;
    flex-wrap: wrap;

}

.right .into .infos p {
    color: var(--p-text);
    padding: 10px;
    font-size: 19px;

}

#about .right .infos .pm {
    width: 45%;
    margin: 5px;
    padding: 6px;
    /* border: 1px solid rgb(248, 213, 162, 0.5); */
}

#about .right .infos .pm span {
    color: var(--p-text);
    font-size: 20px;
    font-weight: 600;
}

/* skills */
#skills {
    /* height: 100vh; */
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    border-radius: 10px;
    /* background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 121, 136)); */
    justify-content: space-between;

}


#skills .skill-head {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 50%;
    padding-left: 10px;

    position: relative;
}




#skills .skill-head h1 {
    color: var(--primary-color);
    font-size: 42px;
    margin-top: 2vh;

}

#skills .skill-head h2 .line {
    padding-right: 20px;
}

#skills .skill-head h2 {
    font-size: 4.5vh;
    /* text-decoration: rgba(3, 42, 57, 0.682) underline; */
    padding: 5px;
    margin: 5px;
    background: linear-gradient(to right, red, blue);
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: transparent;
    -webkit-background-clip: text;
    animation: anime 1s infinite alternate;

}



#skills .skill-head p {
    position: absolute;
    bottom: 1vh;
    width: 163px;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(186, 186, 186);
    font-size: 18px;
    background-color: transparent;
    box-shadow: 0 0 0.1vh white;
    backdrop-filter: blur(20px);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    z-index: 3;
}

#skills .skill-head p:hover {
    box-shadow: 0 0 0px rgba(5, 4, 4, 0);
    background-color: #252525c2;
}

#skills .skill-head p:hover .sho2 {
    position: absolute;
    z-index: -0;
    opacity: 1;
    right: -150px;
    top: -150px;
    height: 10vh;
    width: 10vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: spuk 1s infinite alternate;

}

@keyframes spuk {
    100% {
        right: -15px;
        top: -25px;

    }
}

#skills .skill-head p:hover .shb2 {
    position: absolute;
    z-index: -0;
    opacity: 1;
    left: -150px;
    bottom: -150px;
    height: 10vh;
    width: 10vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(77, 4, 95);
    animation: spbk 1s infinite alternate;

}

@keyframes spbk {
    100% {
        left: -15px;
        bottom: -25px;

    }
}

.skills-items {
    position: relative;
    max-width: 700px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    border-radius: 7px;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    /* background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 121, 136)); */
}

.skills-items .skill-box {
    width: 15em;
    height: 10vh;
    /* margin: 25px 0; */
    padding: 0 20px;
    background: linear-gradient(to right, rgb(157 15 131 / 25%), #0000004a);
    box-shadow: 0 0 20px #65386585;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 30px 2px;


}



.skills-items .skill-box:hover .ski1 {
    position: absolute;
    z-index: 0.7;
    right: -32px;
    top: -32px;
    height: 5vh;
    width: 5vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: skilii 1s infinite alternate;

}

@keyframes skilii {
    100% {
        transform: scale(4.1);

    }
}

.skills-items .skill-box:hover .ski2 {
    position: absolute;
    z-index: 0;
    right: -32px;
    top: -32px;
    height: 5vh;
    width: 5vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(111, 3, 116);
    animation: skili 1s infinite alternate;

}

@keyframes skili {
    100% {
        transform: scale(2.1);

    }
}

/* .skills-items .skill-box:hover .ski3 {
    position: absolute;
    z-index:0;
    bottom: -25px;
    left: -25px;
    height: 5vh;
    width: 5vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(111, 3, 116);
    animation: skiliii 1s infinite alternate;

}

@keyframes skiliii {
    100% {
       transform: scale(4.1);
      
    }
} */
.skills-items .skill-box:hover .ski4 {
    position: absolute;
    z-index: 0;
    left: -29px;
    bottom: -29px;
    height: 5vh;
    width: 5vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(111, 3, 116);
    animation: skiliw 1s infinite alternate;

}


@keyframes skiliw {
    100% {
        transform: scale(2.1);

    }
}


.skill-box .title {
    display: block;
    font-size: 16px;
    font-family: system-ui;
    font-weight: 700;
    color: #9fa4ad;
    position: absolute;
    padding: 0 0 4vh 0;
}

.skill-box .sk_lang {
    position: absolute;
    bottom: 10px;
    right: 5px;
    font-family: 'Ubuntu';
    color: rgb(119 119 119);
    font-size: 0.9em;
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
}



.skill-box .skill-bar {
    height: 5px;
    width: 100%;
    border-radius: 6px;
    margin-top: 6px;
    background: transparent;
}

.skill-bar .skill-per {
    position: relative;
    display: block;
    height: 100%;
    width: 90%;
    bottom: -17px;
    border-radius: 6px;
    background: #d5d6da;
    animation: progress 0.4s ease-in-out forwards;
    opacity: 0;
}

.skill-per.css {
    width: 70%;
    animation-delay: 0.1s;
}

.skill-per.javascript {
    width: 90%;
    animation-delay: 0.2s;
}

.skill-per.nodejs {
    width: 75%;
    animation-delay: 0.3s;
}

.skill-per.DjangoJS {
    width: 80%;
    animation-delay: 0.4s;
}

@keyframes progress {
    0% {
        width: 0;
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.skill-per .tooltip {
    position: absolute;
    right: -14px;
    top: -38px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    /* background: #2c4da8; */
    z-index: 1;
}

.tooltip::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    height: 10px;
    width: 10px;
    z-index: -1;
    /* background-color: #4070f4; */
    transform: translateX(-50%) rotate(45deg);

}

.back2 {
    filter: blur(100px);
    background-color: var(--back);
    height: 58vh;
    border-radius: 999px;
    width: 44%;
    position: absolute;
    top: 236vh;
    right: -154px;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 22vh rgb(169 3 132 / 54%);
    animation: wev 20s infinite alternate;
}

.back3 {
    filter: blur(100px);
    background-color: rgba(136, 1, 106, 0.399);
    height: 58vh;
    border-radius: 999px;
    width: 38%;
    position: absolute;
    top: 371vh;
    left: -154px;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 22vh rgb(169 3 132 / 54%);
    animation: wev 20s infinite alternate;
}

@keyframes wev {
    0% {
        transform: rotate(0deg);
    }


    100% {
        transform: rotate(360deg);

    }
}


/* happy client */

#happy {
    position: relative;
    width: 100%;
    margin: 10px;
    margin-top: 100px;
    overflow: hidden;
    background: linear-gradient(to right, rgb(112 0 255 / 7%), rgb(220 20 183 / 11%));
}

#happy:hover .h-on {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -190px;
    top: -190px;
    height: 30vh;
    width: 30vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: hh-on 1s infinite alternate;

}

@keyframes hh-on {
    100% {
        right: -100px;
        top: -100px;

    }
}

#happy:hover .h-on1 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    top: -150px;
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: c-on1 1s infinite alternate;

}

@keyframes h-on1 {
    100% {
        right: -65px;
        top: -65px;

    }
}

#happy:hover .h-on2 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    top: -150px;
    height: 10vh;
    width: 10vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: s-on2 1s infinite alternate;

}

@keyframes h-on2 {
    100% {
        right: -35px;
        top: -35px;

    }
}


#happy:hover .h-bott {
    position: absolute;
    z-index: -20;
    opacity: 0.5;
    left: -150px;
    bottom: -150px;
    height: 18vh;
    width: 18vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(204, 0, 255);
    animation: s-bott 1s infinite alternate;

}

@keyframes h-bott {
    100% {
        left: -50px;
        bottom: -50px;

    }
}

.hap-items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 50vh;
    flex-wrap: wrap;

}

.hap-items .hap-it-i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35vh;
    height: 20vh;
    margin: 5px;
    /* background-color: #a5a548; */

}

.hap-items .hap-it-i i {
    font-size: 25px;
    padding: 15px;
    box-shadow: 0 0 1px white;
    border-radius: 10px;
    margin: 5px;

}

.hap-items .hap-it-i .hap-i-info h1 {
    font-size: 50px;
    padding-left: 17px;
    color: white;
    margin: 10px;
    font-weight: 400;

}

.hap-items .hap-it-i .hap-i-info p {
    font-size: 19px;
    padding-left: 17px;
    margin: 5px;
    color: rgb(165, 165, 165);

}

/* education */

#education {
    position: relative;
    height: 160vh;
    width: 80%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    color: white;

}

#education:hover {
    box-shadow: #e8c1df;
}

.content-name {
    font-size: 2.6vh;
    /* text-decoration: rgba(3, 42, 57, 0.682) underline; */
    padding: 15px;
    margin: 15px;
    margin-top: 7vh;
    background: linear-gradient(to right, red, blue);
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: transparent;
    opacity: 1;
    -webkit-background-clip: text;
    animation: anime 1s infinite alternate;

}


.edu_items {
    width: 100%;
    max-width: 1283px;
    height: 130vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    position: relative;


}

.edu_items .eduline {
    position: absolute;
    background-color: transparent;
    box-shadow: 1px 1px 10px rgba(218, 212, 218, 0.737);
    border-radius: 10px;
    height: 105vh;
    width: 2px;
    top: 15vh;

}


.edu-parts1 {
    position: absolute;
    top: 0vh;
    left: 9.5vh;
    width: 35%;
    height: 30vh;
    display: flex;
    margin: 10px;
    padding: 10px;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    /* background-color: rgb(20, 19, 19);
    box-shadow: 0px 0px 10px rgba(125, 124, 126, 0.737); */
}

.edu-parts1:hover {
    box-shadow: 0px 0px 10px rgba(239, 26, 225, 0.614);

}

.edu-parts1:hover::before {
    content: '';
    height: 7vh;
    width: 7vh;
    position: absolute;
    z-index: 1;
    bottom: 40%;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 70px rgba(150, 9, 141, 0.67);
    animation: imi2 1s infinite alternate;

}

@keyframes imi2 {
    100% {
        transform: scale(1.5);
    }
}

.edu_items .eduarro-d1 {
    position: absolute;
    z-index: 2;
    background-color: black;
    box-shadow: 0px 0px 30px rgba(124, 5, 135, 0.737);
    border-radius: 60px 5px 5px;
    transform: rotate(45deg);
    height: 5vh;
    width: 5vh;
    top: 40%;
    right: -100px;


}

.edu_items .edu-parts1:hover .eduarro-d1 {
    position: absolute;
    z-index: 2;
    background-color: black;
    box-shadow: 0px 0px 30px rgb(238, 0, 223);
    border-radius: 60px 5px 5px;
    transform: rotate(45deg);
    height: 5vh;
    width: 5vh;
    top: 40%;
    right: -100px;


}



.edu_items .eduarro-line {
    position: absolute;
    background-color: transparent;
    box-shadow: 1px 1px 10px rgba(82, 80, 83, 0.737);
    border-radius: 10px;

    height: 1vh;
    width: 10vh;
    top: 47%;
    right: -70px;


}

.edu-parts2 {
    position: absolute;
    top: 35vh;
    right: 9.5vh;
    width: 35%;
    height: 30vh;
    color: rgb(237, 214, 238);
    display: flex;
    margin: 10px;
    padding: 10px;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    /* background-color: #0a0a09;
    box-shadow: 1px 1px 10px rgba(124, 4, 148, 0.737); */
}

.edu-parts2:hover {
    box-shadow: 0px 0px 10px rgba(239, 26, 225, 0.614);

}

.edu-parts2:hover::before {
    content: '';
    height: 7vh;
    width: 7vh;
    position: absolute;
    z-index: 1;
    bottom: 40%;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 70px rgb(239, 26, 225);
    animation: imi2 1s infinite alternate;

}

@keyframes imi2 {
    100% {
        transform: scale(1.5);
    }
}

.edu_items .eduarro-d2 {
    position: absolute;
    z-index: 2;
    background-color: black;
    box-shadow: 0px 0px 30px rgba(136, 4, 148, 0.737);
    border-radius: 60px 5px 5px;
    transform: rotate(45deg);
    height: 5vh;
    width: 5vh;
    top: 40%;
    left: -100px;

}

.edu_items .edu-parts2:hover .eduarro-d2 {
    position: absolute;
    z-index: 2;
    background-color: black;
    box-shadow: 0px 0px 30px rgb(238, 0, 223);
    border-radius: 60px 5px 5px;
    transform: rotate(45deg);
    height: 5vh;
    width: 5vh;
    top: 40%;
    right: -100px;


}

.edu_items .eduarro-line2 {
    position: absolute;
    background-color: transparent;
    box-shadow: 1px 1px 10px rgba(82, 80, 83, 0.737);
    border-radius: 10px;
    height: 1vh;
    width: 10vh;
    top: 47%;
    left: -70px;
    z-index: 0.6;
}


.edu-parts3 {
    position: absolute;
    top: 70vh;
    left: 9.5vh;
    width: 35%;
    height: 29vh;
    color: rgb(237, 214, 238);
    display: flex;
    margin: 10px;
    padding: 10px;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    /* background-color: #0a0a09;
    box-shadow: 1px 1px 10px rgba(124, 4, 148, 0.737); */
}

.edu-parts3:hover {
    box-shadow: 0px 0px 10px rgba(239, 26, 225, 0.614);

}

.edu-parts3:hover::before {
    content: '';
    height: 7vh;
    width: 7vh;
    position: absolute;
    z-index: 1;
    bottom: 40%;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 70px rgb(239, 26, 225);
    animation: imi2 1s infinite alternate;

}

@keyframes imi2 {
    100% {
        transform: scale(1.5);
    }
}

.edu_items .eduarro-d3 {
    position: absolute;
    z-index: 2;
    background-color: black;
    box-shadow: 0px 0px 30px rgba(136, 4, 148, 0.737);
    border-radius: 60px 5px 5px;
    transform: rotate(45deg);
    height: 5vh;
    width: 5vh;
    top: 40%;
    right: -100px;

}

.edu_items .edu-parts3:hover .eduarro-d3 {
    position: absolute;
    z-index: 2;
    background-color: black;
    box-shadow: 0px 0px 30px rgb(238, 0, 223);
    border-radius: 60px 5px 5px;
    transform: rotate(45deg);
    height: 5vh;
    width: 5vh;
    top: 40%;
    right: -100px;


}

.edu_items .eduarro-line3 {
    position: absolute;
    background-color: transparent;
    box-shadow: 1px 1px 10px rgba(82, 80, 83, 0.737);
    border-radius: 10px;
    height: 1vh;
    width: 10vh;
    top: 47%;
    right: -70px;
    z-index: 1;
}

.edu-parts4 {
    position: absolute;
    top: 105vh;
    right: 9.5vh;
    width: 35%;
    height: 30vh;
    color: rgb(237, 214, 238);
    display: flex;
    margin: 10px;
    padding: 10px;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    /* background-color: #0a0a09;
    box-shadow: 0px 0px 10px rgba(107, 5, 128, 0.737); */
}

.edu-parts4:hover {
    box-shadow: 0px 0px 10px rgba(239, 26, 225, 0.614);

}

.edu-parts4:hover::before {
    content: '';
    height: 7vh;
    width: 7vh;
    position: absolute;
    z-index: 1;
    bottom: 40%;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 70px rgb(239, 26, 225);
    animation: imi2 1s infinite alternate;

}

@keyframes imi2 {
    100% {
        transform: scale(1.5);
    }
}



.edu_items .eduarro-d4 {
    position: absolute;
    z-index: 2;
    background-color: black;
    box-shadow: 0px 0px 30px rgba(136, 4, 148, 0.737);
    border-radius: 60px 5px 5px;
    transform: rotate(45deg);
    height: 5vh;
    width: 5vh;
    top: 40%;
    left: -100px;

}

.edu_items .edu-parts4:hover .eduarro-d4 {
    position: absolute;
    z-index: 2;
    background-color: black;
    box-shadow: 0px 0px 30px rgb(238, 0, 223);
    border-radius: 60px 5px 5px;
    transform: rotate(45deg);
    height: 5vh;
    width: 5vh;
    top: 40%;
    right: -100px;


}

.edu_items .eduarro-line4 {
    position: absolute;
    background-color: transparent;
    box-shadow: 1px 1px 10px rgba(82, 80, 83, 0.737);
    border-radius: 10px;
    height: 1vh;
    width: 10vh;
    top: 47%;
    left: -70px;
    z-index: 0.6;
}




/* .edu-parts1:hover {
    box-shadow: 1px 1px 10px rgba(181, 19, 213, 0.786);
    
} */


.edu_items .into {
    overflow: hidden;
    transition: 1s ease-in-out;
    position: absolute;
    z-index: 5;
    padding-top: 10px;
    box-shadow: 0 0 10px #430243;
    border-radius: 10px;
}

.edu_items .into h2 {
    color: var(--primary-color);

    padding: 5px;
    margin: 2px;
    width: 19vh;
    box-shadow: 0 0 10px rgb(111 3 93 / 74%);
}

.edu_items .into:hover h2 {
    color: #e307be;
}

.edu_items .into h1 {
    color: var(--primary-color);
    font-size: 2rem;
    padding: 10px;
    padding-top: 15px;
}

.edu_items .into p {
    color: var(--primary-color);
    padding: 10px;
}






/* projects */

#projects {
    /* height: 100vh; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: wheat;
    background-color: transparent;
}


#projects>h1 {
    font-size: 5vh;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 5px;
    margin: 5px;
    padding-top: 4vh;
    margin-top: 9vh;
    margin-bottom: 3vh;
    transition: 0.3s ease-in-out;
    background: linear-gradient(to right, red, blue);
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: transparent;
    -webkit-background-clip: text;
    animation: anime 1s infinite alternate;

}

@keyframes anime {
    100% {
        text-shadow: 0px 0px 60px rgba(255, 0, 85, 0.692);

    }
}

#projects .p-categary {
    display: flex;
    justify-content: center;
    flex-direction: row;
    text-decoration: none;
    margin-bottom: 10px;
    margin-top: 40px;
    width: 75%;
}

#projects .p-categary a {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    text-decoration: none;
    margin-bottom: 10px;
    width: 80%;

}

#projects .p-categary a h2 {
    font-size: 2.5vh;
    margin: 10px 20px;
    padding: 7px 20px;
    border-radius: 10px;
    border: 0.3px solid rgba(110, 109, 107, 0.552);
    color: rgb(255, 255, 255);
    opacity: 0.65;
    transition: all 0.3s ease-in-out;
}


#projects .p-categary a .select {
    opacity: 1;
    background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 11, 136));
}


#projects .p-categary a h2:hover {
    opacity: 1;
    border-radius: 20px;
    background: linear-gradient(150deg, rgb(233, 7, 97), rgb(28, 178, 170));
}

#projects .p-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 85%;
    gap: 35px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;

}

/* .p-items .p-objects {
    width: 40vh;
    height: 29vh;
    margin: 5px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    box-shadow: 0px 0px 10px rgba(144, 140, 140, 0.295);

}

.p-items .p-objects:hover {
    height: 43vh;
    box-shadow: 0px 0px 10px rgba(243, 101, 243, 0.522);
} */

.p-items .select {
    background: linear-gradient(to right, rgb(112 0 255 / 7%), rgb(220 20 183 / 11%));
    width: 60vh;
    height: 40vh;
    /* margin: 10px 20px; */
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
    position: relative;
}

.p-items .select:hover {
    box-shadow: 0 0 30px rgb(125, 47, 133);
}

.p-items .select:hover .pro-on {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -190px;
    bottom: -190px;
    height: 30vh;
    width: 30vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: pp-on 1s infinite alternate;

}

@keyframes pp-on {
    100% {
        right: -100px;
        bottom: -100px;

    }
}

.p-items .select:hover .pro-on1 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    bottom: -150px;
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: pr-on1 1s infinite alternate;

}

@keyframes pr-on1 {
    100% {
        right: -65px;
        bottom: -65px;

    }
}

.p-items .select:hover .pro-on2 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    bottom: -150px;
    height: 10vh;
    width: 10vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: pr-on2 1s infinite alternate;

}

@keyframes pr-on2 {
    100% {
        right: -35px;
        bottom: -35px;

    }
}


.p-items .select:hover .pro-bott {
    position: absolute;
    z-index: -20;
    opacity: 0.5;
    left: -150px;
    top: -150px;
    height: 18vh;
    width: 18vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(204, 0, 255);
    animation: pr-bott 1s infinite alternate;

}

@keyframes pr-bott {
    100% {
        left: -50px;
        top: -50px;

    }
}

.p-items .select img {
    height: 21vh;
    width: 96%;
    margin: 10px;
    margin-bottom: 1px;
    border-radius: 6px;
    object-fit: cover;
    filter: drop-shadow(1px 1px 15px rgb(87, 10, 62))
}

.p-items .select .disc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;

    transition: 1s ease-in-out;
}

.p-items .select .disc h3 {
    color: #afafaf;
        font-size: 20px;

}

.p-items .select .disc a {
    color: #7e7b7b;
    text-decoration: none;
    font-family: sans-serif;
    padding: 5px 7px;

}

.p-items .select:hover a {
    color: #e4e4e4;
    border: 0.5px solid rgb(102, 102, 102);
    padding: 5px 7px;
    border-radius: 50px;
}

.p-items .select .inf .nm {
    font-size: 1.3rem;
    color: rgb(239, 222, 244);

}

/* .p-items .p-objects {
    width: 40vh;
    height: 29vh;
    margin: 5px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    box-shadow: 0px 0px 10px rgba(144, 140, 140, 0.295);

}

.p-items .p-objects:hover {
    height: 43vh;
    box-shadow: 0px 0px 10px rgba(243, 101, 243, 0.522);
} */

/* 
.p-items .p-objects img {
    height: 26vh;
    width: 70%;
    margin: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    filter: drop-shadow(1px 1px 15px rgb(87, 10, 62))
}

.p-items .p-objects .disc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    padding: 2px 7px;
}

.p-items .p-objects .disc h3 {
    color: #f88bf8;
    padding: 5px 8px;
    border-radius: 30px;
    border: 1px solid rgb(255, 192, 248, 0.5);
}



.p-items .p-objects .inf h2 {
    color: #d8d3d3;
    margin-top: 20px;
} */

/* my blogs */

#blogs {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: rgb(241, 241, 241);
    /* height: 100vh; */
    width: 80%;
    max-width: 1300px;
    /* background-color: #330733; */
    transition: 0.3s ease-in-out;

}

#blogs .blo-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin-top: 50px;
}


#blogs .blo-head h1 {
    color: #c3bfc3;
    font-size: 60px;
    margin-top: 4vh;
    margin-bottom: 4vh;
    font-weight: 600;

}

#blogs .blo-head h2 .line {
    padding-right: 4vh;
}

#blogs .blo-head h2 {
    font-size: 3vh;
    padding: 3px;
    margin: 3px;
    font-weight: 300;
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: rgb(137, 135, 135);

}

#blogs .b-categary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 3vh;
    margin-top: 3vh;
    width: 90%;
}

#blogs .b-categary .b-items {
    width: 95%;

    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px;
    position: relative;
    background-color: black;
    border-radius: 1px;
    margin-bottom: 40px;
    transition: 0.3s ease-in-out;
    background-color: #100418;
    overflow: hidden;
    box-shadow: 1px 1px 5px rgb(39, 8, 44);
}

/* .b-items:hover {
    background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 11, 136));
} */

#blogs .b-categary .b-items:hover {
    transform: scale(1.01);
    box-shadow: 0 0 5px rgb(164, 1, 150);
}

.b-categary .b-items img {
    width: 20vh;
    height: 17vh;
    border-radius: 1px;
    margin: 5px;
    z-index: 3;
    z-index: 3;

}

.b-categary .b-items .b-disc {
    padding: 5px;
    margin-left: 23px;
    width: 65%;
    transition: 0.3s ease-in-out;
}

.b-categary .b-items .b-disc h2 {
    font-size: 20px;
    font-weight: 400;
    padding: 10px;
}

.b-categary .b-items .b-disc h2 .b-d-h2 {
    color: #686666;
}

.b-categary .b-items:hover .b-disc h2 .b-d-h2 {
    color: #e8e7e7;
}

.b-categary .b-items .b-disc h1 {
    padding: 5px;
    font-size: 1.7em;
    margin: 5px 0 0 0;
    color: rgb(221, 220, 221);
    transition: 0.3s ease-in-out;
}

.b-categary .b-items .b-disc p {
    padding: 5px;
    margin: 6px 0 0 0;
    color: rgb(133, 107, 133);
}

.b-items:hover .b-disc h1 {
    color: rgb(246, 197, 246);
}

.b-items:hover .b-disc p {
    color: rgb(210, 190, 210);
}

.b-items button {
    background-color: transparent;
    padding: 15px 20px;
    position: absolute;
    right: 70px;
    border-radius: 50px;
    margin: 10px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(235, 21, 188, 0.5);
}

.b-items button:hover {
    background-color: rgb(21, 21, 21);
}

.b-items button a {
    text-decoration: none;
    color: rgb(192, 189, 192);
}

#blogs .all {
    width: 10%;
    padding: 10px;
    margin-top: 3vh;
    opacity: 0.7;
}

#blogs .all:hover {
    opacity: 1;
}

#blogs a button {
    width: 100%;
    height: 4vh;
    font-size: 16px;
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    border: 1px solid rgb(225, 221, 221, 0.5);
    box-shadow: 1px 1px 10px saddlebrown;
    background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 11, 136));
}

#blogs .b-items:hover .backc2 {
    height: 38vh;
    border-radius: 999px;
    width: 38vh;
    position: absolute;
    top: -25vh;
    right: -25vh;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 22vh rgba(169, 3, 133, 0.374);
}

#blogs .b-items:hover .backc3 {
    height: 38vh;
    border-radius: 999px;
    width: 38vh;
    position: absolute;
    bottom: -25vh;
    left: -25vh;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 22vh rgb(169 3 132 / 54%);
}

#blogs .b-items:hover .backc4 {
    height: 38vh;
    border-radius: 999px;
    width: 38vh;
    position: absolute;
    top: -29vh;
    right: -29vh;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 10vh rgb(169 3 132 / 54%);
}

#blogs .b-items:hover.backc5 {
    height: 38vh;
    border-radius: 999px;
    width: 38vh;
    position: absolute;
    bottom: -29vh;
    left: -29vh;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 22vh rgb(169 3 132 / 54%);
}

/* client */
#client {
    width: 80%;
    height: 120vh;
    /* background-color: #111214; */
    position: relative;
    color: white;


}

#client .cl-head {
    position: absolute;
    right: 10vh;
    top: 20vh;
}

#client .cl-head h1 {
    color: #ffecff;
    font-size: 8vh;
    margin-top: 4vh;
    margin-bottom: 4vh;

}

#client .cl-head .line {
    padding-right: 20px;
}

#client .cl-head h2 {
    font-size: 4vh;
    padding: 5px;
    margin: 5px;
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: rgb(149, 141, 141);

}





#client .cl-i1 {
    width: 440px;
    height: 40vh;
    position: absolute;
    top: 12vh;
    padding: 30px;
    margin: 15px;
    border-radius: 10px;
    background-color: #120d12;
    transition: 0.1s ease-in-out;
    overflow: hidden;
}

#client .cl-i1 p {
    font-size: 1.5em;
    position: absolute;
    top: 4vh;
    width: 400px;
}

#client .cl-i1 h2 {
    font-size: 25px;
    color: #767373;
    position: absolute;
    top: 30vh;
    right: 30px;
}

#client .cl-i1 h3 {
    font-size: 20px;
    color: #767373;
    position: absolute;
    top: 36vh;
    right: 30px;
}


/* #client .cl-i2/ */
/* #client .cl-i2 */

#client .cl-i2 {
    width: 440px;
    height: 70vh;
    position: absolute;
    bottom: 12px;
    right: 10vh;
    padding: 30px;
    margin: 15px;
    border-radius: 10px;
    background-color: #120d12;
}

#client .cl-i2 p {
    font-size: 35px;
    position: absolute;
    top: 20vh;
    width: 400px;
}

#client .cl-i2 h2 {
    font-size: 25px;
    color: #767373;
    position: absolute;
    top: 30vh;
    right: 30px;
}

#client .cl-i2 h3 {
    font-size: 20px;
    color: #767373;
    position: absolute;
    top: 36vh;
    right: 30px;
}

/* #client .cl-i2/ */
/* #client .cl-i2 */

#client .cl-i2 {
    width: 440px;
    height: 40vh;
    position: absolute;
    bottom: 12px;
    right: 10vh;
    padding: 30px;
    margin: 15px;
    border-radius: 10px;
    transition: 0.1s ease-in-out;
    overflow: hidden;
    background-color: #120d12;
}

#client .cl-i2 p {
    font-size: 1.5em;
    position: absolute;
    top: 4vh;
    width: 400px;

}



#client .cl-i1:hover .backc2 {
    height: 38vh;
    border-radius: 999px;
    width: 38vh;
    position: absolute;
    top: -20vh;
    right: -20vh;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 22vh rgb(169 3 132 / 54%);
}

#client .cl-i1:hover .backc3 {
    height: 38vh;
    border-radius: 999px;
    width: 38vh;
    position: absolute;
    bottom: -20vh;
    left: -20vh;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 22vh rgb(169 3 132 / 54%);
}

#client .cl-i2:hover .backc2 {
    height: 38vh;
    border-radius: 999px;
    width: 38vh;
    position: absolute;
    top: -20vh;
    right: -20vh;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 22vh rgb(169 3 132 / 54%);
}

#client .cl-i2:hover .backc3 {
    height: 38vh;
    border-radius: 999px;
    width: 38vh;
    position: absolute;
    bottom: -20vh;
    left: -20vh;
    z-index: 2;
    opacity: 0.55;
    box-shadow: 0 0 22vh rgb(169 3 132 / 54%);
}




/* contact */
#contact {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 80%;
    overflow: hidden;
    /* background-color: rgba(91, 87, 87, 0.47);
    backdrop-filter: blur(10px); */

}

.contact-title {
    display: flex;
    height: 10vh;
    justify-content: center;
    align-items: center;
    font-size: 3vh;
    margin-top: 13vh;
    background: linear-gradient(to right, red, blue);
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: transparent;
    -webkit-background-clip: text;
    animation: anime 1s infinite alternate;

}

@keyframes anime {
    100% {
        text-shadow: 0px 0px 60px rgba(255, 0, 85, 0.692);

    }
}


.contact-title span {
    color: rgb(100, 5, 97);
}

#contact:hover span {
    color: rgb(68, 0, 255);
}

.contact-discrip {
    text-align: center;
}

.contact-discrip p {
    font-size: 3vh;
    color: rgb(171, 174, 170);
    margin: 5vh;
}

#cont-sides {
    display: flex;
    flex-direction: row;
    color: antiquewhite;
    background: linear-gradient(150deg, rgb(85 2 59), rgb(0 8 35));
    border-radius: 10px;
    margin: 1vh;
    transition: 1s;
    overflow: hidden;
}

#cont-sides:hover {
    transform: scale(101%);
    box-shadow: 1px 1px 20px rgb(124, 123, 123);
}

.contact-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(24, 24, 24);
    border-radius: 10px;
    padding: 0 4vh 4vh;
    margin: 1vh 1vh 1vh 1vh;
    text-align: center;
}

.contact-right h1 {
    font-size: 4vh;
    color: linen;
    margin: 3vh 0 2vh 0;

}

.contact-right p {
    font-size: 20px;
    line-height: 1.4rem;
    color: rgb(202, 199, 197);
}

.cont-item {
    display: flex;
    flex-direction: column;
    margin-left: 29px;

}

.c11 {
    margin: 6px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.c11 h3 {
    margin-left: 20px;
    font-size: 18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.c11 h3 a {
    color: inherit;
    text-decoration: none;
}

.c11 h3 a:hover {
    text-decoration: underline;
}

.c11 img {
    width: 40px;
    height: 40px;

}

/* .contact-left  */

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 0.75rem;
    border-radius: 20px;

}

.contact-left-title {
    display: flex;
    height: 10vh;
    justify-content: center;
    align-items: center;
}

.conmi {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.contact-left h1 {
    font-size: 2rem;
}



.send-inputs {
    width: 60%;
    height: 40px;
    margin: 7px;
    padding: 0 15px;
    border: none;
    outline: none;
    font-weight: 570;
    border-radius: 30px;
    background-color: #bab6b6e0;
    transition: 1s;
    opacity: 1;

}

.send-inputs:hover {
    background-color: rgb(247, 248, 249);
    box-shadow: 1px 1px 20px greenyellow;
    transform: scale(101%);
}

.contact-left:focus {
    border: 2px solid #f73905;
}

.contact-left textarea {
    height: 110px;
    padding-top: 15px;
    border-radius: 15px;
}


.send-inputs:focus {
    color: rgb(5, 6, 6);
}

.contact-left::placeholder {
    color: #686666;

}

.contact-left button {
    width: 15%;
    height: 15px;
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
    color: aliceblue;
    border: 1px solid rgb(208, 202, 202, 0.5);
    cursor: pointer;
    border-radius: 50px;
    background: linear-gradient(150deg, rgb(233, 7, 165), rgb(11, 11, 136));
    transition: 2s ease-in-out;
}

.contact-left button:hover {

    background: linear-gradient(170deg, rgba(187, 255, 0, 0.731), rgba(255, 174, 0, 0.689));
}

.contact-left button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    min-height: 22px;
    margin-top: 8px;
    color: #f0ecec;
    font-size: 14px;
    text-align: center;
}

.form-status.success {
    color: #9ef7a9;
}

.form-status.error {
    color: #ffb8b8;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

#cont-sides:hover .c-on {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -190px;
    top: -190px;
    height: 30vh;
    width: 30vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: s-on 1s infinite alternate;

}

@keyframes c-on {
    100% {
        right: -100px;
        top: -100px;

    }
}

#cont-sides:hover .c-on1 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    top: -150px;
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: s-on1 1s infinite alternate;

}

@keyframes c-on1 {
    100% {
        right: -65px;
        top: -65px;

    }
}

#cont-sides:hover .c-on2 {
    position: absolute;
    z-index: -20;
    opacity: 0.7;
    right: -150px;
    top: -150px;
    height: 10vh;
    width: 10vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(98, 4, 122);
    animation: s-on2 1s infinite alternate;

}

@keyframes c-on2 {
    100% {
        right: -35px;
        top: -35px;

    }
}


#cont-sides:hover .c-bott {
    position: absolute;
    z-index: -20;
    opacity: 0.5;
    left: -150px;
    bottom: -150px;
    height: 18vh;
    width: 18vh;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(204, 0, 255);
    animation: s-bott 1s infinite alternate;

}

@keyframes c-bott {
    100% {
        left: -50px;
        bottom: -50px;

    }
}


/* footer */
.footer {
    width: 80%;
    display: flex;
    padding: 10px 125px;
    background-color: #0e001a;

}

.footer .left {
    color: rgb(224, 199, 199);
    width: 50%;
    margin: 10px;
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background-color: beige; */
}

.footer .left .f-logo img {
    height: 10vh;
    filter: drop-shadow(1px 1px 10px rgb(255, 0, 208));

}


.footer .left h2{
        font-size: 25px;
}
.footer .left h3{
        color: #9f9e9e;
        font-weight: normal;
}



.footer .center {
    width: 30%;
    padding: 15px;
}

.footer .center h2 {

    font-size: 25px;
    padding: 10px;
    background: linear-gradient(to right, red, blue);
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: transparent;
    opacity: 1;
    -webkit-background-clip: text;
    animation: anime 1s infinite alternate;

}

.footer .center .in {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: space-around; */



}

.footer .center .in a {
    width: 30%;
    height: 3vh;
    margin: 10px;
    font-size: 19px;
    color: rgb(188, 187, 187);
    text-decoration: none;
    transition: 0.1s ease-in-out;

}

.footer .center .in a:hover {
    color: #f66ff9;
}

.footer .right {
    width: 20%;

    /* background-color: gainsboro; */
}

.footer .right h1 {
    font-size: 2.7vh;
    margin-bottom: 10px;
        text-align: center;
    background: linear-gradient(to right, red, blue);
    text-shadow: 0px 0px 60px rgba(102, 3, 36, 0.286);
    color: transparent;
    opacity: 1;
    -webkit-background-clip: text;
    animation: anime 1s infinite alternate;

}

.footer .right input {
    opacity: 5;
    margin: 19px;

}


.r-share-item {
    display: flex;
    width: 18%;
    /* justify-content: center; */
    align-items: center;


}

.share a {
    color: rgb(1, 70, 99);
    padding: 1vh;
    font-size: 1.5vh;
    margin: 2vh;
    border: 1px solid rgb(1, 1, 69);
    border-radius: 40px;
    text-decoration: none;
    transition: 1s ease-in-out;
}

.r-share a:hover {
    border: 1px solid aliceblue;
    box-shadow: 1px 1px 25px yellow;
    transform: scale(1.1);
}

.r-share img {
    height: 4vh;
    background-color: rgb(116, 116, 119);
    backdrop-filter: blur 10px;
    border-radius: 50%;
    transition: 1s ease-in-out;
    opacity: 0.7;

}

.r-share img:hover {
    background-color: antiquewhite;
    backdrop-filter: blur 40px;
    transform: scale(1.1);
    opacity: 1;

}


footer p{
    color: rgb(199, 199, 199);
}

/* media  */
/* media */




@media only screen and (max-width: 1279px) {


    #about .ab-name {
        font-size: 2.5vh;
    }

    #about:hover .ab-name {
        text-shadow: 0px 0px 20px rgb(238, 149, 235), 0 0 1em rgb(70, 16, 59), 0 0 0.2em rgba(0, 0, 255, 0.001);
    }


    .about_items {
        width: 90%;
        /* height: 60vh; */
        align-items: center;
        justify-content: center;
    }

    #about .leftt {
        width: 25%;
        height: 20vh;


    }

    #about .leftt img {
        height: 35vh;
        width: 28vh;
    }


    .right {
        width: 67%;
        height: 70vh;
        padding: 5px;
    }

    .right .into {
        width: 100%;
        height: 80vh;
        align-items: flex-start;

    }

    #about .right .infos .pm {
        width: 40%;
    }

    #education {

        width: 100%;

    }

    .edu-parts .into h2 {
        padding: 8px;
        margin: 2px;
        width: 22%;
        font-size: 21px;
    }

    .edu-parts .into h1 {
        font-size: 23px;
    }

    .edu-parts .into {
        height: 28vh;
    }

    /* #projects .p-items {
        display: flex;
        flex-direction: row;
        width: 75%;
        flex-wrap: wrap;
        margin-top: 20px;
        align-items: center;
        justify-content: space-around;
    } */

    #projects .p-items {

        width: 100%;
        gap: 11px;
    }

    .p-items .select {
        width: 60vh;
        /* height: 48vh; */
    }

    #blogs {
        width: 90%;
    }

    #blogs .b-categary .b-items {
        width: 90%;
        margin-bottom: 40px;
    }

    #blogs .b-categary .b-items button {
        right: 25px;
    }

    .contact-left button {
        width: 18%;
        padding: 15px 20px;
    }

    .footer {
        width: 95%;
        margin-top: 4rem;
    }

    .footer .left {
        width: 44%;

    }

    .footer .right {
        width: auto;
    }

    .footer .center h2 {
        padding: 5px;
    }

    .footer .center .in {
        align-items: none;
        justify-content: none;
    }

    .footer .center .in a {
        width: 20%;
        height: 2vh;
        margin: 10px;
    }

    .footer .right {
        width: 24%;
        margin: 5px;
    }

}


@media only screen and (max-width: 1204px) {

    #skills .skill-head h1 {
        font-size: 2.3em;
    }



    .edu-parts .into h2 {
        width: 31%;
    }

    .ser-items {
        width: 94%;
    }

    .ser-parts {
        width: 26%;
    }

    #projects .p-categary {
        width: 90%;
    }

    .hap-items {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: 31vh;
    }

    /* #projects .p-items {
        width: 77%;
        justify-content: space-evenly;
    } */

    #blogs .blo-head h1 {
        font-size: 6vw;
    }

    .footer {
        border-radius: 10px 10px 0 0;
        background-color: #1b18188e;
    }

    #client {
        display: none;
    }
}


@media only screen and (max-width: 1085px) {
    .edu-parts .into h2 {
        width: 35%;
    }

    #skills {
        /* height: 86vh; */
        width: 86%;
    }

    .skills-items {
        width: 50%;
        margin: 1px;
    }

    .skills-items .skill-box {
        width: 90%;
        height: 14vh;
        margin: 0;
    }

    #skills .skill-head p {
        position: absolute;
        bottom: 14vh;
        width: 198px;
        height: 7vh;
    }

    .ser-parts {
        margin: 0px;
    }

    #about .leftt {
        width: 25%;
        height: auto;
    }

    #about .leftt img {
        height: auto;
        width: 19vh;
    }

    .about_items .im1 {
        position: absolute;
        z-index: -1;
        height: 6vh;
    }

    .right {
        width: 86%;
        height: 40vh;
        padding: 5px;
    }

    .edu-parts1 {
        left: 6.5vh;
    }

    .edu-parts2 {
        right: 6.5vh;
    }

    .edu-parts3 {
        left: 6.5vh;
    }

    .edu-parts4 {
        right: 6.5vh;
    }


    .edu-parts .into p {
        color: rgb(154, 152, 155);
        padding: 3px;
    }

    #about .right .infos .pm {
        width: 43%;
    }

    .p-items .select {
        width: 41vh;
        height: 35vh;

    }
}

@media only screen and (max-width: 970px) {
    .home p {

        font-size: 1.2em;
        line-height: 2rem;
    }

    .edu-parts .into h2 {
        width: 37%;
    }


    #services {

        /* height: 90vh; */
    }

    .ser-items {

        width: 95%;
        /* height: 56vh; */
        gap: 20px;
    }

    .ser-parts {
        width: 35%;
        padding-bottom: 30px;

    }

    skills-items .skill-box {

        margin: 0px;
    }

    .ser-parts img {
        width: 9vh;
        margin: 15px 0 15px 0;
        margin-top: 0;
        height: 9vh;
    }

    #services .ser-head h1 {

        font-size: 4vw;
        margin-top: 2vh;
        margin-bottom: 0vh;
    }

    #about {
        margin-bottom: 0vh;
    }

    #about .right .infos .pm {
        width: 44%;
        margin: 3px;
        padding: 5px
    }

    .edu-parts1 {
        left: 3.5vh;
    }

    .edu-parts2 {
        right: 3.5vh;
    }

    .edu-parts3 {
        left: 3.5vh;
    }

    .edu-parts4 {
        right: 3.5vh;
    }

    #projects .p-categary a {

        margin-bottom: 0px;
        width: 95%;
    }

    .b-categary .b-items img {
        width: 17vh;
        height: auto;

    }

    .b-categary .b-items .b-disc p {
        padding: 5px;
        /* margin-bottom: 10px; */
        color: rgb(133, 107, 133);
    }

    #blogs .b-categary .b-items {
        width: 100%;
        margin-bottom: 10px;
        padding: 20px;
    }

    .b-categary .b-items .b-disc {
        padding: 5px;
        margin-left: 10px;
        margin-bottom: 41px;
    }

    .b-categary .b-items .b-disc h1 {
        font-size: 3vw;
    }

    #blogs .b-categary .b-items button {
        right: 150px;
        bottom: 10px;
        padding: 8px 11px;
        margin: 6px;
        font-size: 12px;
    }

    #contact {
        height: 100vh;
        width: 90%;
    }

    .hap-items .hap-it-i {

        width: 30vh;
        height: 13vh;
        margin: 5px;
    }
}

@media only screen and (max-width: 887px) {

    .hap-items {
        display: none;
    }
}

@media only screen and (max-width: 867px) {
    #contact {
        height: fit-content;
        width: 90%;
    }

    #cont-sides {
        flex-wrap: wrap;
    }

    .contact-right {
        width: 88%;
    }

    .contact-left {

        width: 100%;
    }
    .contact-title {

    font-size: 2.4vw;
    }

    .contact-discrip p {
    font-size: 2.5vw;
    margin: 2vw;
    }
}

@media only screen and (max-width: 812px) {

    .home h1 {
        font-size: 50px;
    }

    .home h2 {
        font-size: 4vh;
    }

    .home p {
        width: 79%;
        font-size: 19px;
    }

    #about .ab-name {
        font-size: 2vh;
    }

    .right .into h2 {
        font-size: 2.5vh;
    }

    .right .into h3 {
        font-size: 3vh;
    }

    #skills b {
        font-size: 4vh;
    }

    .content-name {
        font-size: 2.3vh;
    }

    #services .ser-head h2 {
        font-size: 4vh;
    }

    #projects>h1 {
        font-size: 4.3vh;
    }

    #projects .p-categary a h2 {
        font-size: 2vh;
        padding: 9px 5px;
    }

    #projects>h1 {
        margin-bottom: 0;
    }

    #blogs {
        height: 100vh;
        width: 85%;
    }

    #blogs>h1 {
        margin-top: 7vh;
    }

    #blogs a button {
        width: 126%;
        height: 3vh;
        font-size: 16px;
    }

    #blogs .b-categary {
        margin-bottom: 0vh;
        margin-top: 0vh;
        flex-wrap: wrap;
    }

    #blogs .b-categary .b-items {
        width: 90%;
        height: 34vh;
    }

    .edu-parts .into {
        height: 20vh;
    }

    #education {
        height: 80vh;
    }

    .ser-head {
        width: 80%;
    }

    .f-share-item h3 {
        font-size: 13px;
    }

    .footer .left {
        width: 32%;
    }
}

/* @media only screen and (min-width: 689px),
(max-width: 800px) {


    #projects .p-categary a {
        width: 93%;
    }

    #projects .p-items {
        width: 91%;
        height: 50vh;
    }

    #projects .p-items {
        width: 91%;
        height: 50vh;
    }

    .p-items .p-objects .disc {
        width: 85%;
    }

    .p-items .p-objects {
        width: 30vh;
        height: 29vh;
    }

    .p-items .select {
        width: 33vh;
        height: 44vh;
    }

    .p-items .select .inf .nm {
        font-size: 1rem;
    }
} */

/* Typography normalization for consistent professional sizing */
body {
    line-height: 1.55;
}

/* Performance optimization: keep UI effects, reduce only the heaviest continuous motion */
.home .speed img:nth-last-child(1),
.speed img:nth-last-child(2) {
    animation-duration: 8s;
    animation-timing-function: linear;
}

.back1,
.back4 {
    animation-duration: 28s;
    will-change: transform;
}

.nav .n-items a,
.nav .dropbtn {
    font-size: 0.98rem;
    font-weight: 500;
}

.home h2 {
    font-size: clamp(1.75rem, 2.4vw, 2.45rem);
}

.home h1 {
    font-size: clamp(2.35rem, 5vw, 4.2rem);
    line-height: 1.1;
    word-spacing: -8px;
}

.home p {
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.7;
}

#services .ser-head h2,
#skills .skill-head h2,
#blogs .blo-head h2,
#client .cl-head h2,
#contact .contact-title h1 {
    font-size: clamp(1.55rem, 2.6vw, 2.45rem);
}

#services .ser-head h1,
#skills .skill-head h1,
#blogs .blo-head h1,
#client .cl-head h1 {
    font-size: clamp(1.85rem, 3.2vw, 2.9rem);
    line-height: 1.2;
}

.ser-info h1,
.b-categary .b-items .b-disc h1,
.contact-right h1,
.contact-left-title h1 {
    font-size: clamp(1.1rem, 1.7vw, 1.55rem);
}

.ser-info p,
.b-categary .b-items .b-disc p,
.contact-discrip p,
.contact-right p,
.right .into .infos p,
.right .into p {
    font-size: clamp(0.95rem, 1.05vw, 1.06rem);
    line-height: 1.65;
}

footer p {
    font-size: 0.95rem;
}

@media only screen and (max-width: 768px) {
    .home p {
        width: 79%;
        font-size: 1em;
    }
}

@media only screen and (max-width: 686px) {

    .main {
        opacity: 1;
        width: 100%;
        z-index: 1000;
        position: fixed;

    }

    .btn-one i {
        color: rgb(160, 153, 153);
        font-size: 22px;
        position: absolute;
        left: 16px;
        top: 8px;
        cursor: pointer;
        transition: all 1s ease-in-out;
    }

    .btn-one i {
        color: rgb(250, 247, 247);
    }

    .side-manu {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        left: -800px;
        height: 65vh;
        width: 100%;
        /* backdrop-filter: blur(10px); */
        background-color: rgb(48, 50, 49);
        /* box-shadow: 0 0 5px rgb(247, 234, 234, 0.5); */
        transition: 1s ease-in-out;
    }


    .side-manu .btn-two i {
        color: rgb(212, 204, 204);
        font-size: 20px;
        position: absolute;
        left: 627px;
        top: 23px;
        opacity: 0;
        cursor: pointer;
        transition: 1s ease-in-out;
    }

    .side-manu .manu {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        top: 50px;

    }


    #check {
        display: none;
    }

    #chack,
    input,
    label {
        opacity: 1;
    }

    .side-manu .manu li:hover {
        box-shadow: 0 0 4px rgb(247, 184, 184, 0.5);
    }

    /* .btn-one i:hover {} */

    .btn-two i:hover {
        font-size: 40px;
    }

    #check:checked~.side-manu {
        left: 0;
    }

    #check:checked~.btn-one {
        opacity: 0;
    }

    #check:checked~.side-manu .btn-two i {
        opacity: 5;
        position: absolute;
        top: 1;
        z-index: 5;
    }



    .nav {
        align-items: center;
        justify-content: center;
        width: 90%;
        background: transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: none;


    }

    .nav .nav-items {
        flex-direction: column;
        position: absolute;
        top: 10px;
        height: 56vh;
        justify-content: space-evenly
    }

    .n-logo img {
        height: 9vh;
        width: 9vh;
    }

    .nav .n-items {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    .nav .n-items a {
        padding: 12px 4px;
        margin: 5px 8px;
        width: 200%;
        font-size: 16px;
        box-shadow: 0px 0px 1px rgba(255, 235, 205, 0.697);
        background-color: rgb(11, 4, 11, 0.5);
    }

    .dropdown {
        display: block;
        padding: 8px 2px;
        margin: 5px 8px;
        box-shadow: 0px 0px 1px rgba(255, 235, 205, 0.697);
        background-color: rgb(11, 4, 11, 0.5);
        width: 207%;
    }

    .dropdown .dropbtn {
        font-size: 15px;
    }

    .nav .dropdown-content {
        background-color: #120d12;
    }


    .nav .dropdown-content a {
        box-shadow: 0px 0px 1px rgba(255, 235, 205, 0.697);
        background-color: rgb(11, 4, 11);
    }





    .about_items {
        width: 90%;
        /* height: 73vh; */
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    #about .leftt {
        width: 35%;
        height: 22vh;

    }

    #about .leftt img {
        height: 25vh;
        width: 24vh;
    }

    #about {
        /* height: 153vh; */
        margin-bottom: 9vh;
    }

    #about .right {
        width: 95%;
        /* height: 88vh; */
        margin: 2px;
    }



    .edu-parts .into h2 {
        padding: 4px;
        margin: 1px;
        width: 41%;
        font-size: 19px;
    }

    #services {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        /* height: 120vh; */
        padding-top: 5.5vh;
    }


    .ser-parts {
        margin: 5px;
        height: 26vh;
        width: 60%;
    }

    .sp img {
        height: 14vh;
    }

    .ser-head p {
        font-size: 3vw;
    }



    #projects .p-categary a {
        width: 93%;
    }




    #projects .p-items {
        width: 91%;
        /* height: 50vh; */
    }

    .p-items .p-objects .disc {
        width: 85%;
    }

    .p-items .p-objects {
        width: 30vh;
        height: 25vh;
    }

    .p-items .select {
        width: 56vh;
        /* height: 35vh; */
        margin: 0;
    }

    #blogs a button {
        width: 193%
    }

    #blogs {
        height: fit-content;
        width: 95%;
    }


    .contact-right p {
        font-size: 3vw;

    }

    #contact {
        height: 70vh;
    }


    #contact-title {

        height: 0vh;
        font-size: 2vh;
    }

    .contact-discrip p {
        font-size: 19px;
        margin: 3vh;
    }

    .contact-right h1 {
        font-size: 30px;
        margin: 0vh 0 2vh 0;
    }

    .c11 img {
        width: 20px;
        height: 22px;
    }

    .c11 h3 {
        margin-left: 6px;
        font-size: 16px;
    }

    .cont-item {
        margin-left: 0px;
    }



    .contact-left button {
        width: 44%;
        padding: 15px 20px;
    }

    .contact-left-title {
        height: 6vh;
    }
}






@media only screen and (min-width: 413px),
(max-width: 630px) {
    .edu-parts {

        margin: 10px;
        padding: 9px;
    }



    .edu-parts .into h1 {
        font-size: 28px;
    }

    .edu-parts .into h2 {
        padding: 9px;
        margin: 1px;
        width: 22%;
        font-size: 20px;
    }
}