@import url('https://fonts.googleapis.com/css2?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&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,body{
    height:100vh;
    background: linear-gradient(135deg, #dde3fb 0%, #ffffff 100%);
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:20px 7% 0 7%;

}

nav .logo img{
    width:25%;
    cursor: pointer;
}

nav ul {
    display: flex;
    margin-right:50%;
}

nav ul a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: #454246;
    margin: 0 10%;
    transition: all 1s ease;
}

nav ul a:hover{
    color: orange;
}

nav button {
    padding: 15px;
    background-color: #2084ff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 25px;
    color: #ffffff;
    transition: all 1s ease;
    cursor: pointer;
    border: none;
}

nav button:hover{
    background-color: orange;
}

/* Main part styling */

.main{
    display: flex;
    flex-direction: column;
    padding:0 10%;
}

.main .main_top{
    display: flex;
    gap:4%;
}

.main .left{
    display: flex;
    flex-direction: column;
    gap:8%;
    padding: 5%;
    padding-bottom: 0px;
}

.main_top .left h1{
    font-weight: 700;
    font-size: 3rem;
    padding-left: 10px;
}

.main_top .left span {
    color: orange;
}

.main_top .left p{
    font-size: 15px;
    color : #595e75;
    width: 60%;
    margin:15px;
}

.main_top .left button{
    padding: 10px;
    background-color: #2084ff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    color: white;
    width: 150px;
    cursor: pointer;
    transition: all 1s ease;
    margin: 15px;
}

.main_top .left button:hover{
    background-color: orange;
}

.main_top .right {
    width: 450px;
    height: 300px;
    margin-right: 190px;
    margin-top: 20px;
}

.main_top .right img{
    width:150%;
    margin-top: 20px;
}

.main_bottom {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; 
    flex-wrap: wrap; 
    margin-top: 7%;
}

.card {
    width: 280px;
    height: 120px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),
                0 6px 20px 0 rgba(0,0,0,0.19);
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 80px; 
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card_img {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 20px;
    left: -40px;
    border-radius: 50%;
    overflow: hidden;
}

.card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card_details {
    padding: 10px;
    padding-left: 7%;
}

.card_details h1 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.card_details p {
    font-size: 13px;
    margin: 5px 0 0 0;
    color: #595e75;
}

