@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html{
    scroll-behavior: smooth;
}

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-track{
    background-color: #010015;
}

::-webkit-scrollbar-thumb{
    background-color: #c4c4c4;
    border-radius: 10px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav{
    overflow: hidden;
    position: fixed;
    transition: 0.6s ease;
    width: 100%;
    z-index: 100000000000;
    display: flex;
    justify-content:space-between; /* Pushes the logo to the left and button to the right */
    align-items: center; /* Vertically center the items */
    padding: 0 5%; /* Add padding to create space from the edges */
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

nav ul{
    margin-bottom: 25px;
    margin-top: 25px;
    list-style: none;
    display: flex;
    align-items: center;
    transition: 0.9s ease;
    float: right;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin-right: 20px; /* Add some space between the links */
}

nav ul li:last-child {
    margin-right: 0; /* Remove margin from the last link */
}
  
nav ul li a {
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.6s ease;
    position: relative;
    font-size: 1.1em;
    font-weight: 500;
}

#header1{
    height: 105vh;
    background-color: white;
    background-size: cover;
    background-position: center;
}

nav ul li a:hover {
    background: transparent;
  }
  
nav ul li a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: black;
    border-radius: 5px;
    left: 0;
    bottom: -6px;
    transform: scaleX(0);
    transition: transform .5s;
    transform-origin: right;
}
  
nav a:hover::after{
    transform-origin: left;
    transform: scaleX(1);
}
  
nav .logo a img{
    width: 130px;
    height: auto;
}

nav .invest-button a{
    text-decoration: none;
    color: white;
    background-color: black;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.6s ease;
}

nav .invest-button a:hover{
    background-color: white;
    color: black;
}

.title{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.title h1{
    font-size: 60px;
}

.disc-img{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.disc-img img{
    width: auto;
    height: 237px;
}

.comp-logo{
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.comp-logo img{
    width: auto;
    height: 200px;
}

.comp-title{
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.arn{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.amfi{
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%,-50%);
}