*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}

body{
    background: #F2F2FF;
}

/*Navbar CSS*/
.navbar{
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 20px auto;
}

.logo{
    width: 150px;
}

.nav-links{
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a{
    text-decoration: none;
    font-size: 18px;
    color: #000;
}

/*Body CSS*/
.container{
    width: 100%;
}

.inner-container{
    display: flex;
    width: 100%;
    height: 70vh;
    max-width: 1400px;
    margin-top: 10px;
    margin-bottom: 29px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 25px;
    background-color: #FBFBFD;
    border: #C8C8FF 2px solid;
}

.inner-right{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.inner-left{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-image{
    padding: 50px;
}

.title-section{
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.title{
    font-size: 70px;
    color: #2C3D8F;
    padding-left: 50px;
    line-height: 80px;
}

.sub-title{
    font-size: 50px;
    color: #2C3D8F;
    padding-left: 50px;
    line-height: 60px;
}

.description{
    font-size: 30px;
    padding-left: 50px;
    line-height: 40px;
}

.get-started{
    height: 40%;
    padding-top: 50px;
    padding-left: 50px;
}

.get-started-btn{
    text-decoration: none;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 15px;
    border: #2C3D8F 2px solid;;
    background-color: #2C3D8F;
    color: #FFFFFF;
}

.get-started-btn:hover{
    background-color: #C8C8FF;
    color: #2C3D8F;
    cursor: pointer;
}

.features-title{
    font-size: 40px;
    color: #2C3D8F;
    padding-left: 70px;
    line-height: 60px;
}

.features-con{
    width: 100%;
    display: flex;
    justify-content: center;
}

.features-container{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1400px;
}

.feature{
    display: flex;
    width: 45%;
    height: 25vh;
    max-width: 1400px;
    margin-top: 10px;
    margin-bottom: 30px;
    border-radius: 25px;
    background-color: #FBFBFD;
    border: #C8C8FF 2px solid;
}

/*Scrollbar cutomization*/
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #2C3D8F;
}

*::-webkit-scrollbar-thumb {
    background: #243173;
    border: #FBFBFD 2px solid;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #2C3D8F;
}

html{
    scroll-behavior: smooth;
}

/*Feature section*/
.inner-left-feature{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-right-feature{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.feature-image{
    width: 80%;
    height: 80%;
}

.feature1{
    font-size: 30px;
    color: #2C3D8F;
    line-height: 40px;
}

.feature1-description{
    font-size: 20px;
    line-height: 25px;
}