@import url('https://fonts.googleapis.com/css2?family=Kanit: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=Radio+Canada:ital,wght@0,300..700;1,300..700&display=swap');

body {
    background-color: hsl(210, 50%, 15%);
    font-family: Kanit;
}

body::-webkit-scrollbar {
    display: none;
}




#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
    width: 50px;
    height: 50px;
    background-color: hsl(229, 100%, 50%);
    color: hsl(0, 0%, 100%);
    border: none;
    cursor: pointer;
    outline: none;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

#back-to-top-btn i {
    display: flex;
    justify-content: center;
    align-items: center;
}

#back-to-top-btn:hover {
    background-color: hsl(231, 84%, 38%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .containerDriver {
        padding: 20px 100px;
    }

    #back-to-top-btn {
        font-size: 22px;
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .containerDriver {
        padding: 10px 50px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    hr {
        margin: 30px 0;
    }

    #back-to-top-btn {
        font-size: 18px;
        width: 32px;
        height: 32px;
        bottom: 6px;
        right: 6px;
    }
}

/* Animations */
.btnEntrance {
    animation: btnEntrance 0.5s both;
}

/* fadeInUp Animation */
@keyframes btnEntrance {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.btnExit {
    animation: btnExit 0.25s both;
}

/* fadeOutDown Animation */
@keyframes btnExit {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

.features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1650px;
    padding: 40px;
    color: #fff;
    font-family: Kanit;
    margin: 0 auto;
    border-radius: 10px;
}

.feature-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    width: 30%;

    margin-left: 30rem;
}

.feature-box h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-box p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.feature-box i {
    font-size: 70px;
}

.feature-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-footer i {
    font-size: 40px;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 10px;
}

.feature-footer span {
    font-size: 25px;
}



.containerDriver {
    width: 80%;
    margin: 20px auto;
    padding: 30px;
    background-color: #302e2e3b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

.containerDriver {
    font-size: 20px;
}

.section-title {
    font-size: 2em;

    border-bottom: 3px solid #5de0c0;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.step {
    margin-bottom: 40px;
}

.step h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.step p {
    margin-bottom: 15px;
    font-size: 24px;
}

.step ul {
    list-style-type: square;
    padding-left: 20px;
}

.brand-logos {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.brand-logos img {
    width: 200px;
    height: auto;
    border-radius: 4px;
}

.download-links a {
    display: inline-block;
    background-color: #6d6d6d;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.download-links a:hover {
    background-color: #45a085;
}

.faq {
    background-color: #494949;
    padding: 20px;
    border-left: 5px solid #4cafa7;
    margin-bottom: 30px;
}



@media (max-width:992px) {

    body {
        font-size: 16px;
    }

    .features-container {

        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .feature-box {

        width: 100%;
        margin-left: 0;

    }


    .brand-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .brand-logos img {

        width: 250px;
    }

    .download-links a {
        font-size: 14px;
        padding: 10px 15px;

    }

    .faq {
        font-size: 14px;
    }

    #back-to-top-btnP {
        font-size: 18px;
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .language-switch {

        gap: 5px;
    }



    .containerDriver {

        width: 90%;
        padding: 20px;
        margin-top: 150px;
    }

    .brand-logos {

        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1Fr));
        gap: 15px;
        justify-content: center;
    }

    .brand-logos img {
        width: 120px;
        height: auto;
        object-fit: contain;
    }


}

@media(max-width: 768px) {

    body {

        font-size: 14px;
    }

    .features-container {
        padding: 15px;
    }

    .brand-logos img {
        width: 120px;
    }

    #back-to-top-btn {
        font-size: 16px;
        width: 35px;
        height: 35px;
        bottom: 10px;
        right: 10px;
    }


    .containerDriver {
        width: 95%;
        padding: 15px;
        margin-top: 100px;
    }

    .brand-logos {
        display: grid;
        grid-template-columns: repeat(auto-fit minmax(100px.1Fr));
        gap: 10px;
        justify-content: center;
    }

    .brand-logos img {
        width: 150px;
        height: auto;
        object-fit: contain;
    }


}