*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    }

    body{
        background-color: black;
        overflow-x: hidden;
     
    }
    /* Scrollbar Track */
::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d6a972, #a27b52);
  border-radius: 20px;
  border: 2px solid #fff; /* for some white border effect */
}

/* Scrollbar Track Background */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
  box-shadow: inset 0 0 5px grey;
}

/* Firefox support */
* {
  scrollbar-width: thin;
  scrollbar-color: #d6a972 #f1f1f1;
}


    h1, h2 {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 100;
}

p,span, a {
  font-family: 'Nunito', sans-serif;
}


#Cbtn{
    font-family: 'Nanum Myeongjo', serif;
    font-weight: 600;
    font-size: 2.5vw;
    color: #d4b28a;
    text-decoration: none;
    
    cursor: pointer;
    letter-spacing: 3px;
}


    nav {
        position: fixed;
        top: 100vh;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.904);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        
        opacity: 0;
        z-index: 9999;
        backdrop-filter: blur(25px);
      
    }

    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 20px 0;
    }

    nav ul li a {
        color: #fff;
        text-decoration: none;
        
        font-family:'Nanum Myeongjo', serif;
        font-weight: 600;
        transition: color 0.3s ease-in-out;
        font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    }

    nav ul li a:hover {
        color: #d4b28a;
    }

    nav .closeNav {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        color: #fff;
        font-size: 24px;
    }

    nav .closeNav:hover {
        color: #d4b28a;
    }

  

    

    .navFoot{
    width: 100vw;
    height: 20vh;
    display: flex;
    
    justify-content: space-around;
   
    
    background-color: #13131300;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    }

    .navFoot p{
    font-size: 1vw;
    
}

.navFoot a{
    color: #d4b28a;
    font-size: 0.9rem;
}



.navFoot a:hover{
    color: #ac9070;
}       

.logo{
    height: 100px;
    width: 100px;
}




i{
    font-size: 2rem;
    font-weight: 400;
    color: aliceblue;
    position: fixed;

    top: 10px   ;
     padding: 10px;
    left: 0.5vw;
    z-index: 1000;
    background: transparent;
    cursor: pointer;
}



.navCta{
    font-family: "Nanum Myeongjo", serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: white;
    background-color: #d4b28a;
    border: none;
    cursor: pointer;
    transition:all 0.3s linear;
   
    border: 0.1px solid #f0f0f000;
    height: 5vw;
    width: 5vw;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;

}

.navCta:hover{
     transition:all 0.3s linear;
    letter-spacing: 0.2px;
 
}




a{
    position: relative;
    text-decoration: none;
}
 a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 0.3px;
   
    bottom: -4px;
    left: 0;
    background-color: #efdfbb;
    transition: transform 0.25s ease-out;
  }
  
 a:hover::after {
    transform: scaleX(1);
  }
  
 a::after {
    transform-origin: bottom right;
  }
  
 a:hover::after {
    transform-origin: bottom left;
  }


.contactForm{
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0%;
    background-color: rgba(0, 0, 0, 0.767);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
}


form{
    height: 90vh;
    width: 45vw;
    background-color: rgba(32, 32, 32, 0);
    border-radius: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-direction: column;
    color: white;
    
    
}

input{
    width:35vw;
    height: 10vh;
    border: 1px solid black;
    outline: none;
    background-color: #ffffff;
    border-radius: 20px;
    padding-left: 30px;
    font-size: 1.6rem;
    font-weight: 200;
}
input::placeholder{
    color: rgba(0, 0, 0, 0.534);
    font-weight: 300;
    font-size: 1.3rem;
}
form div{

    display: flex;
    flex-direction: column;
    gap: 10px;
    
    width: 35vw;
    

}   
form h3{
    font-size: 3rem;
}
form p{
    font-size: 1.2rem;
}
.Formbtn{
    width: 35vw;
    height: 10vh;
    background-color: #000000;
    border: 1px solid #d4b28a;
    outline: none;
    color:#efdfbb;
    border-radius: 20px;
    font-size: 1.3rem ;
}
.contactForm svg{
    height: 30px;
    width: 30px;
    position: absolute;
    top: 5vh;
    right: 5vw;
}




 .cursor-outer, .cursor-inner {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference; /* Magic for auto color invert effect */
  }

  .cursor-outer {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    transform: translate(-50%, -50%);
  }

  .cursor-inner {
    width: 8px;
    height: 8px;
    background: white;
    transform: translate(-50%, -50%);
  }


   .loader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #111;
    z-index: 99999;
  }

  .percentage {
    font-size: 4rem;
    letter-spacing: 2px;
    color: #d4b28a;
  }

  .bar-container {
    width: 300px;
    height: 5px;
    background: #333;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 5px;
  }

  .bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #fff, #888);
    transition: width 0.3s;
  }



    footer{
    width: 100vw;
    height: 20vh;
    display: flex;
    
    justify-content: space-around;
    margin-top: 10vh;
    
    background-color: #131313;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    padding-top: 8vh;
}

footer p{
    font-size: 1vw;
    
}

footer a{
    color: #d4b28a;
    font-size: 1vw;
    text-decoration: none;
}



footer a:hover{
    color: #ac9070;
}       

@media screen and (max-width:480px) {
    form div {
    display: flex
;
    flex-direction: column;
    gap: 10px;
    width: 90vw;
}

form h3{
    font-size: 2rem;
}

form p{
    font-size: 0.9rem ;
}

form{
    width: 90vw;
}

input {
    width: 90vw;
    height: 10vh;
    border: 1px solid black;
    outline: none;
    background-color: #ffffff;
    border-radius: 20px;
    padding-left: 30px;
    font-size: 1.6rem;
    font-weight: 200;
}

.Formbtn {
    width: 90vw;
    height: 10vh;
    background-color: #000000;
    border: 1px solid #d4b28a;
    outline: none;
    color: #efdfbb;
    border-radius: 20px;
    font-size: 1.3rem;
}
.navCta {
    font-family: "Nanum Myeongjo", serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: white;
    background-color: #d4b28a;
    border: none;
    cursor: pointer;
    transition: all 0.3s linear;
    border: 0.1px solid #f0f0f000;
    height: 65px;
    width: 65px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
}

nav{
    width: 100vw;
    height: 100vh;
    justify-content: center;
    gap: 10vh;
}

.logo {
    height: 100px;
    width: 100px;
}


nav ul li a{
    font-size: 1.2rem;
}

.navFoot{
    display: none;
}

.cursor-inner, .cursor-outer {
    display: none;
}



   footer {
        margin: 0%;
        height: auto;
        padding: 20px 10px 10px 20px;
        display: flex;
        flex-direction: column;
        gap: 3vh;
    }

    footer p , footer a{
        font-size: 3.5vw;
    }

 
}


@media screen and (max-width: 850px) and (min-width: 481px) {
    .navFoot {
        display: none;
    }

    .navCta {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }

    nav ul li a {
        font-size: 1.2rem;
    }

    form h3 {
        font-size: 2rem;
    }

    form p {
        font-size: 3vw;
    }

    .cursor-inner,.cursor-outer{
        display: none;
    }
      footer {
        padding: 0 0vw 0 2vw;
        height: auto;
        flex-direction: column;
        gap: 5vh;
    }


    footer div{
        gap:2vw;
        display: flex;
        flex-direction: column;

    }



    
}