body {
    margin: 0;
    padding: 0;
}

/*---------------------------- navbar css start ---------------------*/

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
}

/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: block !important;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 1rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #000;
    font-size: 2.5rem;
}

.nav div.logo a:hover {
    color: #00E676;
}

.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 1rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #000;
    line-height: 65px;
    font-size: 16px;
}

.nav div.main_list ul li a:hover {
    color: #e71f1e;
}


/* Home section */


.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }

    .nav div.logo {
        margin-left: 15px;
    }

    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }

    .nav div.show_list {
        height: auto;
        display: none;
    }

    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        /*same background color of navbar*/
        background-position: center top;
    }

    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }

    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }

    .nav div.media_button {
        display: block;
    }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #000;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: white;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.15);
}






.myH2 {
    text-align: center;
    font-size: 4rem;
}

.myP {
    text-align: justify;
    padding-left: 15%;
    padding-right: 15%;
    font-size: 20px;
}

@media all and (max-width:700px) {
    .myP {
        padding: 2%;
    }
}

/*---------------------------- navbar css end ---------------------*/


.nav-input .input-group-text {
    background: none !important;
    border-right: none !important;
    border-radius: 10px 0px 0px 10px !important;
}

.nav-input .input-group-text i {
    font-size: 16px;
}

.nav-input input {
    border-left: none !important;
    border-radius: 0px 10px 10px 0px !important;
}

.button {
    background: #0c67a3;
    padding: 6px 20px;
    color: white !important;
    border-radius: 40px;
    transition: all 0.3s;
    border: none;
    height: 40px;
}

.button:hover {
    opacity: 0.8;
}

.button span {
    margin-right: 10px;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px !important;
    }
}

.card-category {
    background: #eaf9fe;
    padding: 10px;
    border-radius: 5px;
}

.card-category p {
    margin: 0;
    margin-top: 10px;
    color: gray;
}

/*category carousel css start  */
.carousel-container {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-left: 20px;
    cursor: grab;
    user-select: none;
    padding-left: 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.category-card {
    display: block;
    text-decoration: none;
    flex: 0 0 auto;
    width: 120px;
    padding: 15px;
    background: #f0f5fa;
    border-radius: 12px;
    text-align: center;
    color: #333;
    transition: transform 0.2s ease;
}

.category-card:hover {
    transform: translateY(-2px);
}

.category-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .category-card {
        width: 100px;
    }
}

/* category carosel end  */


/* exclusive offer section start  */
.offer-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 80%;
    max-width: 80%;
    height: 170px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    transition: transform 0.5s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offer-card img {
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: 10px;
    right: 15px;
    opacity: 0.9;
}

.offer-content h3 {
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 1.4;
}

.offer-content button {
    background: #fff;
    color: #333;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.offer-content button:hover {
    background: #f1f1f1;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .offer-card {
        min-width: 32%;
        max-width: 32%;
    }
}

/* exclusive offer section end  */


/* highlight and populer service start  */

.box-highlight {
    background: #e6f0f5;
    border-radius: 10px;
    padding: 20px;
}

.card-highlight {
    background: white;
    border-radius: 8px;
}

.card-highlight img {
    width: 100%;
    border-radius: 8px 8px 0px 0px;
    height: 300px;
    object-fit: cover;
}

