@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: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.title h1{
    font-size: 60px;
}

.logo span{
    font-family: "Dosis", sans-serif;
}

.title h1{
    color: black;
    font-family: "Ubuntu", sans-serif;
}

.slogan{
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.slogan p{
    opacity: 55%;
    font-size: 25px;
    color: black;
    font-family: 'Times New Roman', Times, serif;
}

.info-button {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.info-button a{
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.9s ease;
    font-family: "Dosis", sans-serif;
}

.info-button a:hover{
    color: #fff;
    background-color: #000;
}

#header2{
    height: 90vh;
    background-color: white;
}

.title2 h1{
    color: black;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.service-box{
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    width: 100%;
}

.service-box1{
    width: 250px;
    height: 500px;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    overflow-y: scroll;
    background-color: #c19f60;
    box-shadow: 10px 10px 50px #616161;
    border-radius: 20px;
}

.service-box2{
    width: 250px;
    height: 500px;
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    overflow-y: scroll;
    background-color: #c19f60;
    box-shadow: 10px 10px 50px #616161;
    border-radius: 20px;
}

.service-box3{
    width: 250px;
    height: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    overflow-y: scroll;
    background-color: #c19f60;
    box-shadow: 10px 10px 50px #616161;
    border-radius: 20px;
}

.service-box4{
    width: 250px;
    height: 500px;
    position: absolute;
    left: 70%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    overflow-y: scroll;
    background-color: #c19f60;
    box-shadow: 10px 10px 50px #616161;
    border-radius: 20px;
}

.service-box5{
    width: 250px;
    height: 500px;
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    overflow-y: scroll;
    background-color: #c19f60;
    box-shadow: 10px 10px 50px #616161;
    border-radius: 20px;
}

#header3{
    background-color: white;
    height: 100vh;
}

.title3 h1{
    color: #000;
}

.title3{
    position: absolute;
    top: 210%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.plan-boxes{
    position: absolute;
    top: 250%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    width: 100%;
    height: 90vh;
}

.plan-box1{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    box-shadow: 0px 0px 50px #616161;
    padding: 20px;
    border-radius: 30px;
    transition: 0.6s ease;
    width: 800px;
    height: 120px;
    overflow: hidden;
}

.plan-box2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    box-shadow: 0px 0px 50px #616161;
    padding: 20px;
    border-radius: 30px;
    transition: 0.6s ease;
    width: 800px;
    height: 120px;
}

.plan-box3{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    box-shadow: 0px 0px 50px #616161;
    padding: 20px; 
    border-radius: 30px;
    transition: 0.6s ease;
    width: 800px;
    height: 120px;
}

.plan-box1:hover{
    cursor: pointer;
    padding: 30px;
    box-shadow: 30px 30px 50px #c506ff;
    width: 900px;
    height: 140px;
}

.plan-box2:hover{
    cursor: pointer;
    padding: 30px;
    box-shadow: 30px 30px 50px #c506ff;
    width: 900px;
    height: 140px;
}

.plan-box3:hover{
    cursor: pointer;
    padding: 30px;
    box-shadow: 30px 30px 50px #c506ff;
    width: 900px;
    height: 140px;
}

#header4{
    height: 100vh;
    background-color: white;
    color: white;
}

.online-investment{
    position: absolute;
    top: 320%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    padding: 80px;
    transition: 0.6s ease;
    box-shadow: 10px 10px 50px #616161;
    border-radius: 30px;
    width: 1000px;
    height: 500px;
}

.investment-title{
    position: absolute;
    left: 70%;
    top: 15%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.investment-para{
    width: 400px;
    height: 400px;
    position: absolute;
    top: 70%;
    left: 71%;
    transform: translate(-50%,-50%);
    text-align: justify;
}

.investment-button a{
    color: #000;
    background-color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 15px;
    transition: 0.6s ease;
}

.investment-button a:hover{
    color: #fff;
    background-color: #000;
}

.investment-button{
    position: absolute;
    top: 90%;
    left: 70%;
    transform: translate(-50%,-50%);
}

.investment-image img{
    width: 400px;
    height: 400px;
    border-radius: 20px;
}

.investment-image{
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%,-50%);
}

