@font-face {
    font-family: "Roboto";
    src: url("../../fonts/roboto-regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Rokkit";
    src: url("../../fonts/rokkit.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

* {
    font-family: "Roboto";
}

:root {
    --primary-color: #1A3FE6;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero-section {
    background-image: url(../../img/hero-bg.png);
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding-top: 30px;
    padding-bottom: 50px;
}

.big-title {
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    max-width: 360px;
    margin: 12px auto;

}

.section-title h2 {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-preview {
    width: 230px;
    margin: 0 auto;
}

.passenger-img {
    display: flex;
    justify-content: center;
}

.sub-title {
    font-size: 16px;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    font-weight: 500;
}

.download-platform {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 380px;
    margin: 35px auto;
    padding: 0 20px;
    justify-content: center;
    gap: 12px;
}

.download-platform img {
    width: 160px;
    border-radius: 8px;
}

.pill-feature {
    background: var(--primary-color);
    border-radius: 9999px;
    padding: 10px 16px;
    width: 265px;
}

.box-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
}

.box-wrap svg {
    position: relative;
    bottom: 2px;
    font-size: 21px;
}

.box-wrap span {
    font-family: "Rokkit";
    font-size: 22px;
    font-weight: 700;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape-svg svg {
    transform: rotate(180deg);
}

.hero-section {
    position: relative;
}

.shape-svg {
    width: 100%;
    position: absolute;
    bottom: 0;
    overflow: hidden;
}

.shape-svg svg {
    min-width: 100%;
    height: 41px;
}

.shape-fill {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}


.section-title .service-desc {
    text-align: center;
}

.card-body .service-desc, .card-body .service-details {
    text-align: center;
}

.service-cards {
    padding: 25px 0;
}

.service-card {
    max-width: 340px;
    margin: 0 auto;
}

.top-icon {
    text-align: center;
    margin-bottom: 15px;
}

.top-icon img {
    width: 44px;
    height: 44px;
}


.service-details {
    font-size: 20px;
    font-weight: 600;
}

.service-desc {
    color: #7a7a7a;
    font-weight: 500;
}

.service-card .card-body {
    padding: 20px 15px 35px;
}

.blue-shape-fill {
    fill: #1A3FE6;
}

.margin-divider {
    margin-bottom: 75px;
}

.service-cards {
    position: relative;
}

.blue-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.blue-shape svg {
    width: 100%;
    height: 51px;
    display: block;
}

.custom-accordion-item {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 20px;
}

.accordion-button {
    font-weight: 700;
    font-size: 18px;
    color: #0040E5 !important;
    background-color: #fff !important;
    border: 1px dashed #0040E5 !important;
    border-radius: 8px !important;
    padding: 1rem 1.25rem;
    box-shadow: none !important;
}

.accordion-button:hover {
    color: #000 !important;
}

.accordion-button:not(.collapsed) {
    color: #000 !important;
}


.accordion-body-wrapper {
    padding-top: 10px;
}

.accordion-body {
    border: 1px dashed #0040E5 !important;
    border-radius: 8px !important;
    background-color: #fff;
    color: #6c757d;
    line-height: 1.6;
    text-align: left;
    padding: 20px !important;
}



@media (max-width: 767px) {
    .big-title {
        margin-top: 16px;
        font-size: 32px;
    }

    .download-platform {
        margin-bottom: 15px;
    }


    .custom-accordion-item {
        margin-bottom: 16px;
    }

    .ask-for-help {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
        margin-top: 12px;
    }
}

@media (max-width: 380px) {
    .download-platform {
        justify-content: center;
        gap: 12px;
    }
}