.card-highlight .card-content {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.card-highlight a {
    background: #0c67a3;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
}

.card-service {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.card-service img {
    border-radius: 8px;
}

.card-service:hover {
    transform: translateY(-5px);
}

.card-service .img-box {
    position: relative;
}

.card-service .badge-offer {
    position: absolute;
    top: 0;
    background: #f56464;
    color: white;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 8px 0px 10px 0px;
}

.card-service .img-box i {
    position: absolute;
    right: 5px;
    top: 5px;
    background: white;
    display: flex;
    color: #f56464;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.card-service p:nth-child(1) {
    font-size: 12px;
}

.card-service p:nth-child(2) {
    font-size: 12px;
    color: #f56464;
    text-decoration: line-through;
}

.card-service p:nth-child(3) {
    font-size: 14px;
    color: #0c67a3;
}

.card-service h5 {
    font-size: 18px;
    margin: 5px 0px;
}

/* highlight and populer service end  */

.sec-heading {
    font-size: 24px;
    font-weight: 600;
}

p {
    margin: 0;
    color: gray;
}

/*----------------------------------- reusable carousel  start -----------------------------------*/


.reusable-carousel .carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    padding-bottom: 10px;
}

.reusable-carousel .carousel-track::-webkit-scrollbar {
    display: none;
}

/*----------------------------------- reusable carousel  -----------------------------------end*/


/*----------------------------------- recommemded service start  -----------------------------------*/

.rec-service-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.rec-service-card:hover {
    transform: translateY(-5px);
}

.rec-service-card p {
    font-size: 14px;
}

.rec-service-card .description {
    margin: 0;
    font-size: 14px;
}

.rec-service-card img {
    width: 100px;
    border-radius: 10px;
}

.rec-service-card h5 {
    font-size: 18px;
    margin: 5px 0px;
    color: black;
}

.rec-service-card .rating {
    gap: 5px;
}

.rec-service-card .rating i {
    color: #a0a0a0;
    font-size: 12px;
}

.rec-service-card .card-content p:nth-child(1) {
    font-size: 12px;
}

.rec-service-card .card-content div p:nth-child(1) {
    font-size: 12px;
    color: #f56464;
    text-decoration: line-through;
}

.rec-service-card .card-content div p:nth-child(2) {
    font-size: 14px;
    color: #0c67a3;
}

.rec-service-card .badge-offer {
    position: absolute;
    top: 0;
    background: #f56464;
    color: white;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 8px 0px 10px 0px;
}

.rec-service-card .img-box {
    position: relative;
}

.rec-service-card .content {
    position: relative;
}

.rec-service-card .content .fa-heart {
    position: absolute;
    right: 5px;
    top: 5px;
    display: flex;
    color: #f56464;
    cursor: pointer;
    font-size: 18px;
}

.rec-service-card .content a {
    text-decoration: none;
}

.rec-service-card {
    width: 380px;
}

.rec-service {
    padding: 20px !important;
    background: #f5f5f5;
    border-radius: 10px;
}

/* ----------------------------------- recommemded service end  -----------------------------------*/

.card-mbooked-service {
    transition: transform 0.3s ease-in-out;
}

.card-mbooked-service:hover img {
    transform: scale(0.9);
}

.card-mbooked-service img {
    border-radius: 10px;
    height: 150px;
    width: 300px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.card-mbooked-service p {
    margin-top: 10px;
}

.card-mbooked-service {
    text-decoration: none;
}


/* ----------------------------------- carousel-services start  -----------------------------------*/

.carousel-services {
    background: #f0f5fa;
    border-radius: 10px;
    position: relative;
}

.carousel-services-Cards {
    padding: 20px;
}

.service-heading {
    background: #e1f0f5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 300px;
    border-radius: 10px 0px 0px 10px;
    padding: 20px;
}

.carousel-services-Cards .card-service {
    margin-bottom: 0px;
    width: 220px;
}

/* ----------------------------------- carousel-services end  -----------------------------------*/

.banner-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}


.banner-box img:hover {
    transform: scale(0.9);
}

.reusable-carousel .service-see-all {
    position: absolute;
    right: 10px;
    top: 10px;
}

/* ----------------------------------- Download App Start  -----------------------------------*/

.sec-download-app ul {
    padding: 0
}

.sec-download-app ul li {
    list-style: none;
}

.sec-download-app ul li i {
    color: #18cb17;
    margin-right: 10px;
}

.sec-download-app h5 {
    font-weight: 600;
}

/* ----------------------------------- Download App End  -----------------------------------*/


/* ----------------------------------- Review Section Start  -----------------------------------*/

.create-post-box {
    background-image: url(./img/men-illustration.png);
    background-repeat: no-repeat;
    background-size: 100%;
    border: 2px solid #e1f0f5;
    height: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

.create-post-box h5 {
    font-size: 18px;
}

.create-post-box p {
    font-size: 14px;
}

.create-post-box a {
    background: #0c67a3;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s;
}

.create-post-box a:hover {
    opacity: 0.8;
    color: white;
}

.review-section .review-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.review-section .review-box {
    background: #e1f0f5;
    padding: 20px;
    border-radius: 10px;
}

.review-section .review-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #dddcdc;
    transition: all 0.3s ease-in-out;
}

.review-section .review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);

}

