@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

:root{
    --white: #f2f2f2;
    --black: #000;
    --background: #FBFDFB;
    --subtitle-color: rgba(0, 0, 0, 0.54);
    --primary: #185619;
    --secondary: #018103;
    --shadow-color: rgba(0, 0, 0, 0.8);
    --text-gray: #F9FAFB;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Inter", sans-serif;
}

.main-container{
    display: flex;
    padding: 120px 0;
    flex-direction: column;
    align-items: center;
    gap: 150px;
}

.hero{
    display: flex;
    padding: 8px 0px;
    flex-direction: column;
    align-items: center;
    gap: 32px;

    .sub-title{
        color: var(--Sub-text-color, rgba(0, 0, 0, 0.54));
        text-align: center;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 27px;
    }

    .title{
        color: var(--black);
        text-align: center;
        font-family: Inter;
        font-size: 80px;
        font-style: normal;
        font-weight: 800;
        line-height: 1.15;

        span{
            color: var(--primary);
        }
    }

    .call-to-actions-wrap{
        .get-started{
            border: 1px solid var(--black);
            background: var(--white);
        }
        .signin{
            border: 1px solid var(--primary);
            background: var(--primary);
            color: var(--white);
        }

        button{
            padding: 12px 36px;
            border-radius: 8px;
            transition: all .3s ease-in-out;

            &:hover{
                transform: translateY(-5px);
                box-shadow: 4px 4px 1px 0px var(--shadow-color);
            }
        }
    }
}

