@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* common css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* common color code */

:root {
    --black: #000;
    --light-black: #1B1B1B;
    --white: #fff;
    --orange: #F58813;
    --light-orange: #F8E9D9;
}

/* header css start */

.main-header {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 9px 0;
}

.main-navigation {
    height: 100%;
}

.ul-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 20px;
}

.ul-list li a {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}

.ul-list li a:hover {
    color: var(--orange);
    transition: 0.2s all;
}

/* banner css start */

.banner-sec {
    background-image: url('../images/banner-img.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 230px 0;
}

.banner-sec .title-text {
    color: var(--white);
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.banner-sec .p-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    width: 360px;
    margin: 10px auto 0;
}

.app-sec {
    padding: 50px 0;
    background-image: url('../images/bg-img.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.app-sec h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.app-sec h3 span {
    color: var(--orange);
}

.app-sec .app-detail p {
    font-size: 16px;
    font-weight: 400;
    /* margin-bottom: 15px; */
}

.detail-op .box-sec {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    background: var(--light-orange);
    border-radius: 10px;
    padding: 15px;
    width: 400px;
}

.detail-op .box-sec p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.app-sec .app-link {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}

.app-sec .app-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bus-pass {
    background: var(--light-orange);
    padding: 50px 0;
}


.pass-detail {
    display: flex;
    align-items: self-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    gap: 15px;
}

.pass-detail h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--black);
}

.pass-detail h3 span {
    color: var(--orange);
}

.pass-detail p {
    margin: 0;
}

.pass-detail .pass-box {
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px;
    width: 400px;
}

.transport-sec {
    background-image: url('../images/bg-img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}

.transport-sec .transport-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.transport-sec .transport-detail h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
}

.transport-sec .transport-detail h3 span {
    display: block;
    color: var(--orange);
}

.transport-sec .transport-detail p {
    margin: 0;
}

.transport-sec .transport-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-sec {
    padding: 45px 0;
    background: var(--light-black);
}

.footer-sec .ftr-logo {
    text-align: center;
    margin: 0 0 24px 0;
}

.ftr-link ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ftr-link ul li a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.ftr-link ul li a:hover {
    transition: 0.2s all;
    font-weight: 400;
    color: var(--orange);
}

.social-link ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-sec p {
    text-align: center;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}


/* responsive */

@media (max-width:992px) {

    .main-header .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .main-navigation .ul-list {
        height: 100vh;
        position: fixed;
        top: 0;
        opacity: 0;
        left: -100%;
        width: 100%;
        background: var(--white);
        z-index: 4;
        display: inline-block;
        overflow-x: auto;
        padding: 100px 30px 20px;
        transition: 0.3s;
    }

    .menu_btn {
        padding: 0;
        margin: 0;
        border: 0;
        width: 40px;
        height: 40px;
        display: block !important;
        position: absolute;
        right: 10px;
        top: 50%;
        border-radius: 0;
        outline: 0 !important;
        background: 0 0;
        z-index: 179;
        transition: 0.5s all;
        transform: translate(0, -50%);
        border-radius: 50%;
    }

    .menu_btn span {
        width: 25px;
        margin-bottom: 0;
        height: 3px;
        background: var(--black);
        border-radius: 0;
        position: absolute;
        top: 50%;
        z-index: 1;
        transition: 0.3s all;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .menu_btn span:first-child {
        top: 13px;
    }

    .menu_btn span:last-child {
        top: 27px;
    }

    .toggled .menu_btn span {
        opacity: 0;
        background-color: var(--black);
    }

    .toggled .menu_btn span:first-child {
        transform: rotate(-45deg);
        opacity: 1;
        left: 22%;
        top: 45%;
    }

    .toggled .menu_btn span:last-child {
        transform: rotate(45deg);
        opacity: 1;
        left: 22%;
        top: 45%;
    }

    .main-navigation.toggled .ul-list {
        transition: 0.3s;
        opacity: 1;
        left: 0;
        text-align: center;
    }

    .ul-list li {
        margin-bottom: 20px;
    }

    .pass-img {
        text-align: center;
    }

    .app-sec .app-img {
        margin-top: 20px;
    }

    .pass-img {
        margin-bottom: 20px;
    }

    .pass-detail .pass-box {
        width: 296px;
    }

    .transport-sec .transport-detail h3 {
        font-size: 26px;
    }

    .transport-sec .transport-img {
        margin-top: 20px;
    }

    .ftr-link ul {
        gap: 15px;
    }
}

@media (max-width:768px) {

    .main-logo img {
        width: 250px;
    }

    .banner-sec .p-text {
        width: unset;
    }

    .app-sec h3 {
        font-size: 26px;
    }

    .detail-op .box-sec {
        width: unset;
    }

}