.review-section .review-card .rating {
    color: #0775c5;
    font-size: 12px;
    gap: 5px;
}

.review-section .review-card .route p {
    font-size: 14px;
}

.review-section .review-card .route i {
    color: #0775c5;
    margin-right: 10px;
}

.review-section .review-card h5 {
    font-size: 16px;
    text-wrap: nowrap;
    margin-bottom: 5px;
}

.review-section .review-card .like {
    width: 100%;
    height: 100%;
}

.review-section .review-card .like i {
    color: #f56464;
    font-size: 18px;
}

/* ----------------------------------- Review Section End  -----------------------------------*/

.btn-sec {
    border: 1px solid #0c67a3;
    text-decoration: none;
    border-radius: 50px;
    padding: 6px 20px;
    transition: all 0.3s;
    background: white;
    color: #0c67a3;
}

.btn-sec:hover {
    background: #0c67a3;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sec-all-service .card-service {
    width: 250px;
}

/* ----------------------------------- Blog Section Start  -----------------------------------*/
.blog-cards a {
    text-decoration: none;
}

.sec-blog .blog-card {
    background: #f5fafa;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.sec-blog .blog-card img {
    border-radius: 8px;
    height: 150px;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.sec-blog .blog-card:hover img {
    transform: scale(1.1);
}

.sec-blog .blog-card .category {
    color: #5394f5;
    font-size: 14px;
    margin-top: 20px;
}

.sec-blog .blog-card h5 {
    font-weight: 600;
    color: black;
}

.sec-blog .blog-card span {
    color: gray;
    font-size: 12px;
    margin-right: 10px;
}

.sec-blog .blog-card span i {
    margin-right: 5px;
    font-size: 14px;
}

/* ----------------------------------- Blog Section End  -----------------------------------*/

/* ----------------------------------- Trending Stories Start  -----------------------------------*/

.sec-trending-stories .story-card {
    width: 250px;
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.sec-trending-stories .story-card img {
    object-fit: cover;
    height: 350px;
    width: 250px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}


.sec-trending-stories .story-card:hover img {
    transform: scale(1.1);
}

.sec-trending-stories .story-card .card-content {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    margin: 10px;
    margin-right: 0;
    border-radius: 10px 0px 0px 10px;
    padding: 10px;
}

.sec-trending-stories .story-card .card-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: black;
}

.sec-trending-stories .story-card .card-content p {
    font-size: 14px;
}


/* ----------------------------------- Trending Stories End  -----------------------------------*/

.sec-trusted-by .location-names a {
    background: #d7e6fa;
    padding: 10px 20px;
    border-radius: 10px;
    color: #4796f6;
    text-wrap: nowrap;
    text-decoration: none;
    transition: all 0.3s;
}

.sec-trusted-by .location-names a:hover {
    background: #e7f0fd;
}

.sec-trusted-by .location-names {
    flex-wrap: wrap;
}

.sec-trusted-by h5 {
    font-size: 30px;
    font-weight: 600;
}

.sec-trusted-by p {
    font-size: 18px;
}

.footer .footer-box {
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 50px 0px;
}

.footer .footer-box a {
    text-decoration: none;
    color: gray;
}

.footer .footer-box .c-black {
    color: #000;
    font-weight: 600;
}

.footer .footer-box .available-city p {
    font-size: 14px
}


/* ----------------------------------- Location Modal Start  -----------------------------------*/

/* Overlay */
.location-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-modal-box {
    background: #fff;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    padding: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border: none !important;
}

.logo-text {
    font-size: 18px;
    line-height: 1.1;
    color: #333;
}

.close-btn {
    border: none;
    background: #efefef;
    cursor: pointer;
    color: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.modal-content {
    margin-top: 20px;
    border: none !important;
}

.modal-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #222;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding-left: 40px;
}

.search-bar {
    position: relative;
}

.search-bar i {
    position: absolute;
    top: 13px;
    left: 10px;
}

.top-cities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 10px;
}

