@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary-color: #605ee0;
    --second-color: #f8931d;
}

.bg-theme {
    background-color: var(--primary-color);
}

.bg-theme2 {
    background-color: var(--second-color);
}

section.bg-theme p {
    color: #ffffff;
}

section.bg-theme2 p {
    color: #ffffff;
}

.section-padding {
    padding: 30px 0;
}

/* whtaspp and call button */
.wtsp {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 1;
}

.call {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1;
}

.call img {
    width: 40px;
}


/* =======================navbar============================== */
.navbar {
    border-bottom: 1px solid rgb(255 255 255 / 17%);
    transition: background-color 0.5s ease;
    position: fixed !important;
    left: 0;
    right: 0;
    z-index: 1;
}

.navbar.scrolled {
    background-color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
}

.navbar.scrolled .nav-link {
    color: #000 !important;
}

/* ======================home============== */
#home {
    padding-top: 100px !important;
}

.homelogo {
    width: 200px;
}

.playstore {
    width: 150px;
    height: 50px;
    margin-top: 25px;
}

.heading {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ==================section title============== */
.title-area {
    position: relative;
}

.title-area .sec-title {
    margin-bottom: 15px;
}

/* .title-area .sec-title:before {
    position: absolute;
    content: '';
    height: 3px;
    background-color: var(--primary-color);
    width: 50%;
    left: 0;
    bottom: -5px;
} */
.title-area .sec-title span {
    color: var(--primary-color);
}

.custom-heading {
    margin-bottom: 20px;
}

/* ================================services======================= */

.img-group img {
    width: 100%;
    border-radius: 10px;
}

/* =====================how to book=============== */
.app_login_screen img {
    position: absolute;
    bottom: 0;
    width: 220px;
    left: 170px;
    border-radius: 10px 10px 0 0;
    box-shadow: rgb(1 1 1) 0px 1px 1px 0px inset, rgb(0 0 0 / 47%) 0px -6px 22px -5px /* top outer shadow */
}

/* ==========================why choose us==================== */
.feature-box {
    padding: 20px;
    display: flex;
    gap: 15px;
}

.feature-icon {
    font-size: 40px;
    color: #5a5a5a;
    margin-bottom: 15px;
}

.feature-title {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 0.95rem;
    color: #333;
}

/* =========================about-us======================= */
#about-us img {
    width: 100%;
    border-radius: 10px;
}

/* =========================footer==================== */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px 0 20px;
}

.footer-logo img {
    width: 200px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.managed-by {
    display: inline-block;
    background-color: #fff;
    color: #cc6224;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    padding-top: 20px;
    font-size: 0.9rem;
    text-align: center;
}

.app-buttons img {
    height: 40px;
    margin-right: 10px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links a {
    display: block;
    padding: 5px 0;
}

.widget-title {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.widget-title .h3 {
    font-weight: 600;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin: 0;
    line-height: 1;
    color: #ffffff;
}

.widget-title .h3:before {
    background-color: #ffffff;
    width: 50%;
    height: 3px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}


/* ==================phone media query================== */
@media only screen and (max-width: 600px) {
    .app_login_screen {
        display: none;
    }

    .section-padding {
        padding: 20px 0;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .navbar-dark .navbar-toggler-icon {
        filter: brightness(0.1);
    }

    .navbar-dark .navbar-toggler {
        color: #000000;
        border: 2px solid var(--primary-color);
        box-shadow: none;
    }
}