@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Sora';
}

body{
    background-color: #1e1e1e;
    position: relative;
    z-index: 1;
}


body::before{
    content:'';
    position: absolute;
    width: 100%;
    height:100%;
    background-color: rgb(59, 60, 70);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    clip-path: circle(0.0% at 100% 50%);
    z-index: 99;
    animation: Anim 2s forwards linear;
} 


@keyframes Anim {
    0%{
        clip-path: circle(10.0% at 100% 50%);
    }
    40%{
        clip-path: circle(80.0% at 100% 50%);
    }
    60%{
        clip-path: circle(30.0% at 100% 50%);
    }  
    90%{
        clip-path: circle(130.0% at 100% 50%);
        opacity: 1;
        z-index: 99;
    }  
    100%{
        clip-path: circle(200% at 100% 50%);
        opacity: 0;
        z-index: -1;
    }

}

button{
    background-color: #1e1e1e;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: none;
    position: relative;
    color: rgba(255,255,255,0.8);
    transform: translateX(-80px);
    opacity: 0;
    animation:Anim_reveal 1s 2.7s forwards linear ;
}

button::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/circle-star.svg) no-repeat;
    background-size: contain;
    animation: Anim_rotate 10s infinite linear;
}

@keyframes Anim_rotate {
    100%{
        transform: rotate(360deg);
    }
}

#NavLogo{
    display: none;
    margin-bottom: 50px;
}

#NavLogo a{
    font-size: 25px !important;

}

#main{
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
    background: url(./image/slider-bg.jpg);
    z-index: 1;
}

nav{
    height: 90px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12%;
    position: relative;
    border-bottom: 0.1px solid rgba(131, 131, 133, 0.4);
}

@keyframes Anim_reveal {
    100%{
        transform: translate(0px);
        opacity: 1;
    }
}


.logo{
    min-width:130px;
    transform: translateX(-200px);
    opacity: 0;
    animation:Anim_reveal 1s 2s forwards linear ;
}


.logo a{
   font-size: 28px;
   font-weight: 800;
   color: #fff;
}

.logo a span{
    color: #fffd9c;
}

#menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-200px);
    opacity: 0;
    animation:Anim_reveal 1.2s 2.2s forwards linear ;
}

#menu li a{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    transition: all ease 0.5s;
}

#menu li a:hover{
    color: #ffe357;
}

 #nav-btn{
    width: 160px;
    height: 44px;
}


.bars{
    border: 1px solid #fff;
    color: #fff;
    padding: 10px;
    display: none;
}
.bars i{
    font-size: 25px;
}

#close{
    padding:8px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50px;
    color: #000;
    background-color: #ffe357;
    display: none;
    position: absolute;
    top: 15px;
    right: 30px;
}

/* HERO SECTION */
.hero{
    width: 100%;
    min-height: 95vh ;
    display: flex;
    align-items: end;
    justify-content: end;
    gap: 50px;
    padding:0px 12%;
}

.hero-content{
   position: absolute;
   top: 35%;
   left: 12%;
   display: flex;
   flex-direction: column;
   gap: 30px;
   align-items: start;
}

h1{
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    transform: translateX(-80px);
    opacity: 0;
    animation:Anim_reveal 1s 2.6s forwards linear ;
}

#heading{
    font-size: 18px;
    letter-spacing: 2.5;
    font-weight: 300;
    color: #ffe357;
    transform: translateX(-80px);
    opacity: 0;
    animation:Anim_reveal 1s 2.4s forwards linear ;
}
#boy{
    margin-left: 40px;
}
.page{
    width: 68%;
    display: flex;
    justify-content: end;
    align-items: end;
    position: relative;
    transform: translateX(80px);
    opacity: 0;
    animation:Anim_reveal 1s 3s forwards linear ;
}

.page img{
    width: 100%;
    z-index: 9;

}

.hero-content p{
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}

#text{
    letter-spacing: 1;
    color: #ffe357;
    font-size: 25px;
    font-weight: 500;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


@media(max-width:1600px){
    .hero{
        padding: 0px 6%;
    }

    h1 {
        font-size: 55px;
    }
}

@media(max-width:1400px){
    h1 {
        font-size: 45px;
    }
}

@media(max-width:1200px){
    nav{
        padding: 0% 10%;
    }

    .hero-content {
        position: absolute;
        top: 26%;
    }
}

@media(max-width:900px){
    #main{
        max-height: unset;
    }
    .bars{
        display: block;
    }
    #NavLogo{
        display: block;
    }
    ul{
        position: fixed;
        flex-direction: column;
        top: 0%;
        left: -100%;
        padding: 50px;
        background-color: #000000;
        width: 40%;
        border-radius: 10px;
        transition: all ease 0.5s;
        z-index: 999;
        height: 100vh;
    }

    ul li{
        margin: 12px 0;
    }
   
    #menu{
        align-items: flex-start;
        justify-content: flex-start;

    }
    .active{
        left: 0%;
    }
    #close{
        display: block;
    }

    h2{
        color: #fff;
        font-size: 25px;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .hero{
        display: flex;
        flex-direction: column;
    }
    .hero-content{
        width: 100%;
        align-items: flex-start;
        position: relative;
        top: 0;
        left: 0;
        margin-top: 50px;
    }
  
    .page{
        width: 100%;
        margin-top: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

   
}

@media(max-width:768px){
    button {
        height: 150px;
        width: 150px;
    }
}

@media(max-width:500px){
   
    .page img{
        width: 450px;
    }

    h1 {
        font-size: 40px;
    }

    ul{
        width: 60%;
    }

    #NavLogo{
        
        margin-top: 20px;
    }
    #NavLogo a{
        font-size: 15px;
    }

}

h1{
    font-size: 30px;
    font-family: Caveat;
    

    
}

#element{
    font-family: Tinos;
    color:aqua;
}

.cv-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.cv-button::after {
  content: "⬇️";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s, right 0.3s;
}

.cv-button:hover {
  background: linear-gradient(135deg, #4338ca, #3730a3);
  transform: translateY(-2px);
}

.cv-button:hover::after {
  right: 12px;
  opacity: 1;
}