.top-cities .city {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: #333;
    gap: 6px;
    text-decoration: none;
}

.top-cities img {
    width: 32px;
    height: 32px;
}

.other-cities h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.other-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 13px;
    color: #333;
}

.other-city-list span {
    cursor: pointer;
    color: gray;
    transition: all 0.1s;
}

.other-city-list span:hover {
    color: #000;
}

.show-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.modal-header {
    padding: 0px !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 500px) {
    .top-cities {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* area modal css  */

.selected-city select {
    font-size: 16px;
    border: none;
    outline: none;
    background: transparent;
    font-weight: bold;
    color: #0056d2;
}

.detect-location {
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
}

.location-placeholder {
    text-align: center;
    color: #777;
    margin-top: 40px;
}

.location-placeholder p {
    margin-top: 10px;
    font-size: 14px;
}

.selected-city {
    font-size: 16px;
    color: #0056d2;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.selected-city:hover {
    text-decoration: underline;
}

.down-arrow {
    font-size: 12px;
}

/* ----------------------------------- Location Modal End  -----------------------------------*/


/*----------------------------------- category modal start -----------------------------------*/

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    background: #fff;
    max-width: 600px;
    width: 90%;
    border-radius: 10px;
    padding: 20px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 20px;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.modal-body h4 {
    font-size: 16px;
    margin: 15px 0 10px;
    color: #333;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.service-item {
    width: 100px;
    text-align: center;
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

.service-item img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 6px;
}

/*----------------------------------- category modal end  -----------------------------------*/

.dashed {
    border-bottom: dashed 1px #000000;
}

.dashed-2 {
    border: none;
    height: 1px;
    background: #000;
    background: repeating-linear-gradient(90deg, #000, #000 6px, transparent 6px, transparent 12px);
}


/*----------------------------------- category services start  -----------------------------------*/

.category-services .card {
    padding: 10px;
    border-radius: 10px;
}

.category-services .card-category-service ul {
    padding-left: 20px;
}

.category-services .card-category-service ul li:last-child {
    list-style: none;
    font-weight: 600;
    display: flex;
    color: #0c67a3;
    margin-top: 10px;
    align-items: center;
}

.category-services .card-category-service ul li:last-child i {
    margin-left: 6px;
    font-size: 20px;
}

.card-category-location h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px !important;
}

.card-category-location .fa-star {
    margin-right: 5px;
    font-size: 14px;
}

.card-category-service .fa-star {
    margin-right: 5px;
    font-size: 14px;
}

.card-category-service .c-black {
    color: black;
    font-weight: 600;
}

.card-category-service img {
    border-radius: 10px;
    margin-bottom: 20px
}

.card-category-service .service-name {
    color: black;
    font-weight: 600;
}

.card-package-select i {
    font-size: 50px;
    margin-bottom: 10px;
    color: gray;
}

/* service process  */
.service-process {
    background: #fff;
    width: 100%;
    max-width: 300px;
}

.service-process h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.service-process ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.service-process ul::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d1d5db;
}

.service-process li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d1d5db;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
    z-index: 1;
}

.service-process li.active .step-number {
    background: #22c55e;
    color: #fff;
    font-family: Arial, sans-serif;
}

.step-text {
    color: gray;
}

.service-process h5 {
    margin-bottom: 20px;
}

/* end  */

.card-why-service-raju p {
    display: flex;
    align-items: center;
    color: black;
    font-weight: 600;
}

.card-why-service-raju i {
    font-size: 24px;
    margin-right: 15px;
    color: #0c67a3;
}