#header5{
    height: 50vh;
    background-color: white;
    color: #fff;
}

.inti-segre{
    background-color: #c19f60;
    width: 900px;
    height: 400px;
    position: absolute;
    top: 400%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 10px 10px 50px #616161;
    overflow: hidden;
}

.inti-img img{
    width: 400px;
    height: auto;
}

.inti-img{
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%,-50%);
}

.inti-title{
    position: absolute;
    top: 10%;
    left: 30%;
    transform: translate(-50%,-50%);
}

.inti-para{
    width: 400px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.inti-button{
    position: absolute;
    top: 90%;
    left: 30%;
    transform: translate(-50%,-50%);
}

.inti-button a{
    transition: 0.6s ease;
    text-decoration: none;
    color: #000;
    background-color: #ffff;
    border-radius: 20px;
    padding: 10px 30px;
}

.inti-button a:hover{
    background-color: #000;
    color: #fff;
}

#header6{
    background-color: white;
    color: #fff;
    height: 100vh;
}

.live-trans{
    background-color: #c19f60;
    width: 1000px;
    height: 500px;
    border-radius: 30px;
    box-shadow: 10px 10px 50px #616161;
    padding: 20px;
    position: absolute;
    top: 480%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.trans-img{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%,-50%);
}

.trans-img img{
    width: 500px;
    height: auto;
}

.trans-title{
    position: absolute;
    top: 10%;
    left: 75%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.trans-para{
    width: 300px;
    height: auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%,-50%);
}

.trans-button{
    position: absolute;
    top: 85%;
    left: 75%;
    transform: translate(-50%,-50%);
}

.trans-button a{
    color: #000;
    background-color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.6s ease;
}

.trans-button a:hover{
    background-color: #000;
    color: #fff;
}

#header7{
    height: 50vh;
    background-color: white;
    color: #fff;
    text-align: center;
}

.families-trust p{
    font-family: "Ubuntu", sans-serif;
    font-size: 70px;
}

.doc-benefit p{
    font-family: "Ubuntu", sans-serif;
    font-size: 70px;
}

.years-of-experience p{
    font-family: "Ubuntu", sans-serif;
    font-size: 70px;
}

.costumer-trust p{
    font-family: "Ubuntu", sans-serif;
    font-size: 70px;
}

.families-trust{
    position: absolute;
    top: 550%;
    left: 20%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    border-radius: 30px;
    width: 200px;
    height: auto;
    box-shadow: 0px 0px 50px #616161;
    padding: 30px;
}

.families-trust span{
    font-size: 20px;
}

.doc-benefit{
    position: absolute;
    top: 550%;
    left: 40%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    border-radius: 30px;
    width: 200px;
    height: auto;
    box-shadow: 0px 0px 50px #616161;
    padding: 30px;
}

.doc-benefit span{
    font-size: 20px;
    white-space: nowrap;
}

.years-of-experience{
    position: absolute;
    top: 550%;
    left: 60%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    border-radius: 30px;
    width: 200px;
    height: auto;
    box-shadow: 0px 0px 50px #616161;
    padding: 30px;
    white-space: nowrap;
}

.years-of-experience span{
    font-size: 20px;
    white-space: nowrap;
}

.costumer-trust{
    position: absolute;
    top: 550%;
    left: 80%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    border-radius: 30px;
    width: 200px;
    height: auto;
    box-shadow: 0px 0px 50px #616161;
    padding: 30px 0px;
    white-space: nowrap;
}

.costumer-trust span{
    font-size: 20px;
}

#user-reviews{
    height: 60vh;
    background-color: white;
}

.review1{
    color: #fff;
    position: absolute;
    top: 620%;
    left: 20%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    border-radius: 30px;
    width: 350px;
    height: 500px;
    box-shadow: 0px 0px 50px #616161;
    padding: 30px 0px;
    text-align: center;
}

