@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;
}

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: 100vh;
    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;
}

nav ul li.active a{
    background-color: #61b2e0;
    color: #fff;
    border-radius: 10px;
}

iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.con-det{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 2000px;
    height: 100px;
}

.address{
    width: 35%;
    height: 850px;
    position: absolute;
    top: 160%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 70px 70px 200px #000;
}

.address-logo{
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.address-logo h1{
    font-size: 40px;
    white-space: nowrap;
}

.address-p{
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translate(-50%,-50%);
}

.address-p p{
    font-size: 30px;
    white-space: nowrap;
}

.sebi-scores{
    height: 140px;
    width: 70%;
    position: absolute;
    top: 74%;
    left: 30%;
    transform: translate(-50%,-50%);
    padding: 20px 100px;
    white-space: nowrap;
}

.sebi-scores p{
    font-size: 20px;
    font-weight: 750px;
}

.phone-no{
    position: absolute;
    top: 45%;
    left: 26.5%;
    transform: translate(-50%,-50%);
}

.phone-no p{
    font-size: 25px;
}

.email{
    position: absolute;
    top: 50%;
    left: 42.5%;
    transform: translate(-50%,-50%);
}

.email p{
    font-size: 27px;
    white-space: nowrap;
}