/*----------------------------------- category services end  -----------------------------------*/


/*----------------------------------- FAQ Start  -----------------------------------*/
.sec-faq .accordion-button {
    background: transparent !important;
    font-weight: bold !important;
    padding: 10px 0px !important;
}

.sec-faq .accordion-item {
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, .125) !important;
}

.sec-faq .accordion-button:hover {
    color: #0c67a3;
}

.sec-faq .accordion-body {
    padding: 10px 0px !important;
}

.sec-faq .accordion-button:not(.collapsed) {
    color: black;
}

/*----------------------------------- FAQ End  -----------------------------------*/


/*----------------------------------- Review Start  -----------------------------------*/
.reviews-section {
    padding: 20px;
}

.reviews-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.reviews-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.rating-summary {
    flex: 1;
    min-width: 240px;
}

.average-rating {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.average-rating .star {
    margin-right: 5px;
    color: #fbbf24;
}

.average-rating p {
    margin: 5px 0;
    color: #777;
    font-size: 14px;
}

.rating-bars div {
    display: flex;
    align-items: center;
    align-items: center;
    width: 100%;
}

.rating-bars span {
    font-size: 14px;
    width: 30px;
    text-align: right;
    color: gray;
}

.rating-bars .star {
    color: #fbbf24;
    font-size: 14px;
    margin-left: 5px;
}

.bar {
    background: #eee;
    width: 100px;
    height: 6px;
    border-radius: 4px;
    margin: 0 8px;
    overflow: hidden;
}

.bar div {
    background: #fbbf24;
    height: 100%;
}

.reviews-cards {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.review-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    color: #333;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dbeafe;
    color: #2563eb;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.reviewer-info strong {
    font-size: 14px;
}

.reviewer-info small {
    font-size: 12px;
    color: #777;
}

.review-stars {
    margin-left: auto;
    color: #fbbf24;
    font-weight: bold;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: #2563eb;
    cursor: pointer;
    font-size: 13px;
}

.review-numbers {
    color: black;
}

/*----------------------------------- Review End  -----------------------------------*/




/*----------------------------------- Service Blogs Start ---------------------------------*/
.bg-gradients {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgb(0 0 0 / 0%));
}

.service-blog img {
    border-radius: 10px;
}

