*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
body{
    height: 100vh;
    width: 100vw;
    background-color: rgb(226, 226, 226);
    background: url(https://www.uzairmanan.com/assets/bg.png);
    overflow-x: hidden;
}
main{
  height: 100vh;
  width: 100vw;
  background-color: #dfdfdf;
  /* overflow-x: hidden; */
}

::-webkit-scrollbar{
  display: none;
}

.parent{
    height: 100%;
    width:100%;
    background: url(wallpaperflare.com_wallpaper.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #000000c5;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    position: relative;
    overflow-x: hidden;
    z-index: 5;

}
.parent::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(2, 2, 2);
    opacity: 0.7;
    background-image: url(https://www.uzairmanan.com/assets/bg.png);
    z-index: -1;
}
.parent::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
  opacity: 0.9;
  z-index: -1;
}


.frame span{
  animation: opacity 1s ease-in-out 4.7s forwards;
  opacity: 0;
}
@keyframes opacity{

  100%{
    opacity: 1;
  }
}
/*  */

.main .button button{
  animation: opacity 1s ease-in-out 3.3s forwards;
  opacity: 0;
}

/*  */
.main .heading span:nth-child(5){
  opacity: 0;
  animation: opacity 1s ease-in-out 3.5s forwards;
}
.main .heading span:nth-child(3){
  opacity: 0;
  animation: opacity 1s ease-in-out 3.7s forwards;
}
.main .heading span:nth-child(1){
  opacity: 0;
  animation: opacity 1s ease-in-out 3.9s forwards;
}
/*  */

.main img{
  opacity: 0;
  animation: opacity 1s ease-in-out 4.1s forwards;
}
.navbar .leftside{
  opacity: 0;
  animation: opacity 1s ease-in-out 4.5s forwards;
} 


.navbar{
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    z-index: 5;
}
.leftside{
    display: flex;
    align-items: center;
    gap: 20px;
}
.rightside{ 
    display: flex;
    align-items: center;
    gap: 10px;
}
.rightside p{
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}
.rightside {
    position: relative;
}
.leftside .btn{
  display: flex;
}
.leftside button{
    padding: 3px 13px;
    background-color: transparent;
    border: 1px solid #00000082;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
}

/* From Uiverse.io by Cksunandh */ 
.tooltip-container {
  color: #ffffff;
  --background: transparent;
  border:1px solid #00000082;
  position: relative;
  background: var(--background);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  height: 1.7rem;
  width:3rem;
  text-align:center;
  border-radius: 50px;
  display: flex;
  align-items:center;
  justify-content:center;
}

.tooltip {
  background-color: #00a36d;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3em 0.6em;
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 50px;
}

.tooltip::before {
  background-color: #00a36d;
  position: absolute;
  content: "";
  height: 0.6em;
  width: 0.6em;
  bottom: -0.2em;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
}

.tooltip-container:hover .tooltip {
  top: -80%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.leftside button:nth-child(2){
    background-color: #ffffff;
    color: #000000;
    margin-left: 5px;
}
.email p{
    font-size: 20px;
    font-family: "Smooch Sans", serif;
    font-weight: 400;
}
.rightside p::before{
    content: '';
    height: 3px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.429);
    position: absolute;
    left: 0;
    bottom: -2px;
    border-radius: 30%;
    opacity: 0;
    transition: all ease-in-out 0.3s;
}
.rightside p:hover::before{
    opacity: 1;
}
.main{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.main span{   
     font-size: 50px;
    font-family: "Tilt Prism", serif;
    line-height: 1.1;
    background: linear-gradient(to bottom right, #000000, #4b4b4b);
    filter: invert(1);
    background-clip: text;
    color: transparent;
    font-weight:500;
    text-align: center;
}
.main .content{
    text-align: center;
}
.main img{
    height: 200px;
}

.main .star{
    height: 30px;
    width: 30px;
    position: absolute;
    left: -50px;
    top: -30px;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: rotate 6s linear infinite;
}
@keyframes rotate{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.main .star2{
    height: 20px;
    width: 20px;
    position: absolute;
    right: -30px;
    bottom: -10px;
    transform: translate(50%, 50%);
    z-index: 10;
    animation: rotate 3s linear infinite;
    filter: invert(1);
}
.heading{
        position: relative;
        text-align: center;
        margin: 10px 0;
}
.mainButton{
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 18px;
    /* color: rgb(0, 0, 0); */
    border: 2px solid rgb(255, 255, 255);
    background: transparent;
    border-radius: 10000px;
    font-weight: 300;
    /* letter-spacing: 0.5px; */
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.inner{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: translateX(-100%);
    background: linear-gradient(to bottom right, #000000, #4b4b4b);
    filter: invert(1);
    border-radius: 10000px;
    transition: all ease-in-out 1s;
    z-index: -1;
    color: #000000;
}


.crousel img {
    width: 120px;
    opacity: 0.8;
    position: relative;
    z-index: 200000;
}

.crousel img:nth-child(2) {
    filter: invert(1);
}

#cursor {
    height: 10px;
    width: 10px;
    border-radius: 100px;
    background-color: #000000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.1s ease;
    transform-origin: center;
    /* z-index: 1; */
    cursor: none;
    color: #fff;
    opacity: 0;
}




.crousel , .skills{
    border-radius:  0 0 50px 50px;
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    gap: 10px;
    background-image: url(https://www.uzairmanan.com/assets/bg.png);
    background-size: cover;
    background-color: rgb(226, 226, 226);
    /* z-index: 5; */
}
.crousel::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(https://www.uzairmanan.com/assets/bg.png);
    background-color: #000000db;
    z-index: -2;
}
.about h1{
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.about{
    display: flex;
        gap: 20px;
        /* height: 75vh;
        width: 100vw; */
        padding: 2vh 2vw;
        border-radius: 0 0 50px 50px;
        background-image: url(https://www.uzairmanan.com/assets/bg.png);        
        background-size: cover;
        text-align: center;
        background-color: #000000db;
        position: relative;
        margin: 0;
}
.about::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(https://www.uzairmanan.com/assets/bg.png);
  background-color: #dfdfdf;
  z-index: -1;
}
.about .leftpara{
  width: 50%;
  height: 100%;
  /* background-color: #000; */
  flex-direction: column;
  padding-top: 100px;
}
.about .rightimg{
  width: 50%;
  height: 100%;
  padding-top: 70px;
}
.about .rightimg img{
  width: 70%;
}


.about .leftpara p {
    font-size: 15px;
    line-height: 1.4;
    background: linear-gradient(to bottom right, #000000, #4b4b4b);
    background-clip: text;
    color: transparent;
    width: 100%;
    margin: 0;
    filter: invert(1);
    text-align: left;
}
.about .leftpara p:nth-child(1){
  margin-bottom: 30px;
  margin-top: 20px;
}
.about .leftpara p:nth-child(2){
  margin-bottom: 30px;
}
.skills{
    height: 150vh;
    width: 100%;
    background-color: #E3E3E3;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}
.skills h1{
    color: #000;
}
.skills .wrappers{
    height: 150px;
    border-bottom: 8px solid rgba(0, 0, 0, 0.221);
    border-right: 3px solid rgba(0, 0, 0, 0.221);
    border-left: 3px solid rgba(0, 0, 0, 0.221);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.432);
    width: 80%;
    position: relative;
    border-radius: 20px;
    background: url(https://www.uzairmanan.com/assets/bg.png);
    background-color: rgba(215, 215, 215, 0.936);
}
.wrappers p{
    width: 500px;
    text-align: center;
    color: #0000007e;
}
.wrappers .p1{
    color: #E44D25;
    font-weight: 200;
}
.wrappers .p2{
    color: #33AADD;
    font-weight: 200;
}
.wrappers .p3{
    color: #07B6D5;
    font-weight: 200;
}
.wrappers .p4{
    color: #ccac08;
    font-weight: 200;
}
.wrappers .p5{
    color: #01D8FF;
    font-weight: 200;
}
.wrappers .p6{
    color: #000;
    font-weight: 200;
}


.wrappers .imglogo >*{
    width: 50px;
}
.wrappers img{
    width: 50px;
}
.leftlogo{
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: -13%;
    top: 50%;
    transform: translateY(-50%);
}
.rightcontent{
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
}
*{
    user-select: none;
}
.leftlogo img:last-child{
    border-radius: 50px;
}
.wrappers{
    transition: all 0.5s ease-in-out;
}

/* .wrappers:hover{
    transform: translate(-2% , -11%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.334);
} */

/*  */
  
.projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10vh 5vw;
    /* background-color:rgb(255, 0, 0); */
    border-radius: 0 0 50px 50px;
}
.projects {
    width: 100%;
    background-image: url(https://www.uzairmanan.com/assets/bg.png);
    background-color: #000000db;
    position: relative;
}
.projects > h1 {
    font-size: 40px;
    line-height: 1.1;
    background: linear-gradient(to bottom right, #000000, #4b4b4b);
    filter: invert(1);
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}
.projects > p {
    text-align: center;
    color: rgba(0, 0, 0, 0.705);
    filter: invert(1);
}
.projectsGrid {
    width: 90vw;
    display: grid
;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 230px 230px;
    gap: 10px;
    max-width: 800px;
    margin-top: 10vh;
}
.projects::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.521);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0px);
  background-image: url(https://www.uzairmanan.com/assets/bg.png);
  background-size: 100vh;
  z-index: -1;
}

.projectsGrid > div {
    border-radius: 15px;
    cursor: pointer;
}

.projectone {
    grid-column: span 2;
    background-color: rgb(255, 255, 255);
    background-position: center;
    background-size: 200px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding:0 20px;
}
.projecttwo {
    background-color: white;
    background-position: center;
    background-size: 120px;
    background-repeat: no-repeat;
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding:0 20px;
}
.projectthree {
    background-color: white;
    background-position: center;
    background-size: 120px;
    background-repeat: no-repeat;
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding:0 20px;
}
.projectfour {
    grid-column: span 2;
    background-color: white;
    background-position: center;
    background-size: 120px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding:0 20px;
}
.projectsGrid .projectinfo{
    text-decoration: none;
}
.projectinfo p{
    font-size: 13px;
    color: #000000b8;
    margin-bottom: 20px;
    line-height: 1.6;
}
.projectinfo span{
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}
.projectone h1{
    color: blue;
}
.projecttwo h1{
    color: crimson;
}
.projectthree h1{
    color: #2f3060;
}
.projectfour h1{
    color: rgb(157, 27, 27);
}


.prohov {
    position: relative; /* Establish stacking context */
    z-index: 1; /* Ensure it is above the ::before pseudo-element */
}

.projectone {
    z-index: 1;
    color: #12505e43;

}
.projects{
    transition: all 0.3s;
}

/*  */

.contact {
    background-image: url(https://www.uzairmanan.com/assets/bg.png);
    /* background: linear-gradient(to top, rgba(191, 13, 167, 0.664) , rgba(211, 24, 64, 0.66)); */
    background-color: rgba(0, 0, 0, 0.521);
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10vh 0;
    position: relative;
}

.logowrapper {
    padding: 2px;
    border-radius: 1000px;
    box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.082);
    margin-bottom: 15px;
}

.contact h1 {
    font-family: "Tilt Prism", serif;
    font-size: 50px;
    line-height: 1.1;
    background: linear-gradient(to bottom right, #000000, #4b4b4b);
    filter: invert(1);
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    text-align: center;
    max-width: 90vw;
    font-weight: 700;
    font-family: "Bebas Neue", serif;
    letter-spacing: 1px;
    word-spacing: 4px;
}

.buttons {
    margin-top: 20px;
    display: flex
;
    gap: 20px;
}
.buttons a:nth-child(2) {
    background: #ffffff46;
    color: black;
    border: 2px solid #353535;
}
.contactlogo {
    height: 150px;
    width: 150px;
    border-radius: 1000px;
    background: linear-gradient(to bottom, #0000003a, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactlogo img {
    width: 120px;
}
  /* From Uiverse.io by marcelodolza */ 
.buttons2 {
    --white: #ffffff;
    --purple-100: #b5b5b5;
    --purple-200: #aaaaaa;
    --purple-300: #6d6d6d;
    --purple-400: #595959;
    --purple-500: #000000;
    --radius: 18px;

    margin-top: 50px;
  
    border-radius: var(--radius);
    outline: none;
    cursor: pointer;
    font-size: 23px;
    font-family: Arial;
    background: transparent;
    letter-spacing: -1px;
    border: 0;
    position: relative;
    width: 200px;
    height: 60px;
    transform: rotate(353deg) skewX(4deg);
  }
  
  .bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    filter: blur(1px);
  }
  .bg::before,
  .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: calc(var(--radius) * 1.1);
    background: var(--purple-500);  
  }
  .bg::before {
    filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow:
      -7px 6px 0 0 rgb(115 75 155 / 40%),
      -14px 12px 0 0 rgb(115 75 155 / 30%),
      -21px 18px 4px 0 rgb(115 75 155 / 25%),
      -28px 24px 8px 0 rgb(115 75 155 / 15%),
      -35px 30px 12px 0 rgb(115 75 155 / 12%),
      -42px 36px 16px 0 rgb(115 75 155 / 8%),
      -56px 42px 20px 0 rgb(115 75 155 / 5%);
  }
  
  .wrap {
    border-radius: inherit;
    overflow: hidden;
    height: 100%;
    transform: translate(6px, -6px);
    padding: 3px;
    background: linear-gradient(
      to bottom,
      var(--purple-100) 0%,
      var(--purple-400) 100%
    );
    position: relative;
    transition: all 0.3s ease;
  }
  
  .outline {
    position: absolute;
    overflow: hidden;
    inset: 0;
    opacity: 0;
    outline: none;
    border-radius: inherit;
    transition: all 0.4s ease;
  }
  .outline::before {
    content: "";
    position: absolute;
    inset: 2px;
    width: 120px;
    height: 300px;
    margin: auto;
    background: linear-gradient(
      to right,
      transparent 0%,
      white 50%,
      transparent 100%
    );
    animation: spin 3s linear infinite;
    animation-play-state: paused;
  }
  
  .contents2 {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    height: 100%;
    gap: 16px;
    border-radius: calc(var(--radius) * 0.85);
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(
      to bottom,
      var(--purple-300) 0%,
      var(--purple-400) 100%
    );
    box-shadow:
      inset -2px 12px 11px -5px var(--purple-200),
      inset 1px -3px 11px 0px rgb(0 0 0 / 35%);
  }
  .contents2::before {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 10;
    width: 80%;
    top: 45%;
    bottom: 35%;
    opacity: 0.7;
    margin: auto;
    background: linear-gradient(to bottom, transparent, var(--purple-400));
    filter: brightness(1.3) blur(5px);
  }
  
  .char {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .char span {
    display: block;
    color: transparent;
    position: relative;
  }
  .char span:nth-child(5) {
    margin-left: 5px;
  }
  .char.state-1 span:nth-child(5) {
    margin-right: -3px;
  }
  .char.state-1 span {
    animation: charAppear 1.2s ease backwards calc(var(--i) * 0.03s);
  }
  .char.state-1 span::before,
  .char span::after {
    content: attr(data-label);
    position: absolute;
    color: var(--white);
    text-shadow: -1px 1px 2px var(--purple-500);
    left: 0;
  }
  .char span::before {
    opacity: 0;
    transform: translateY(-100%);
  }
  .char.state-2 {
    position: absolute;
    left: 80px;
  }
  .char.state-2 span::after {
    opacity: 1;
  }
  
  .icon {
    animation: resetArrow 0.8s cubic-bezier(0.7, -0.5, 0.3, 1.2) forwards;
    z-index: 10;
  }
  .icon div,
  .icon div::before,
  .icon div::after {
    height: 3px;
    border-radius: 1px;
    background-color: var(--white);
  }
  .icon div::before,
  .icon div::after {
    content: "";
    position: absolute;
    right: 0;
    transform-origin: center right;
    width: 14px;
    border-radius: 15px;
    transition: all 0.3s ease;
  }
  .icon div {
    position: relative;
    width: 24px;
    box-shadow: -2px 2px 5px var(--purple-400);
    transform: scale(0.9);
    background: linear-gradient(to bottom, var(--white), var(--purple-100));
    animation: swingArrow 1s ease-in-out infinite;
    animation-play-state: paused;
  }
  .icon div::before {
    transform: rotate(44deg);
    top: 1px;
    box-shadow: 1px -2px 3px -1px var(--purple-400);
    animation: rotateArrowLine 1s linear infinite;
    animation-play-state: paused;
  }
  .icon div::after {
    bottom: 1px;
    transform: rotate(316deg);
    box-shadow: -2px 2px 3px 0 var(--purple-400);
    background: linear-gradient(200deg, var(--white), var(--purple-100));
    animation: rotateArrowLine2 1s linear infinite;
    animation-play-state: paused;
  }
  
  .path {
    position: absolute;
    z-index: 12;
    bottom: 0;
    left: 0;
    right: 0;
    stroke-dasharray: 150 480;
    stroke-dashoffset: 150;
    pointer-events: none;
  }
  
  .splash {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    stroke-dasharray: 60 60;
    stroke-dashoffset: 60;
    transform: translate(-17%, -31%);
    stroke: var(--purple-300);
  }
  
  /** STATES */
  
  .buttons2:hover .words {
    opacity: 1;
  }
  .buttons2:hover .words span {
    animation-play-state: running;
  }
  
  .buttons2:hover .char.state-1 span::before {
    animation: charAppear 0.7s ease calc(var(--i) * 0.03s);
  }
  
  .buttons2:hover .char.state-1 span::after {
    opacity: 1;
    animation: charDisappear 0.7s ease calc(var(--i) * 0.03s);
  }
  
  .buttons2:hover .wrap {
    transform: translate(8px, -8px);
  }
  
  .buttons2:hover .outline {
    opacity: 1;
  }
  
  .buttons2:hover .outline::before,
  .buttons2:hover .icon div::before,
  .buttons2:hover .icon div::after,
  .buttons2:hover .icon div {
    animation-play-state: running;
  }
  
  .buttons2:active .bg::before {
    filter: blur(5px);
    opacity: 0.7;
    box-shadow:
      -7px 6px 0 0 rgb(115 75 155 / 40%),
      -14px 12px 0 0 rgb(115 75 155 / 25%),
      -21px 18px 4px 0 rgb(115 75 155 / 15%);
  }
  .buttons2:active .content {
    box-shadow:
      inset -1px 12px 8px -5px rgba(71, 0, 137, 0.4),
      inset 0px -3px 8px 0px var(--purple-200);
  }
  
  .buttons2:active .words,
  .buttons2:active .outline {
    opacity: 0;
  }
  
  .buttons2:active .wrap {
    transform: translate(3px, -3px);
  }
  
  .buttons2:active .splash {
    animation: splash 0.8s cubic-bezier(0.3, 0, 0, 1) forwards 0.05s;
  }
  
  .buttons2:focus .path {
    animation: path 1.6s ease forwards 0.2s;
  }
  
  .buttons2:focus .icon {
    animation: arrow 1s cubic-bezier(0.7, -0.5, 0.3, 1.5) forwards;
  }
  
  .char.state-2 span::after,
  .buttons2:focus .char.state-1 span {
    animation: charDisappear 0.5s ease forwards calc(var(--i) * 0.03s);
  }
  
  .buttons2:focus .char.state-2 span::after {
    animation: charAppear 1s ease backwards calc(var(--i) * 0.03s);
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes charAppear {
    0% {
      transform: translateY(50%);
      opacity: 0;
      filter: blur(20px);
    }
    20% {
      transform: translateY(70%);
      opacity: 1;
    }
    50% {
      transform: translateY(-15%);
      opacity: 1;
      filter: blur(0);
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes charDisappear {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-70%);
      opacity: 0;
      filter: blur(3px);
    }
  }
  
  @keyframes arrow {
    0% {
      opacity: 1;
    }
    50% {
      transform: translateX(60px);
      opacity: 0;
    }
    51% {
      transform: translateX(-200px);
      opacity: 0;
    }
    100% {
      transform: translateX(-128px);
      opacity: 1;
    }
  }
  
  @keyframes swingArrow {
    50% {
      transform: translateX(5px) scale(0.9);
    }
  }
  
  @keyframes rotateArrowLine {
    50% {
      transform: rotate(30deg);
    }
    80% {
      transform: rotate(55deg);
    }
  }
  
  @keyframes rotateArrowLine2 {
    50% {
      transform: rotate(330deg);
    }
    80% {
      transform: rotate(300deg);
    }
  }
  
  @keyframes resetArrow {
    0% {
      transform: translateX(-128px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes path {
    from {
      stroke: white;
    }
    to {
      stroke-dashoffset: -480;
      stroke: #f9c6fe;
    }
  }
  
  @keyframes splash {
    to {
      stroke-dasharray: 2 60;
      stroke-dashoffset: -60;
    }
  }
  

.rightside {
    display: flex
;
    align-items: center;
    gap: 10px;
}
.rightside .maina {
    font-size: 14px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.76);
    text-decoration: none;
    position: relative;
}

.footerleft a {
    color: black;
}
.rightside a::before{
    content: '';
    height: 3px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.429);
    position: absolute;
    left: 0;
    bottom: -2px;
    border-radius: 30%;
    opacity: 0;
    transition: all ease-in-out 0.3s;
}
.rightside a:hover::before{
    opacity: 1;
}

@media (max-width: 1090px) {
  .parent{
    cursor: default;
  }
    .navbar {
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        height: 100px;
        gap: 14px;
    }

    .navbar .leftside .btn {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-top: 2px;
    }

    .main h1 * {
        font-size: 35px;
        width: 100%;
    }

    .main {
        gap: 10px;
        margin-top: 40px;
        width: 100%;
    }

    .main .content {
        width: 100%;
        text-align: center;
    }

    .main .content .heading {
        font-size: 15px;
    }

    .main .star {
        left: 2%;
        top: -25px;
        transform: translate(-100%, -50%);
    }

    .main .star2 {
        right: 20px;
        bottom: -10px;
        transform: translate(50%, 50%);
    }

    .crousel {
        position: relative;
    }

    .crousel img:nth-child(1) {
        width: 100px;
        position: absolute;
        top: 30%;
        left: 10%;
    }

    .crousel img:nth-child(2) {
        width: 100px;
        position: absolute;
        bottom: 30%;
        left: 10%;
    }

    .crousel img:nth-child(3) {
        width: 100px;
        position: absolute;
        top: 15%;
        right: 10%;
    }

    .crousel img:nth-child(4) {
        width: 100px;
        position: absolute;
        bottom: 25%;
        right: 10%;
    }

    .about {
        width: 100%;
        padding: 10vw 10vw;

    }

    .about p {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .skills {
        width: 100%;
        padding: 8px ;
    }

    .skills .wrappers {
        width: 100%;
        position: relative;
    }

    .skills .wrappers .p-content {
        font-size: 13px;
        width: 100%;
        text-align: center;
        margin-left: 0px;
        font-weight: 350;
        margin-top: 50px;
    }
    .wrappers p {
      margin-bottom: 50px;
  }
    .skills .wrappers .leftlogo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        right: 0;
        margin-left: 30px;
    }
    .skills .wrappers .leftlogo img{
        position: absolute;
/* display: none; */
margin-top: 66px;
margin-right: 60px;
        right: 2%;
    }
    .skills .wrappers .leftlogo img{
        width: 40px;
        margin-right: 0px;
        right: 46%;
    }
    .wrappers >*{
    font-family: "Tilt Prism", serif;

    }
   
    /*  */

  .projectsGrid{
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /*  */

  .skills{
    border-radius: 0 0 0 0;
  }

  /*  */

  .footer{
    flex-direction: column-reverse;
  }
  .footer .rightside{
    margin-bottom: 20px;
  }
  .footer .footerleft{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  /*  */

  .rightside .frames .frame span{
    color: #ffffff;
  }
  #circle{
    display: none;
  }
 

.parent{
    overflow-x: hidden;
    
}
    body{
        overflow-x: hidden;
    }
  main{
    overflow-x: hidden;
  }
  .projects{
    border-radius: 0;
  }
  .prohov span{
    color: rgba(5, 5, 5, 0.574);
    font-weight: 400;
    font-size: 14px;
  }
  .prohov{
    padding: 10px;
  }
  /*  */
  .about{
    flex-direction: column;
    align-items: center;
  }
  /* .about */
  .about .leftpara, .rightimg{
    width: 100%;
  }
  .about .rightimg{
    padding-top: 0;
  }
  .about .rightimg img{
    width: 300px;
    height: 300px;
    /* left: 5%; */
    margin-left: 20px;
  }
  /*  */

  .wrappers .leftlogo , .rightcontent{
    width: 50%;
  }
  .wrappers .leftlogo{
    position: relative;
  }
  .wrappers .leftlogo img{
    position: absolute;
    bottom: 2%;
  }

  .wrappers  .rightcontent{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-section:nth-child(2) {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-section:nth-child(3) {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-section:nth-child(4) {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

.skills{
    border-radius: 0 0 0 0;
  }
}
.crousel h1{
  text-align: center;
   font-size: 5vw; 
   color: #000;
    text-transform: uppercase;
    font-family: "Teko", serif;
    font-weight: 100;
}

@media (max-width: 1200px) {
  .about{
    padding: 4vh 4vw;
    position: relative;
  }
  .about .rightimg img {
    margin-top: 100px;
  }
  .about .leftpara p{
    text-align: center;
  }
 
}

@media (max-width: 600px) {
  .skills .wrappers .leftlogo .wrap-img {
  margin-right: -10px;
  /* right: -10px; */
 }
 .wrappers .rightcontent .p-content{
  font-size: 11px;
 }
 .about .rightimg img {
  margin-left: -60px;
}
.crousel h1{
  font-size: 8vw;
  width: 100%;
  text-align: center;
  line-height: 40px;
}
.crousel{
  height: 100px;
}
}

.frame span{
    display: flex;
    align-items: center;
    justify-content: baseline;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    height: 5vw;
    font-family: 'poppins',  sans-serif;
    color: #ffffffe3;
    cursor: pointer;
    z-index: 1;
}
.frame{
    height: 5vw;
    overflow: hidden;
    z-index: 2;
    padding: 0 2vw;
}
.frames{
    z-index: 1;
    display: flex;
    gap: 1px;
}
#circle{
    height: 1vw;
    width: 1vw;
    background-color: rgb(0, 0, 0);
    position: absolute;
    transform: translate(-50% , -50%);
    top: 0;
    left: 0;
    border-radius: 400px;
    transition: all cubic-bezier(0.19 ,1 ,0.22, 1) .4;
    pointer-events: none;
    z-index: 5;
    cursor: pointer;
    color: rgba(128, 0, 128, 0.271);
    overflow: hidden;
    opacity: 0;
}
/* loader */
/* From Uiverse.io by StealthWorm */ 


 .mainloader{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  /* background: linear-gradient(to right bottom , rgb(22, 22, 22) , rgb(136, 136, 136)); */
  background: linear-gradient(to right bottom , rgb(0, 0, 0) , rgb(0, 0, 0));
  z-index: 100;
  border-radius: 0 0 10px 10px;
}
.hole {
  display: flex;
  align-items: center;
  justify-content: center;

}

i {
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;

  border-radius: 140px;
  opacity: 0;
  animation-name: scale;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

i:nth-child(1) {
  animation-delay: 0.3s;
}

i:nth-child(2) {
  animation-delay: 0.6s;
}

i:nth-child(3) {
  animation-delay: 0.9s;
}

i:nth-child(4) {
  animation-delay: 1.2s;
}

i:nth-child(5) {
  animation-delay: 1.5s;
}

i:nth-child(6) {
  animation-delay: 1.8s;
}

i:nth-child(7) {
  animation-delay: 2.1s;
}

i:nth-child(8) {
  animation-delay: 2.4s;
}

i:nth-child(9) {
  animation-delay: 2.7s;
}

i:nth-child(10) {
  animation-delay: 3s;
}

@keyframes scale {
  0% {
    transform: scale(2);
    opacity: 0;
    box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1) translate(0px, -5px);
    opacity: 1;
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: scale(0.1) translate(0px, 5px);
    opacity: 0;
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0);
  }
} 



.mainloader{
  animation: up 2s 3s ease-in-out forwards;
  overflow: hidden;
}
.loader{
  animation: vanish 4s 1s forwards;
  opacity: 0;
}
@keyframes vanish {
  20%{
    opacity: 1;
  }
  100%{
    display: none;
  }
}

@keyframes up {
  100%{
    transform: translateY(-100vh);
  }
}

#maindiv{
  animation: animate2 3s forwards;
}

@keyframes animate2 {
  0%{
    display: none;
  }
  100%{
    display: block;
    transform: translateY(0);
  }
}

.wrappers{
  animation: appear linear;
  animation-timing-function: view();
  animation-range: entry 0% cover 40%;
}
@keyframes appear {
from{
  opacity: 0;
  scale: 0.5;
}
to{
  opacity: 1;
  scale: 1;
}
}  


/* Vibrant Footer Styling */


footer {
  /* background: linear-gradient(45deg, #000000, #848383, #b8b8b8, #6e6e6e); */
  background-color: #000000;
  /* backdrop-filter: blur(15px); */
  background-size: 400% 400%;
  /* animation: gradientAnimation 15s ease infinite; */
  color: #ffffff;
  padding: 50px 0 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  border-radius: 50px 50px 0 0;
  position: relative;
  background: url(https://www.uzairmanan.com/assets/bg.png);
}
footer::before{
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.521);
  background-image: url(https://www.uzairmanan.com/assets/bg.png);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  text-align: left;
  opacity: 0;
  animation: slideIn 1s forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.3s; }
.footer-section:nth-child(2) { animation-delay: 0.5s; }
.footer-section:nth-child(3) { animation-delay: 0.7s; }
.footer-section:nth-child(4) { animation-delay: 0.9s; }

.footer-brand h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(90deg, #000000, #626262);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: neonGlow 1.5s ease-in-out infinite alternate;
}

.footer-brand p {
  font-size: 14px;
  color: #ddd;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ddd;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 5px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: #000000;
  transform: translateY(-3px);
}

.footer-contact p a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-contact p a:hover {
  color: #000000;
}

.footer-social .social-icons {
  display: flex;
  gap: 10px;
  font-size: 15px;
  flex-direction: column;
}

.footer-social .social-icons a {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.footer-social .social-icons a:hover {
  color: #000;
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 20px;
  font-size: 12px;
  color: #bbb;
}

/* Subfooter Styling */
.subfooter {
  background: #2c2c2c;
  color: #ccc;
  padding: 15px 0;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  animation: fadeInSubfooter 1s ease-out 1s forwards;
}

.subfooter p {
  margin: 0;
}

/* Keyframe Animations */
/* @keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} */

@keyframes neonGlow {
  0% {
    text-shadow: 0 0 5px #9a9a9a, 0 0 10px #3a3a3a, 0 0 15px #ffffff;
  }
  100% {
    text-shadow: 0 0 20px #dbdbdb, 0 0 30px #5a5a5a, 0 0 40px #ffffff;
  }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSubfooter {
  from { opacity: 0; }
  to { opacity: 1; }
}


.leftlogo h1{
  font-weight: 300;
}
:root{
  scroll-behavior: smooth;
}



