header.sticky {
    background-color: #002d5a;

    a {
        color: white !important;
    }
}

header {
    padding: 5px 0;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    align-items: center;
    position: sticky;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 99999;
    transition: 0.4s;
    height: 90px;

    .logo {
        width: 150px;
        margin-top: 15px;
    }

    .nav-bar {
        ul {
            li {
                display: block;
                padding: 10px 20px;
                position: relative;

                .dropdown {
                    display: none;
                    position: absolute;
                    top: 100%;
                    left: 0;
                    min-width: 240px;
                    background-color: var(--font-color);
                    z-index: 9999;
                    border-radius: 4px;
                    padding: 12px 10px;

                    li {
                        padding: 6px 10px;

                        a {
                            font-size: 16px;
                            color: #fff;
                            position: relative;

                            &::before {
                                position: absolute;
                                content: "";
                                top: 100%;
                                left: 0;
                                width: 0px;
                                height: 2px;
                                background-color: #c5003e;
                                transition: 0.5s ease-in-out;
                            }

                            &:hover::before {
                                width: 100%;
                            }
                        }
                    }
                }

                &:hover {
                    .dropdown {
                        display: block;
                    }
                }

                a {
                    color: var(--font-color);
                    font-size: 18px;
                    font-weight: 600;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 100%;
                        left: 0;
                        width: 0px;
                        height: 2px;
                        background-color: #c5003e;
                        transition: 0.5s ease-in-out;
                    }

                    &:hover::before {
                        width: 100%;
                    }
                }
            }
        }
    }

    .button {
        a {
            display: inline-block;
            border: none;
            outline: none;
            background-color: #c5003e;
            min-width: 100px;
            text-align: center;
            color: #fff;
            border-radius: 5px;
            padding: 10px 0;
        }
    }

    .toggle {
        i {
            font-size: 24px;
            font-weight: 600;
        }
    }

    .active {
        border-bottom: 2px solid #c5003e;
    }
}

.toggle {
    display: none;
}