.service-blog .rounded-bottom {
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

/*----------------------------------- Service Blogs End ---------------------------------*/

.sec-description ul li {
    color: gray;
}

.sec-description ul {
    padding: 0;
    padding-left: 20px;
}

/*----------------------------------- Modals Css Start ---------------------------------*/

.modal-header {
    padding: 20px !important;
}

.modal-content {
    border-radius: 10px !important;
}

.modal-title {
    font-size: 20px;
}

.modal-body {
    padding: 20px;
}

/*----------------------------------- Modals Css End ---------------------------------*/

/*----------------------------------- Cart Box Start ---------------------------------*/
.cart-box {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
}

.item-info {
    max-width: 150px;
}

.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.quantity button {
    background: none;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

.quantity span {
    padding: 0 8px;
    font-weight: 500;
}

.price {
    font-weight: bold;
}

.divider {
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.total-section {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.cos-text {
    font-size: 12px;
    color: #777;
}

.proceed-btn {
    width: 100%;
    padding: 12px;
    background: #257bf6;
    border: none;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.proceed-btn:hover {
    background: #1a5ecc;
}

/*----------------------------------- Cart Box End ---------------------------------*/


/*----------------------------------- Service Overview Start ---------------------------------*/
.heading-banner .bg-gradients {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5));
    height: 100%;
    border-radius: 10px;
}

.heading-banner h5 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%
}

.heading-banner img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.price-box {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px;
    margin: 0px 20px;
    position: relative;
    top: -25px;
}

.price-box i {
    font-size: 12px;
    margin-right: 5px;
    color: #fbbf24;
}



/*----------------------------------- Service Overview End ---------------------------------*/

/*----------------------------------- Booking Confirmation Start ---------------------------------*/
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stepper .step {
    text-align: center;
    width: 40px;
    height: 40px;
    /* background-color: #fac221; */
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
}

.stepper .step .icon {
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 50%;
}

.stepper .step.booking-d .icon{
    background-color: #fac221;
}

.stepper .step.payment .icon {
    background-color: #ffcaaf;
}

.stepper .step.completed .icon {
    background-color: #23c869;
}

.stepper .active .icon{
    opacity: 100% !important;
}

.stepper .step .step-text {
    position: absolute;
    color: black;
    top: 40px;
    text-wrap: nowrap;
    font-size: 14px;
}

.step-line {
    height: 2px;
    background-color: #ccc;
    flex: 1;
}

.confirm-btn {
    background-color: #007b8f;
    color: white;
    width: 100%;
    padding: 10px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
}

.confirm-btn:hover {
    background-color: #006377;
}

.card-summary {
    background-color: #f5fafa;
    border-radius: 10px;
    padding: 20px;
}

.checkbox-label {
    font-size: 0.9rem;
}

.booking-content .card {
    border-radius: 10px;
    padding: 10px;
}

.booking-content .card i {
    background: #f0f0f5;
    padding: 10px;
    border-radius: 10px;
}

.booking-content .card a i {
    color: gray !important;
    background: none;
}

/*----------------------------------- Booking Confirmation End ---------------------------------*/

.service-heading-mobile {
    display: none;
}

/*----------------------------------- bottom bar css  start -----------------------------------*/

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0078C9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.bottom-nav a {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 12px;
}

.bottom-nav a i {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
}

.fab-button {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: orange;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 4px solid #ffffff;
}

/* Hide on desktop (visible only on mobile & tablet) */
@media (min-width: 992px) {
    .bottom-nav {
        display: none;
    }
}

/*----------------------------------- bottom bar css end  -----------------------------------*/

.category-carousel-flex {
    display: flex;
    gap: 10px;
}


/*----------------------------------- Edit Address Modal Start  -----------------------------------*/
.edit-address-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.edit-address-modal .modal-content {
    background: white;
    border-radius: 10px;
    width: 95%;
    max-width: 400px;
    padding: 20px;
    position: relative;
}

.edit-address-modal .modal-header {
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edit-address-modal .close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.edit-address-modal .location-section {
    background: #f7f7f7;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

.edit-address-modal .location-section span {
    font-weight: bold;
    display: block;
}

.edit-address-modal .change-btn {
    color: #007bff;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    padding: 0;
}

.edit-address-modal .form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 12px;
    font-size: 14px;
}

.edit-address-modal .save-as {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.edit-address-modal .save-as button {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    font-size: 14px;
}

.edit-address-modal .proceed-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #eee;
    color: #999;
    font-weight: bold;
    cursor: not-allowed;
}

.edit-address-modal .modal-header{
    padding: 0 !important;
}
.edit-address-modal .close-btn .i{
    font-size: 24px !important;
}

/*----------------------------------- Edit Address Modal End  -----------------------------------*/





/* ------------------------ media query responsive Start ------------------------- */
@media only screen and (max-width: 600px) {
    .box-highlight {
        margin-bottom: 20px;
    }

    .review-section .review-box {
        margin-top: 20px;
    }

    .sec-blog .blog-card {
        margin-top: 20px;
    }

    .footer .footer-box .box {
        margin-bottom: 30px;
        text-align: start !important;
    }

    .footer .footer-box .box div {
        justify-content: start !important;
    }


    .service-blog .position-relative {
        margin-bottom: 20px;
    }

    .sec-heading {
        font-size: 20px;
    }

    .service-heading {
        display: none;
    }

    .service-heading-mobile {
        position: absolute;
        top: 10px;
        left: 20px;
        display: block !important;
    }

    .banner-box img {
        height: 200px !important;
        object-position: left !important;
    }

    .category-carousel-flex {
        display: block !important;
    }

    .category-carousel-flex div:nth-child(2) {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 600px) {}

@media only screen and (min-width: 768px) {}

/* ------------------------ media query responsive End------------------------- */