.wide-wrap{
    display: flex;
    width: 100%;
    height: 90vh;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.wide{
    /* border-radius: var(--Radius-radius-4, 32px); */
    flex: 1 0 0;
    align-self: stretch;
}


.how-it-works{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    /* align-self: stretch; */
    width: 80%;
    align-self: center;

    .cards-wrap{
        display: flex;
        padding: 16px 80px;
        gap: 32px;
        align-items: center;
        /* align-self: stretch; */

        .drivers, .employers{
            display: flex;
            width: 508px;
            padding: 16px 24px;
            flex-direction: column;
            align-items: center;
            gap: 52px;
            align-self: stretch;
            border: 1px solid #000;
            background: var(--white);
        }

        .drivers{
         box-shadow: 14px 10px 1px 0px var(--shadow-color);   
        }
        .employers{
            box-shadow: 14px 10px 1px 0px var(--shadow-color);
        }

        .line-with-circle{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
            align-self: stretch;

            .line{
                width: 2px;
                min-height: 220px;
                background-color: var(--secondary);
            }

            .circle{
                width: 20px;
                height: 20px;
                aspect-ratio: 1/1;

                stroke-width: 1px;
                stroke: var(--secondary);
            }
        }
        
        .card-title{
            display: flex;
            padding: 0px 64px;
            justify-content: center;
            align-items: center;
            gap: 8px;
            align-self: stretch;

            h3{
                color: var(--primary);
                text-align: center;
                font-size: 32px;
                font-style: normal;
                font-weight: 700;
                line-height: 1.5; /* 215.625% */
            }
        }
        .card-body{
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 32px;
            align-self: stretch;

            .card-row{
                display: flex;
                align-items: flex-start;
                gap: 32px;
                align-self: stretch;

                .left{
                    display: flex;
                    width: 40px;
                    height: 40px;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    aspect-ratio: 1/1;
                    border-radius: 50px;
                    border: 1px solid var(--primary);

                    p{
                        color: var(--primary);
                        font-size: 16px;
                        
                        font-weight: 600;
                        line-height: 1.2; /* 135% */
                    }
                }

                .right{
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;
                    gap: 8px;
                    flex: 1 0 0;

                    .right-title{
                        h4{
                            align-self: stretch;
                            color: var(--black);
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 600;
                            line-height: 1.25;
                        }
                    }

                    .right-body{
                        p{
                            color: var(--Sub-text-color, rgba(0, 0, 0, 0.54));
                            font-size: 15px;
                            font-family: "Manrope";
                            font-style: normal;
                            font-weight: 500;
                            line-height: 1.5;
                        }
                    }
                }
            }
        }

    }
}

.why-choose-us{
    .cards-container {
        display: flex;
        padding: 32px 8px;
        justify-content: center;
        align-items: center;
        gap: 32px;
        align-self: stretch;

        .card{
            display: flex;
            width: 316px;
            min-height: 316px;
            padding: 32px 16px;
            flex-direction: column;
            align-items: center;
            gap: 20px;

            border: 1px solid var(--black);
            background: var(--white);
            box-shadow: 8px 8px 0px 0px var(--black);

            .card-title, .card-description{
                text-align: center;
                font-size: 20px;
                font-style: normal;
                line-height: 27px;
            }
            
            .card-title{
                color: var(--black);
                font-weight: 600;
            }

            .card-description{
                color: var(--subtitle-color);
                font-weight: 400;
                font-size: 16px;
            }
            
        }
    }
}

.join-wrap{
    position: relative;
    .text-wrap{
        display: flex;
        width: 100%;
        padding: 16px 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        position: absolute;
        left: 0;
        bottom: 64px;

        & * {
            color: var(--white);
        }

        h3{
            text-align: center;
            font-size: 60px;
            font-style: normal;
            font-weight: 800;
            line-height: 102px;
        }
        p{
            color: var(--text-gray);
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 28px;
        }
        .btn-container{
            display: flex;
            padding: 18px 32px;
            justify-content: center;
            align-items: center;
            gap: 32px;
            align-self: stretch;
            margin-top: 12px;

            button{
                display: flex;
                width: 232px;
                padding: 16px 0;
                justify-content: center;
                align-items: center;
                gap: 8px;
                border-radius: 12px;
                transition: all .3s ease-in-out;

                svg{
                    width: 30px;
                    height: 30px;
                }

                &:hover{
                    transform: translateY(-7px);
                    box-shadow: 4px 4px 1px 0px var(--text-gray);
                }
            }
            .signup{
                border: 1px solid var(--white);
                background: var(--primary);
            }

            .learn-more{
                border: 1px solid var(--white);
            }
        }
    }
}

.app-wrap{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;

    .title-text-wrap{
        display: flex;
        padding: 32px 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        align-self: stretch;

        h3{
            text-align: center;
            font-size: 60px;
            font-style: normal;
            font-weight: 800;
            line-height: 102px;
        }
        p{
            color: var(--primary);
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 28px;
        }
    }

    .app-container{
        height: 150vh;
        align-self: stretch;
        aspect-ratio: 1/1;
        background-position: top;
        position: relative;

        .text-wrap{
            position: absolute;
            bottom: 72px;
            width: 100%;
            h3{
                color: var(--white);
                text-align: center;
                font-family: Inter;
                font-size: 96px;
                font-style: normal;
                font-weight: 800;
                line-height: 102px;
                text-align: center;
            }
        }
    }
}

.about-us-wrap{
    display: flex;
    width: 100%;
    padding: 64px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: var(--black);

    & *{
        color: var(--white);
    }

    h3{
        text-align: center;
        font-family: "Manrope", "Inter", sans-serif;
        font-size: 64px;
        font-style: normal;
        font-weight: 800;
        letter-spacing: 1.2px;
    }

    p{
        text-align: center;
        font-family: "Manrope", "Inter", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.15;
    }

    button{
        display: flex;
        padding: 8px 32px;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 12px;
        border: 1px solid var(--white);

        svg{
            width: 30px;
            height: 30px;
        }
    }
}

.carousel-testimonials{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    align-self: stretch;

    /* .swiper-wrapper{
        display: flex;
        padding: 16px;
        align-items: center;
        align-self: stretch;
        justify-content: center;
        width: 100%;
        margin: auto;
        

        .card{
            display: flex;
            width: 467px;
            padding: 24px 32px 24px 16px;
            align-items: flex-start;
            gap: 16px;
            border: 1px solid var(--black);
            background: var(--white);
            box-shadow: 16px 10px 0px 0px var(--black);

            .card-content-wrap{
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                flex: 1 0 0;

                .card-head{
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;
                    gap: 8px;
                    align-self: stretch;

                    .name{
                        color: var(--black);
                        font-size: 20px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: 27px; 
                    }

                    .occupation{
                        color: var(--black);
                        font-family: Inter;
                        font-size: 20px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 28px;
                    }
                }
                .ratings{
                    color: var(--black);
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 28px;
                }
                .message{
                    color: var(--black);
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 28px;
                }
            }
        }
    } */



}



.remarks{
    background: var(--primary);
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;

    .title{
        h1{
            color: var(--white);
            text-align: center;
            font-family: Inter;
            font-size: 56px;
            font-style: normal;
            font-weight: 700;
            line-height: 1.34;
        }
    }
}

.section-title{
    color: var(--black);
    font-size: 72px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.15; /* 127.5% */
}

.section-subtitle{
    color: var(--subtitle-color);
    text-align: center;
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.15; /* 183.333% */
}