.about-banner {
    background-image: url(../images/banner5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    background-position: center;
    position: relative;

    .main {
        position: absolute;
        content: "";
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;

        h1 {
            font-size: 45px;
            color: white;
            text-transform: uppercase;
            margin-bottom: 7px;
        }

        a {
            color: white;
            margin-right: 10px;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: bold;
            background-color: blue;
            padding: 3px;

            &:hover {
                color: black;
            }
        }
    }
}


.contact-banner {
    background-image: url(../images/contact-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    height: 60vh;
    background-position: center;
    position: relative;
    &::after{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #000;
        opacity: 0.8;
    }

    .main {
        position: absolute;
        content: "";
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 9999;

        h1 {
            font-size: 45px;
            position: relative;
            z-index: 9999;
            color: white;
            text-transform: uppercase;
            margin-bottom: 7px;
        }

        a {
            color: white;
            margin-right: 10px;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: bold;
            background-color: blue;
            padding: 3px;

            &:hover {
                color: black;
            }
        }
    }
}

.test-banner {
    background-image: url(../images/banner-text);
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    background-position: center;
    position: relative;

    .main {
        position: absolute;
        content: "";
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;

        h1 {
            font-size: 45px;
            color: white;
            text-transform: uppercase;
            margin-bottom: 7px;
        }

        a {
            color: white;
            margin-right: 10px;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: bold;
            background-color: blue;
            padding: 3px;

            &:hover {
                color: black;
            }
        }
    }
}


.vision-section {
    padding: 100px 0;
    /* background-image: url(../img/vision.png); */
    background-image: url(../img/what11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 20px 0;
    position: relative;
    z-index: 9999;

    &::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #000;
        opacity: 0.8;
    }

    h2 {
        text-transform: uppercase;
        text-align: center;
        font-size: 35px;
        margin-bottom: 40px;
        position: relative;
        z-index: 9999;
        color: white;
    }

    .box {
        background-color: #fff;
        border-radius: 20px;
        padding: 25px;
        color: #000;
        margin-top: 20px;
        position: relative;
        z-index: 999;

        h3 {
            font-size: 25px;
            padding-bottom: 15px;
            color: #1b8ab2;

        }

        p {
            color: gray;
            line-height: 28px;
            z-index: 9999;
        }

        button {
            background: none;
            border: none;
            cursor: pointer;
            /* margin-left: 20px; */
            margin-top: 10px;
            color: #000000c7;
            font-weight: bold;

            &:hover {
                color: #c5003e;
            }
        }
    }
}

.mission-section {
    padding: 110px 0;

    h2 {
        text-align: center;
        text-transform: uppercase;
        font-size: 35px;
        margin-bottom: 30px;
    }

    .box {
        border: 1px solid gray;
        border-radius: 20px;
        padding: 30px;
        margin-top: 20px;

        p {
            line-height: 28px;
        }

        h3 {
            font-size: 25px;
            padding-bottom: 15px;
            color: #1b8ab2;
        }

        a button {
            margin-top: 10px;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: bold;

            &:hover {
                color: #c5003e;
            }
        }
    }
}

.carrier-form {
    padding: 40px 0;

    h2 {
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;
    }

    .for-shadow {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 15px 7px;
    }

    .contact {
        margin: 20px;

        h3 {
            font-size: 35px;
            color: var(--title-color);
        }

        p {
            font-size: 16px;
            margin-top: 10px;


        }

        main {
            margin-top: 10px;
            line-height: 25px;
            font-size: 15px;
        }

        .box {
            background-color: #001737;
            color: white;
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;

            p {
                text-transform: uppercase;
                /* color: #c5003e; */
                color: #167ba4;
                font-weight: bold;
            }
        }
    }
}

.carrier-form .main {
    background-color: #00000082;
    padding: 25px;
    border-radius: 25px;
    width: 95%;
}

.carrier-form .center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;

}

.carrier-form .form-group {
    margin-bottom: 15px;
}

.carrier-form .form-group input,
.form-group select {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 5px;
}

.carrier-form .form-group input,
.form-group textarea {
    width: 100%;
    font-size: 16px;
    padding: 15px;
    border-radius: 10px;
}

.carrier-form .form-group input[type="text"]::placeholder,
.carrier-form .form-group input[type="email"]::placeholder,
.carrier-form .form-group input[type="tel"]::placeholder,
.carrier-form .form-group select,
.form-group input[type="submit"] {
    font-size: 16px;
    color: gray;
}

.carrier-form input[type="submit"] {
    background-color: #f47933;
    color: white;
    cursor: pointer;
    border: unset;
    padding: 10px 20px;
    font-size: 17px;
    border-radius: 10px;
}

.carrier-form input[type="submit"]:hover {
    background-color: orange;
    color: white;
}

.carrier-form .slick-prev {
    left: -25px;
}

.carrier-form .slick-next {
    left: -25px;
}

.sample {
    padding: 60px 0;

    .box {
        /* height: 300px; */
        border: 1px solid gray;
        border-radius: 30px;
        background-color: white;

        .card {
            padding: 25px 35px;

            i {
                color: #ffa500;
                font-size: 40px;
                padding-bottom: 10px;
            }

            h5 {
                color: #ffa500;
                font-size: 40px;
                padding-bottom: 10px;
            }

            h3 {
                font-size: 25px;
                padding: 15px 0;
            }

            p {
                color: gray;
                line-height: 30px;
                font-size: 17px;
                padding-bottom: 5px;
            }
        }
    }
}



@media(max-width:767px) {
    .nav-bar {
        position: absolute;
        width: 150px;
        height: 100vh;
        overflow-y: scroll;
        background-color: #111;
        top: 0;
        left: 0;
        z-index: 9999;
        transition: 0.5s ease-in-out;
        transform: translateX(-100%);

        ul {
            flex-direction: column;

            li {
                a {
                    color: #fff !important;
                }
            }
        }
    }

    .nav-bar.active {
        transform: translateX(0px);
    }

    .button {
        display: none;
    }

    .toggle {
        display: block;
    }

    /*  */
    .about-banner {
        background-image: url(../images/banner5.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        height: 50vh;
        background-position: center;
        position: relative;

        .main {
            h1 {
                font-size: 29px;
                color: white;
                text-transform: uppercase;
                margin-bottom: 7px;
            }

            a {
                color: white;
                margin-right: 0px;
                font-size: 13px;
                text-transform: uppercase;
                font-weight: bold;
                background-color: blue;
                padding: 2px;
            }
        }
    }

    .test-banner {
        background-image: url(../images/banner-text);
        background-repeat: no-repeat;
        background-size: cover;
        height: 50vh;
        background-position: center;
        position: relative;

        .main {
            h1 {
                font-size: 29px;
                color: white;
                text-transform: uppercase;
                margin-bottom: 7px;
            }

            a {
                color: white;
                margin-right: 0px;
                font-size: 13px;
                text-transform: uppercase;
                font-weight: bold;
                background-color: blue;
                padding: 2px;
            }
        }
    }

    .contact-banner {
        background-image: url(../images/contact-banner.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        height: 50vh;
        background-position: center;
        position: relative;

        .main {
            h1 {
                font-size: 29px;
                color: white;
                text-transform: uppercase;
                margin-bottom: 7px;
            }

            a {
                color: white;
                margin-right: 0px;
                font-size: 13px;
                text-transform: uppercase;
                font-weight: bold;
                background-color: blue;
                padding: 2px;
            }
        }
    }

    .vision-section {
        h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .box {
            h3 {
                font-size: 22px;
                padding-bottom: 15px;
            }
        }
    }

    .mission-section {
        h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .box {
            h3 {
                font-size: 22px;
                padding-bottom: 15px;
            }
        }
    }


}




/*-----------------------hero------------------------------------------*/


.hero {
    .slide {
        position: relative;

        img {
            height: 100vh;
            width: 100%;
            object-fit: cover;
        }

        .img-content {
            position: absolute;
            margin-left: 2rem;
            right: 2rem;
            bottom: 4rem;
            background-color: rgba(0, 153, 190, .6);
            color: #fff;
            font-family: grayscale, sans-serif;
            font-weight: 400;
            font-style: italic;
            font-size: 1.75rem;
            padding: .75em 1em;
            border-radius: 4rem;
            margin-bottom: 0;
        }
    }
}

/*-----------------------------------abut------------------------------*/
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px;
    background: #fff;
    overflow: hidden;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-in-out;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    height: 400px;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-in-out;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--font-color);
}

.about-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.about-section.show .about-image,
.about-section.show .about-content {
    opacity: 1;
    transform: translateX(0);
}

/*-------------------------------------why-choose-------------------------------*/
.why-choose {
    padding: 80px 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    width: 350px;
    height: 250px;
    perspective: 1000px;
}

.feature-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;

}