.per-name1{
    position: absolute;
    font-family: "Dosis", sans-serif;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.read-more1{
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.read-more1 a{
    background-color: #fff;
    color: #000;
    transition: 0.6s ease;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #c506ff;
}

.per-slogan1{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.read-more1 a:hover{
    box-shadow: 10px 10px 50px #c506ff;
}

.review2{
    color: #fff;
    position: absolute;
    top: 620%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    border-radius: 30px;
    width: 420px;
    height: 500px;
    box-shadow: 0px 0px 50px #616161;
    padding: 30px 0px;
    text-align: center;
}

.per-name2{
    position: absolute;
    font-family: "Dosis", sans-serif;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.read-more2{
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.read-more2 a{
    background-color: #fff;
    color: #000;
    transition: 0.6s ease;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #c506ff;
}

.read-more2 a:hover{
    box-shadow: 10px 10px 50px #c506ff;
}

.per-slogan2{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.review3{
    color: #fff;
    position: absolute;
    top: 620%;
    left: 80%;
    transform: translate(-50%,-50%);
    background-color: #c19f60;
    border-radius: 30px;
    width: 500px;
    height: 500px;
    box-shadow: 0px 0px 50px #616161;
    padding: 30px 0px;
    text-align: center;
}

.per-name3{
    position: absolute;
    font-family: "Dosis", sans-serif;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.per-slogan3{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.read-more3{
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.read-more3 a{
    background-color: #fff;
    color: #000;
    transition: 0.6s ease;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #c506ff;
}

.read-more3 a:hover{
    box-shadow: 10px 10px 50px #c506ff;
}

.review-title{
    position: absolute;
    top: 580%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
    white-space: nowrap;
    color: #000;
}

#associates{
    height: 50vh;
    background-color: white;
    color: #fff;
}

.associates-title{
    position: absolute;
    top: 660%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #000;
}

.hdfc{
    position: absolute;
    top: 685%;
    left: 20%;
    transform: translate(-50%,-50%);
}

.icici{
    position: absolute;
    top: 685%;
    left: 40%;
    transform: translate(-50%,-50%);
}

.kotak{
    position: absolute;
    top: 685%;
    left: 60%;
    transform: translate(-50%,-50%);
}

.tata{
    position: absolute;
    top: 685%;
    left: 80%;
    transform: translate(-50%,-50%);
}

#footer{
    height: 30vh;
    background-color: #c19f60;
    color: #fff;
}

.about-us{
    position: absolute;
    top: 750%;
    left: 30%;
    transform: translate(-50%,-50%);
}

.about-title p{
    font-size: 25px;
}

.the-company a{
    color: #fff;
}

.our-team a{
    color: #fff;
}

.faqs a{
    color: #fff;
}

.our-philosophy{
    position: absolute;
    top: 750%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.phi-title p{
    font-size: 25px;
}

.what-do-we-do a{
    color: #fff;
}

.what-we-dont-do a{
    color: #fff;
}

.educational-sessions{
    position: absolute;
    top: 750%;
    left: 70%;
    transform: translate(-50%,-50%);
}

.edu-title p{
    font-size: 25px;
}

.our-sessions a{
    color: #fff;
}

.privacy-button a{
    color: #fff;
    position: absolute;
    top: 740%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
}

header#h5{
    height: 80vh;
    background-color: white;
}

.title-our-partners{
    position: absolute;
    top: 665%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.title-our-partners h1{
    text-transform: uppercase;
    font-weight: 1000;
}

.title-our-partners h1 span{
    color: maroon;
}

.img-our-partners{
    position: absolute;
    top: 700%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 400px;
    overflow: hidden;
}

.img-our-partners img{
    animation: scroll 40s linear infinite;
    margin-bottom: 0px;
}

@keyframes scroll{
    0%{
        transform: translateY(0);
    }

    100%{
        transform: translateY(calc(-250px * 9));
    }
}