.feature-card:hover .feature-card-inner {
    transform: rotateY(180deg);
}

/*  */
.feature-front,
.feature-back {
    width: 100%;
    height: 250px;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-front {
    /* background: var(--blue-color); */
    background-image: url(../images/singopur1.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-back {
    background: var(--font-color);
    color: #fff;
    transform: rotateY(180deg);
    font-size: 16px;
    line-height: 1.6;

    a {
        color: white;
        background-color: #ff0000;
        border-radius: 10px;
        padding: 5px 10px;
    }
}

/*  */

/*  */
.feature-front1,
.feature-back1 {
    width: 100%;
    height: 250px;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-front1 {
    /* background: var(--blue-color); */
    background-image: url(../images/vietnam1.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-back1 {
    background: var(--font-color);
    color: #fff;
    transform: rotateY(180deg);
    font-size: 16px;
    line-height: 1.6;

    a {
        color: white;
        background-color: #ff0000;
        border-radius: 10px;
        padding: 5px 10px;
    }
}

/*  */


/*  */
.feature-front2,
.feature-back2 {
    width: 100%;
    height: 250px;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-front2 {
    /* background: var(--blue-color); */
    background-image: url(../images/Thailand1.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-back2 {
    background: var(--font-color);
    color: #fff;
    transform: rotateY(180deg);
    font-size: 16px;
    line-height: 1.6;

    a {
        color: white;
        background-color: #ff0000;
        border-radius: 10px;
        padding: 5px 10px;
    }
}

/*  */

/*  */
.feature-front3,
.feature-back3 {
    width: 100%;
    height: 250px;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-front3 {
    /* background: var(--blue-color); */
    background-image: url(../images/Malaysia1.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-back3 {
    background: var(--font-color);
    color: #fff;
    transform: rotateY(180deg);
    font-size: 16px;
    line-height: 1.6;

    a {
        color: white;
        background-color: #ff0000;
        border-radius: 10px;
        padding: 5px 10px;
    }
}

/*  */

/*  */
.feature-front4,
.feature-back4 {
    width: 100%;
    height: 250px;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-front4 {
    /* background: var(--blue-color); */
    background-image: url(../images/Hong_Kong1.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-back4 {
    background: var(--font-color);
    color: #fff;
    transform: rotateY(180deg);
    font-size: 16px;
    line-height: 1.6;

    a {
        color: white;
        background-color: #ff0000;
        border-radius: 10px;
        padding: 5px 10px;
    }
}

/*  */

/*  */
.feature-front5,
.feature-back5 {
    width: 100%;
    height: 250px;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-front5 {
    /* background: var(--blue-color); */
    background-image: url(../images/Japan1.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-back5 {
    background: var(--font-color);
    color: #fff;
    transform: rotateY(180deg);
    font-size: 16px;
    line-height: 1.6;

    a {
        color: white;
        background-color: #ff0000;
        border-radius: 10px;
        padding: 5px 10px;
    }
}

/*  */



@media (max-width: 668px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
}

/*---------------------------------------------------------------------*/
.economical-tours section {
    padding: 80px 0;
    text-align: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.economical-tours h2 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    color: #003366;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.economical-tours h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #ff5733;
    margin: 10px auto;
}

.economical-tours .tour-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.economical-tours .tour-card {
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
}

.economical-tours .tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.economical-tours .tour-card:hover img {
    transform: scale(1.1);
}

.economical-tours .tour-content {
    padding: 20px;
    text-align: center;
    position: relative;
}

.economical-tours .tour-content h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 10px;
}

.economical-tours .tour-content p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.economical-tours .tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.economical-tours .tour-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 87, 51, 0.7);
    transition: 0.5s;
}

.economical-tours .tour-card:hover::before {
    top: 0;
}

.economical-tours .tour-card:hover .tour-content h3,
.economical-tours .tour-card:hover .tour-content p {
    color: #fff;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {
    .tour-card {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .tour-card {
        width: 100%;
    }
}

@media(max-width:576px) {
    .col-xs-12 {
        width: 100%;
    }
}

/*---------------------------------testimonals section ------------------------------*/
.trust {
    background-image: url(../images/embleme-blue.png);
    background-repeat: repeat-y;
    background-position: top -28px left calc(50% + 90px);

    .column {
        background-color: #f1f1f1;
        border-radius: 1rem;
        box-shadow: 0 2px 3px rgba(10, 10, 10, .3);
        display: flex;
        flex-direction: column;
        width: 100%;

        .col-content {
            padding: 1.25em 1.10em;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 350px;

            h3 {
                color: var(--font-color);
            }

            p {
                color: var(--font-color);
                font-weight: 400;
            }
        }
    }

    .button {
        width: 100%;
    }
}

/*-----------------------------------slides parter-----------------------------------*/
.our-partner {
    h2 {
        width: 100%;
        text-align: center;
        font-size: 36px;
        color: #003366;
        text-transform: uppercase;
        font-weight: bold;
        position: relative;
        display: inline-block;

        &::after {
            content: "";
            display: block;
            width: 50px;
            height: 4px;
            background: #ff5733;
            margin: 10px auto;
        }
    }
}

.slides {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
        height: 120px;
        /* width: 200px; */
    }
}

/*---------------------------------holiday section---------------------------------------*/
.holiday {
    background-image: url(../images/banner4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9999;
    &::after{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #000;
        opacity: 0.7;
        z-index: 1;
    }
    h2 {
        .title1 {
            color: white !important;
            position: relative;
            z-index: 9999;
        }

    }

    img {
        background-color: #0097c7;
    }

    .column {
            position: relative;
            z-index: 9999;
        svg {
            display: flex;
            justify-content: center;
        }

        .svg-text {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
        }
    }

    .button {
        margin: 15px auto;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 9999;
    }
}


/*  */
.achievements-section {
    background-image: url(../images/achi.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0;
    background-position: center;

    h2 {
        font-size: 2rem;
        line-height: 1.5;
        font-weight: bold;
        margin-left: -25%;
        color: white;
    }

    .stat-item {
        text-align: center;
        color: white;
        margin-bottom: 20px;

        h4 {
            margin-top: 20px;
            font-size: 1.2rem;
            color: #ff7e00;
        }

        p {
            font-size: 1.5rem;
            font-weight: bold;
            margin-top: 15px;
        }
    }

    .icon {
        font-size: 2rem;
        color: white;
        margin-bottom: 10px;
    }

    i {
        font-size: 30px;
    }

    .total-achievements {
        margin-top: 20px;
        font-size: 1.5rem;
        font-weight: bold;
        color: #ff7e00;
    }
}

/*-------------------------------------faq--------------------------------------------*/
.faq {
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.faq-container {
    max-width: 900px;
    width: 100%;
}

.faq-title {
    width: 100%;
    text-align: center;
    font-size: 36px;
    color: #003366;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    display: inline-block;

    &::after {
        content: "";
        display: block;
        width: 50px;
        height: 4px;
        background: #ff5733;
        margin: 10px auto;
    }
}

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.faq-question {
    background: #0099be;
    color: #fff;
    padding: 20px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease-in;
}

.faq-question:hover {
    background: #173760;
}

.faq-question::after {
    content: "+";
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

/*-------------------------------------footer ----------------------------------------*/
.footer {
    background-color: #003366;
    font-weight: 600;
    color: white;
    padding: 50px 0;

    .box {
        .detail {
            p {
                font-weight: bold;
                font-size: 19px;
            }

            main {
                margin: 6px 0;

                a {
                    color: white;

                    &:hover {
                        color: #ff5733;
                    }
                }
            }
        }
    }

    .flow {
        h4 {
            text-align: center;
            margin-bottom: 5px;
            font-size: 25px;
            margin-right: 20px;
        }

    }
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer h3 {
    font-size: 25px;
    margin-bottom: 15px;
    position: relative;
}

.footer h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #ff5733;
    margin-top: 5px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
    padding: 5px 0;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #ff5733;
}



.Services-section {
    padding: 70px 0;
    background-color: #1b8ab2db;
    color: white;

    h2 {
        text-align: center;
        font-size: 33px;
    }

    p {
        text-align: center;
        padding-top: 10px;
        margin-bottom: 50px;
        line-height: 28px;
    }

    .box {
        height: 600px;
        background-color: white;
        padding-bottom: 25px;
        text-align: center;
        border-radius: 10px;
        margin-top: 20px;

        .for-img {
            overflow: hidden;

            img {
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
                transition: all 0.5s ease;
                height: 300px;
                object-fit: cover;

                &:hover {
                    transform: scale(1.1);
                    border-top-left-radius: 10px;
                    border-top-right-radius: 10px;
                }
            }
        }

        main {
            color: black;
            padding-bottom: 5px;
            padding: 0px 10px;
            line-height: 26px;
        }

        h3 {
            color: black;
            font-size: 20px;
            padding: 15px 20px;
        }

        a button {
            background: none;
            border: none;
            cursor: pointer;
            margin-top: 8px;
            font-weight: bold;

            &:hover {
                color: #c5003e;
            }
        }
    }

    .for-flex {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
    }
}


/*  */
.banner-section {
    img {
        height: 80vh;
        object-fit: cover;
        position: relative;
        object-position: center;
    }

    .for-flex {
        display: flex;
        flex-wrap: wrap;
    }

    .left {
        width: 70%;

        .for-banner-img {
            background-image: url(../images/banner4.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            height: 80vh;
            background-position: center;
            position: relative;
            width: 100%;

            &.for-banner-img::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                background-color: #000;
                opacity: 0.5;
            }

            .box {
                position: absolute;
                content: "";
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                text-align: center;

                h2 {
                    color: white;
                    font-size: 50px;
                    line-height: 40px;
                }

                p {
                    color: white;
                    margin-top: 20px;
                    font-size: 18px;
                }

            }
        }

    }

    .right {
        width: 30%;
        /* position: relative; */
        .for-img{
          position: relative;
        img {
            width: 100%;
            position: relative;
        }

        .content {
            position: absolute;
            color: white;
            z-index: 9999;
            width: 300px;
            left: calc(50% - 150px);
            top: calc(50% - 72px);
            text-align: center;

            h4{
                font-size: 30px;
                margin-bottom: 15px;
            }
            a{
                font-size: 20px;
                background-color: #ff0000;
                color: white;
                padding: 8px 15px;
                border-radius: 10px;
            }

        }
    }
    }

    .slick-dots {
        position: absolute;
        bottom: 25px;
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
        z-index: 99999;
    }

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

    .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 41px;
        height: 35px;
        padding: 14px;
        cursor: pointer;
        color: transparent;
        border: 0;
        outline: none;
        background: transparent;
    }

    .slick-dots li button:hover,
    .slick-dots li button:focus {
        outline: none;
    }

    .slick-dots li button:hover:before,
    .slick-dots li button:focus:before {
        opacity: 1;
    }

    .slick-dots li button:before {
        font-family: 'slick';
        font-size: 15px;
        line-height: 20px;
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        content: '•';
        text-align: center;
        opacity: .25;
        color: white;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .slick-dots li.slick-active button:before {
        opacity: .75;
        color: black;
    }
}

/*  */



.Trainings {
    background-image: url(../images/video-img.webp);
    width: 100%;
    background-size: cover;
    /* padding: 80px 0; */
    height: 80vh;
    margin-top: 30px;
}

.Trainings h2 {
    text-align: center;
    font-size: 45px;
    padding-bottom: 40px;
}

.Trainings h2 span {
    color: #EC1651;
}

.Trainings .video {
    background-image: url(../img/what-ad.jpg);
    background-repeat: no-repeat;
    height: 70vh;
    position: relative;
    border-radius: 25px;

}

.Trainings .video img {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.Trainings .video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.Trainings .video-popup .video-container {
    position: relative;
    width: 80%;
    max-width: 700px;
}

.Trainings .video-popup .video-container iframe {
    width: 100%;
    height: 400px;
}

.Trainings .video-popup .close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border: none;
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
}

.our-partner .slick-dots li button:before {
    font-family: 'slick';
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 20px;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    color: #c5003e;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff5733;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

/* toggel  start*/
.toggle-btn {
    display: none;
    cursor: pointer;
    background-color: #000;
}

.toggle-btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #b72f61;
}

.mobilenav {
    display: none;
}

.side-bar {
    background: white;
    backdrop-filter: blur(15px);
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -350px;
    overflow-y: auto;
    transition: 0.6s ease;
    transition-property: right;
    z-index: 999999;
}

.side-bar::-webkit-scrollbar {
    width: 0px;
}

.side-bar.active {
    right: 0;
}

.side-bar .menu {
    width: 100%;
    margin-top: 30px;
}

.side-bar .side-logo {
    background-color: #fff;
}

.side-bar .side-logo img {
    width: 200px;
    margin: 15px;
    margin-left: 70px;
}

.side-bar .menu .item {
    position: relative;
    cursor: pointer;
}

.side-bar .menu .item a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 40px;
}

.side-bar .menu .item a:hover {
    background: #db4242;
    transition: 0.3s ease;
    color: white;
}

.side-bar .menu .item i {
    margin-right: 15px;
}

.side-bar .menu .item a .dropdown {
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.3s ease;
}

.side-bar .menu .item .sub-menu {
    background: #262627;
    display: none;
}

.side-bar .menu .item .sub-menu a {
    padding-left: 80px;
}


.sub-menu {
    display: none;
    /* Hide submenu by default */
    padding-left: 15px;
    /* Optional for indentation */
    background: #e0e0e0;
}

.sub-menu.open {
    display: block;
    /* Show submenu when the 'open' class is added */
}

.side-bar {
    width: 300px;
    background: #f0f0f0;
    padding: 15px;
}

/* end */

.Singaporr {
    padding: 30px 0;
    img{
        border-radius: 10px;
        height: 400px;
        object-fit: cover;
        width: 100%;
    }

    .left {
        margin-left: 25px;
        margin-top: 30px;

        p {
            font-size: 17px;
            color: #6a6767;
            padding: 3px 0;
        }
        h3{
            padding: 10px 0;
            font-size: 20px;
            text-transform: uppercase;
        }
        h4{
            font-size: 18px;
            padding: 5px 0;
        }
    }
}



.far-east-main {
    h2 {
        text-align: center;
        text-transform: uppercase;
        padding: 30px;
    }
}

/* Responsive */


@media screen and (max-width: 768px) {

    .Trainings .video {
        height: 50vh;
    }

    .Trainings {
        height: 50vh;
    }

    .trust {
        & .column {
            .col-content {
                padding: 1.25em 1.10em;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                width: 100%;
                height: auto;
            }
        }
    }

    .slick-next {
        height: 35px;
        width: 35px;
    }

    .slick-prev {
        height: 35px;
        width: 35px;
        left: -6%;
    }

    .about-image img {
        border-radius: 15px;
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
        object-fit: contain;
        height: 300px;
        margin-bottom: 30px;
    }

    .banner-section {
        .left {
            width: 100%;

            .for-banner-img {
                background-image: url(../images/banner1.jpeg);
                background-size: cover;
                background-repeat: no-repeat;
                height: 50vh;
                background-position: center;
                position: relative;
                width: 100%;

                .box {
                    padding: 10px 20px;

                    h2 {
                        color: white;
                        font-size: 40px !important;
                        line-height: 40px;
                    }

                    p {
                        color: white;
                        margin-top: 10px;
                        font-size: 15px !important;
                    }
                }
            }
        }

        .right {
            width: 100%;

            img {
                height: 40vh;
                width: 100%;
            }
        }
    }

    .Services-section {
        padding: 40px 20px;
        background-color: #000000db;
        color: white;

        h2 {
            text-align: center;
            font-size: 28px;
        }

        p {
            text-align: center;
            padding-top: 10px;
            margin-bottom: 50px;
            font-size: 14px;
        }

        .box {
            background-color: white;
            padding-bottom: 25px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 20px;

            img {
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
            }

            main {
                color: black;
                padding-bottom: 5px;
                padding: 0px 10px;
            }

            h3 {
                color: black;
                font-size: 20px;
                padding: 20px 30px;
            }

            a button {
                background: none;
                border: none;
                cursor: pointer;
                margin-top: 10px;
            }
        }

        .for-flex {
            display: block;

        }
    }

    /* start */

    .side-bar .close-btn {
        font-size: 20px;
        padding: 5px;
        border: 1px solid gray;
        width: 30px;
        margin-left: 10px;
        margin-top: 10px;
        text-align: center;
        font-weight: bold
    }

    .side-bar {
        background: white;
        backdrop-filter: blur(15px);
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -350px;
        overflow-y: auto;
        transition: 0.6s ease;
        transition-property: right;
        z-index: 999999;
    }

    .toggle-btn {
        display: block;
        cursor: pointer;
        width: 100%;
        margin: 0;
        padding: 0;
        background-color: #e7e7e7;
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .toggle-btn .logo {
        margin-left: 10px;

        img {
            height: 74px;
            width: 150px;
        }
    }

    .toggel-btn-pad {
        border: 1px solid gray;
        padding: 3px 6px;
        text-align: center;
        margin-right: 40px;
    }

    .side-bar {
        display: block;
    }

    .side-bar .menu .item a {
        color: black;
    }

    /*  */
    .side-bar .menu .item {
        position: relative;
    }

    .side-bar .menu .item i {
        position: absolute;
        right: 0;
        top: 13px;
        transition: 0.3s ease;
    }

    .side-bar .menu .item .drop-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        position: static;
        display: none;
        padding: 0px;
        padding-left: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .side-bar .menu .item .drop-menu ul {
        background-color: transparent;
        margin: 0px;

        li {
            width: 100%;
            padding: 0px;
        }
    }

    /* end */


    /*  */
    .footer-col {
        width: 100%;
        text-align: center;
    }

    .social-icons a {
        font-size: 24px;
    }

    .about-section {
        padding: 30px 15px;
    }

    .about-content h2 {
        font-size: 28px;
        color: var(--font-color);
    }

    .about-content {
        padding: 20px 5px;
    }

    .section {
        padding: 20px 0px
    }

    .economical-tours h2 {
        font-size: 28px !important;
    }

    .economical-tours .tour-content {
        padding: 10px;
    }

    .why-choose {
        h2 {
            font-size: 28px;
        }
    }

    .trust {
        h2 {
            font-size: 28px;
        }
    }

    .holiday {
        h2 {
            font-size: 28px;
        }

        img {
            height: 215px;
        }
    }

    .our-partner {
        h2 {
            font-size: 28px;
        }
    }

    .slides {
        img {
            height: 120px;
        }
    }

    .our-partner {
        h2 {
            font-size: 28px !important;
        }
    }

    .faq {
        padding: 20px 10px;

        h2 {
            font-size: 28px !important;
        }

        .faq-question {
            padding: 20px 10px;
            font-size: 16px;
        }
    }

    .footer h3::after {
        margin: 13px auto;
    }

    .hero {
        & .slide {
            img {
                height: 50vh;
                width: 100%;
                object-fit: cover;
            }

            .img-content {
                font-size: 1.50rem;
                padding: 8px 30px;
                right: 3rem;
                bottom: 1rem;
                margin-left: 1rem;
            }
        }
    }

    .sample {
        & .box {
            & .card {
                h3 {
                    font-size: 22px;
                    padding: 15px 0;
                }
            }
        }
    }

    .carrier-form {
        padding: 10px 0;

        h2 {
            text-align: center;
            margin-bottom: 28px;
            text-transform: uppercase;
        }

        .main {
            width: 100%;
            padding: 25px 15px;
        }
    }

    .carrier-form {
        .contact {
            margin: 0px;

            .box {
                padding: 20px;
            }
        }
    }

    .slick-dots li button:before {
        font-size: 15px;
    }

}

@media screen and (max-width: 1024px) {


    .trust {
        .column {
            .col-content {
                padding: 1.25em 1.10em;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                width: 100%;
                height: auto;
            }
        }
    }

    .banner-section {
        & .left {
            .for-banner-img {
                height: 55vh;
            }
        }
    }

    .banner-section {
        img {
            height: 55vh;
        }
    }

    .Services-section {
        padding: 40px 20px;
        background-color: #000000db;
        color: white;

        h2 {
            text-align: center;
            font-size: 30px;
        }

        p {
            text-align: center;
            padding-top: 10px;
            margin-bottom: 50px;
            font-size: 15px;
        }

        .box {
            background-color: white;
            padding-bottom: 25px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 20px;


        }
    }

    .box {
        width: 100%;
    }

    /* toggle start  */
    .side-bar .close-btn {
        font-size: 20px;
        padding: 5px;
        border: 1px solid gray;
        width: 30px;
        margin-left: 10px;
        margin-top: 10px;
        text-align: center;
        font-weight: bold
    }

    .side-bar {
        background: white;
        backdrop-filter: blur(15px);
        width: 260px;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -350px;
        overflow-y: auto;
        transition: 0.6s ease;
        transition-property: right;
        z-index: 999999;
    }

    .toggle-btn {
        padding: 10px 0;
        display: block;
        cursor: pointer;
        width: 100%;
        margin: 0;
        background-color: #e7e7e7;
        height: 105px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .toggle-btn .logo {
        margin-left: 3px;

        /* img {
            width: 185px;
        } */
    }

    .toggel-btn-pad {
        border: 1px solid gray;
        padding: 3px 6px;
        text-align: center;
        margin-right: 20px;
    }

    .side-bar {
        display: block;
    }

    .side-bar .menu .item .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        position: static;
        display: none;
        padding: 0px;
        padding-left: 25px;
    }

    .side-bar .menu .item .sub-menu ul {
        background-color: transparent;
        margin: 0px;
    }

    .drop-1 ul li {
        width: 100%;
        padding: 0px;
    }

    .side-bar .menu .item .sub-menu ul a {
        padding: 0px 15px;
    }

    .side-bar .menu .item a {
        color: black;
    }

    /*  */
    .side-bar .menu .item {
        position: relative;
    }

    .side-bar .menu .item i {
        position: absolute;
        right: 0;
        top: 13px;
        transition: 0.3s ease;
    }

    .side-bar .menu .item .drop-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        position: static;
        display: none;
        padding: 0px;
        padding-left: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .side-bar .menu .item .drop-menu ul {
        background-color: transparent;
        margin: 0px;


        li {
            width: 100%;
            padding: 0px;
        }
    }

    /* end */


    /*  */

    header {
        display: none;
    }

    .hero {
        & .slide {
            img {
                height: 60vh;
                width: 100%;
                object-fit: cover;
            }

            .img-content {
                bottom: 2rem;
            }
        }

    }

    .about-section {
        padding: 20px 10px;

        h2 {
            font-size: 32px;
        }

        p {
            font-size: 16px;
        }

        .about-content {
            padding: 0;
        }
    }

    .Trainings {
        background-image: url(../images/video-img.webp);
        width: 100%;
        background-size: cover;
        /* padding: 80px 0; */
        height: 55vh;
        /* margin-top: 30px; */
    }

    .Trainings .video {
        background-image: url(../img/what-ad.jpg);
        background-repeat: no-repeat;
        height: 60vh;
        position: relative;
        border-radius: 25px;
    }


    .section {
        padding: 30px 5px;

    }

    .economical-tours h2 {
        font-size: 32px;
    }

    .economical-tours .tour-card {
        margin-bottom: 30px;
    }

    h2 {
        font-size: 32px;
    }

    .our-partner {
        h2 {
            font-size: 32px;
        }

    }

    .faq {
        .faq-title {
            font-size: 32px;
        }
    }

    .footer-col {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer h3::after {
        margin: 10px auto;
    }

    .mission-section {
        .box {
            border: 1px solid gray;
            border-radius: 20px;
            padding: 15px;
            margin-top: 20px;

            h3 {
                font-size: 18px;
                padding-bottom: 15px;
            }
        }
    }

    .vision-section {
        .box {
            background-color: #fff;
            border-radius: 20px;
            padding: 15px;

            h3 {
                font-size: 18px;
                padding-bottom: 15px;
            }

        }
    }

    .sample {
        & .box {
            .card {
                padding: 25px 15px;

                h3 {
                    font-size: 22px;
                    padding: 15px 0;
                }
            }
        }
    }

    .about-banner {
        background-image: url(../images/banner5.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        height: 50vh;
        background-position: center;
        position: relative;
    }

    .test-banner {
        background-image: url(../images/banner-text);
        background-repeat: no-repeat;
        background-size: cover;
        height: 50vh;
        background-position: center;
        position: relative;
    }

    .contact-banner {
        background-image: url(../images/contact-banner.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        height: 50vh;
        background-position: center;
        position: relative;
    }

    .slick-dots li button:before {
        font-size: 14px;
    }


    .banner-section {
        .left {
            .for-banner-img {
                .box {
                    position: absolute;
                    content: "";
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%, -50%);
                    text-align: center;
                    padding: 20px;

                    p {
                        font-size: 16px;
                    }

                    h2 {
                        font-size: 45px;
                    }
                }
            }
        }
    }

}
/*-------------tabs--------------------*/
.tab-container {
  display: flex;
  justify-content: center;   /* centers the tabs horizontally */
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px auto;
}

.tab-button {
  padding: 10px 20px;
  background-color: #eee;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.tab-button:hover {
  background-color: #ccc;
}

.tab-button.active {
  background-color: #d68c00;
  color: white;
}

.tab-content {
  padding: 20px;
  display: none;
}
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 70px;
    height: 70px;
    cursor: pointer;
}
@media(max-width:768px){
    .whatsapp-icon{
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 5px;
    }
}
.city-bullets {
    padding-left: 20px;
}

.city-bullets li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: #6a6767; /* orange bullets text color */
    font-weight: 500;
    line-height: 1.6;
}

.city-bullets li::marker {
    color: #000; /* blue bullet itself */
}
.far-east-main p{
    width: 70%;
    margin: 0 auto !important;
    text-align: center;
    line-height: 1.8;
    font-weight: 600;
    color: #797878 !important;
}
@media(max-width:768px){
    .Singaporr {
    img {
        border-radius: 10px;
        height: auto;
        object-fit:inherit;
        width: 100%;
    }
    .left {
            margin-left: 0px;
            margin-top: 10px;
        }

    }
    .tab-content{
        padding: 0 !important;
    }
    .far-east-main p{
    width: 100%;
    padding: 0 1rem;
}
}
@media(max-width:1024px){
    .order-1{
    order: 1 !important;
}

.order-2{
    order: 2 !important;
}
}