body {
    margin: 0;
    padding: 0;
}

/*---------------------------- navbar css start ---------------------*/

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    line-height: 1.3;
}

/*-- 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;
    border-bottom: 7px solid #077419;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 1rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #000;
}
.nav div.logo img {
    margin-top: 5px;
}

.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;
}

.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: #fff;
    line-height: 65px;
    font-size: 16px;
}

.nav div.main_list ul li a:hover {
    color: #e71f1e;
}


/* Home section */


.navTrigger {
    display: none;
}

.nav {
    background: #0a2f52;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn-pr {
    display: flex;
    text-decoration: none;
    justify-content: center;
}

/* 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.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: white;
        /*same background color of navbar*/
        background-position: center top;
        padding: 10px;
        gap: 20px;
    }

    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 1.3rem;
        padding: 10px 20px
        color: #000;
        line-height: 40px !important;
    }

    .nav div.media_button {
        display: block;
    }

    .nav div.main_list ul li {
        width: 100%;
        text-align: left;
        height: auto !important;
    }

    .nav-input .input-group {
        background: white !important;
    }

    .sticky-btn {
        position: fixed;
        bottom: 85px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        z-index: 1001;
        background-color: #b5c0cb;
    }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    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 {
    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: #0a2f52;
    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;*/
    height: 120px;
    padding: 15px;
    background: #e2f5e1;
    border-radius: 12px;
    text-align: center;
    color: #333;
    transition: transform 0.2s ease;
    /*margin-top: 15px;*/
}

.category-card:hover {
    transform: translateY(-2px);
}

.category-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    margin: 0;
}

/* 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: #e2f5e1;
    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: #0a2f52;
    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: #077419;
    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: #077419;
    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: #077419;
    text-decoration: line-through;
}

.card-service p:nth-child(3) {
    font-size: 14px;
    color: #0a2f52;
}

.card-service h5 {
    font-size: 18px;
    margin: 5px 0px;
}

/* highlight and populer service end  */

.sec-heading {
    font-size: 24px;
    font-weight: 600;
    color: #0a2f52;
}

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: #077419;
    text-decoration: line-through;
}

.rec-service-card .card-content div p:nth-child(2) {
    font-size: 14px;
    color: #0a2f52;
}

.rec-service-card .badge-offer {
    position: absolute;
    top: 0;
    background: #077419;
    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: #077419;
    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: 12px;
}

.service-heading {
    background: #e2f5e1;
    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 #e2f5e1;
    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: #0a2f52;
    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: #e2f5e1;
    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: #077419;
    font-size: 18px;
}

/* ----------------------------------- Review Section End  -----------------------------------*/

.btn-sec {
    border: 1px solid #0a2f52;
    text-decoration: none;
    border-radius: 50px;
    padding: 6px 20px;
    transition: all 0.3s;
    background: white;
    color: #0a2f52 !important;
}

.btn-sec:hover {
    background: #0a2f52;
    color: white !important;
    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: #e2f5e1;
    padding: 10px 20px;
    border-radius: 10px;
    color: #077419;
    text-wrap: nowrap;
    text-decoration: none;
    transition: all 0.3s;
}

.sec-trusted-by .location-names a:hover {
    background: #0a2f52;
    color: white;
}

.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: #0a2f52;
    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: #0a2f52;
}


/*----------------------------------- 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: #0a2f52;
}

.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: #0a2f52;
    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: #61aa4d;
    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  -----------------------------------*/



/*------------------------ all-blog css start  ------------------------*/
.section-blog-hero .section-blog-hero-body {
    background: white;
    border-radius: 30px;
}

.section-blog-hero .section-blog-hero-body img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.blog-main .blog-card {
    text-decoration: none;
    background: #f5fafa;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.blog-main .blog-card img {
    width: 100%;
    border-radius: 8px;
    height: 150px;
    object-fit: cover;
}


.blog-main .blog-card h5 {
    font-weight: 600;
    color: black;
}

.blog-main .blog-card p {
    font-size: 14px;
}

.blog-main .blog-categories {
    position: sticky;
    top: 20px;
    background: #f5fafa;
    padding: 10px;
    border-radius: 10px;
}

.blog-main .blog-category {
    display: flex;
    flex-direction: column;
}

.blog-main .blog-category a {
    text-decoration: none;
    color: #002e5d;
    padding: 10px 0px;
}

.blog-main .blog-card span {
    color: gray;
    font-size: 12px;
    margin-right: 10px;
}

.blog-main .blog-card span i {
    margin-right: 5px;
    font-size: 14px;
}

.blog-main .blog-card .category {
    color: #5394f5;
    font-size: 14px;
    margin-top: 20px;
}

/*------------------------ all-blog css end  ------------------------*/

/*------------------------ blog-detail css start  ------------------------*/
.blog-detail-hero img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 400px;
    margin-bottom: 20px;
}

.section-blog-detail h5 {
    margin-bottom: 15px;
    font-size: 36px;
}




.section-blog-detail ul {
    padding: 0;
    padding-left: 20px;
}

.section-blog-detail ul li {
    color: #535353;
}

.section-blog-detail hr {
    margin: 50px 0px 20px 0px;
}



.fw-600 {
    font-weight: 600;
}

.section-blog-detail .blog-sidebar ul {
    padding: 0;
}

.section-blog-detail .blog-sidebar li {
    list-style: none;
}

.section-blog-detail .blog-sidebar a {
    color: #535353;
    text-decoration: none;
    padding: 10px 0px;
    width: 100%;
    display: flex;
    border-left: 3px solid gainsboro;
    padding-left: 20px;
    transition: all 0.3s;
}

.section-blog-detail .blog-sidebar a.active {
    border-left: 3px solid black;
    font-weight: 600;
    color: black;
}

.section-blog-detail .blog-sidebar {
    position: sticky;
    top: 30px;
}

.section-blog-detail .blog-sidebar h5 {
    font-size: 20px;
}

.blog-details .category {
    color: #5394f5;
    font-size: 14px;
    margin-top: 20px;
}

.section-blog-detail .heading {
    font-weight: 700;
}

/*------------------------ blog-detail css end  ------------------------*/

/*------------------------ privacy-policy tabs css start  ------------------------*/
.tabs-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows tabs to wrap if space is limited */
    justify-content: center;
}

.tabs-container input[type="radio"] {
    display: none;
    /* Hide the actual radio buttons */
}

.tabs-container label {
    cursor: pointer;
    margin-right: 25px;
    font-size: 18px;
}

.tabs-container input[type="radio"]:checked+label {
    border-bottom: 3px solid #0d6efd;
    /* "Connect" the active tab to its content */
    z-index: 1;
    /* Ensure active tab is on top */
    color: #0d6efd;
    font-weight: 600;
}

.tab-content {
    width: 100%;
    display: none;
    /* Hide all content by default */
    order: 1;
    /* Ensure content appears below tabs */
}

.tabs-container input[type="radio"]:checked+label+.tab-content {
    display: block;
    /* Show content for the checked tab */
}

.tabs-container ul {
    padding-left: 20px;
    color: gray;
}

/*------------------------ privacy-policy tabs css end  ------------------------*/

.category-section .category-section-body {
    flex-wrap: wrap;
    gap: 10px;
}

.partner-form {
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    width: 60%;
    padding: 10px;
    position: absolute;
    bottom: 0px;
    right: 120px;
    background: white;
}

.partner-hero {
    background: #f0f5fa;
    padding: 50px 10px;
}

.section-how-works .step .step-num {
    width: 60px;
    height: 60px;
    background: #0a2f52;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-how-works h1 {
    color: #077419;
    font-size: 60px;
    margin-right: 20px !important;
}

.section-why-become i {
    background: #077419;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.section-trusted-by .card-testimonial {
    text-align: center;
}

.section-trusted-by .card-testimonial {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
    border-radius: 10px;
    padding: 10px;
    height: 100%;
}

.section-trusted-by .card-testimonial.active {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.30);
    transform: rotate(5deg);
    margin: 10px;
}

.section-trusted-by .card-testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.section-trusted-by .card-testimonial i {
    font-size: 20px;
    color: gainsboro;
}

/*-----------------------Partner dashboard css start ----------------------- */
/* Tab container */
.partner-dashboard-tabs {
    overflow: hidden;
    display: flex;
    gap: 10px;
    flex-direction: column;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    border-radius: 10px;
    position: sticky;
    top: 0;
    z-index: 1
}

/* Buttons inside tab */
.partner-dashboard-tabs button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
    font-size: 17px;
    border-radius: 10px;
    text-align: start;
}

/* Hover effect */
.partner-dashboard-tabs button:hover {
    background-color: #ddd;
}

/* Active tab */
.partner-dashboard-tabs button.active {
    background-color: #0a2f52;
    color: white;
}

/* Tab content */
.partner-dashboard-tabcontent {
    display: none;
    border-top: none;
}


/* leads tab css  */
  
  .my-leads-section .tab-buttons {
    display: flex;
    border-bottom: 1px solid #ccc;
    overflow: auto;
  }
  
  .my-leads-section .tab-button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
    font-size: 16px;
    border-bottom: 5px solid white;
  }
  
  .my-leads-section .tab-button:hover {
    /* background-color: #ddd; */
    border-bottom: 5px solid #ddd;
  }
  
  .my-leads-section .tab-button.active {
    border-bottom: 5px solid #0a2f52;
  }
  
  .my-leads-section .tab-content {
    display: none; /* Hidden by default */
    margin-top: 20px;
  }
  
  .my-leads-section .tab-content.active {
    display: block; /* Shown when active */
  }
/* leads tab end  */

.dashboard-content .profile-tab .profile{
    display: flex;
        align-items: center;
        gap: 10px;
}

.dashboard-content .profile-tab .profile .avatar{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.dashboard-content .profile-tab .profile .check-img{
    width: 20px;
}

.fw-400{
    font-weight: 400;
}

.dashboard-content .profile-tab .box-profession ul{
    background: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    gap: 10px;
    text-wrap: nowrap;
    flex-wrap: wrap;
}

.dashboard-content .profile-tab .box-profession ul li{
    list-style: none;
    background: gainsboro;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}


/* lead card css start */

.lead-card .status {
    color: white !important;
    font-weight: 400 !important;
    margin: 0;
    border-radius: 6px;
    padding: 2px 5px;
    width: fit-content;
}

.completed {
    background: rgb(40, 167, 69, 0.6);
}

.booking-request {
    background: rgb(0, 123, 255, 0.6);
}

.on-hold {
    background: rgb(255, 193, 7, 0.6);
}

.contacted {
    background: rgb(108, 117, 125, 0.6);
}

.re-schedule {
    background: rgb(253, 126, 23, 0.6);
}

.lead-card {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    cursor: pointer;
}

.lead-card .lead-card-top {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.lead-card .lead-card-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #5da947;
    color: white;
    border-radius: 0px 0px 10px 10px;
    align-items: center;
}

.lead-card .lead-card-top h5 {
    font-size: 30px;
    font-weight: 700;
    color: #0a2f52;
}

.lead-card .location {
    color: #0a2f52;
}

.lead-card .lead-card-bottom h5 {
    font-size: 30px;
}

.lead-card .lead-card-bottom p {
    color: white;
}

.lead-card .date p {
    color: #0a2f52;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.lead-card .date i {
    color: gray;
    margin-left: 5px;
}

.lead-card .fa-user-circle {
    color: gainsboro;
    font-size: 24px;
    margin-left: 5px;
}

.lead-card .icon-btns a {
    text-decoration: none;
    color: white;
    background: rgb(0, 0, 0, 0.5);
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
}

.lead-card .btn-status-change {
    text-decoration: none;
    color: white;
    background: #0a2f52;
    padding: 5px 10px;
    border-radius: 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-card .lead-card-bottom .bottom-btns {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.lead-card .lead-card-top .order-num{
    font-size: 20px;
    font-weight: 600;
    color: #0a2f52;
    margin: 0;
}

/* lead card css end  */


/* leads details css start */
.lead-details-section .hidden {
    display: none;
}

.lead-details-section .back-btn{
    border: none;
    background: #0a2f52;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: white;
}

.lead-details-section .info-card{
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    border-radius: 10px;
}
.lead-details-section .info-card ul{
    background: #e9edf0;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
}

.lead-details-section .info-card ul li{
    list-style: none;
}

.lead-details-section .info-card ul.rs-box{
    background: #61aa4d;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lead-details-section .info-card .action-btns a{
    text-decoration: none;
    background: white;
    color: #0a2f52;
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid #0a2f52;
    transition: all 0.3s;
}

.lead-details-section .info-card .action-btns a:hover{
    background: #0a2f52;
    color: white;
}

.lead-details-section .info-card .right{
    border-left: 1px solid gainsboro;
    padding-left: 25px;
    height: 100%;
}

.lead-details-section .bill-heading-card{
    background: #0a2f52;
    border-radius: 10px;
    color: white;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lead-details-section .bill-heading-card h5{
    background: green;
    width: 100%;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.lead-details-section .bill-card{
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    border-radius: 10px;
}

.lead-details-section .bill-card .add-items{
    text-decoration: none;
    color: #0a2f52;
    font-weight: 600;
}

.lead-details-section .bill-card .table-box{
    overflow: auto;
}

.lead-details-section .bill-card table th{
    background: #e9ecef;
}

/* leads details css start */

/* document verification css start  */

.doc-verification .steps .step{
    display: flex;
    border-left: 5px solid gainsboro;
    position: relative;
}

.doc-verification .steps .step:last-child{
    border: none;
}

.doc-verification .steps .step::before{
    content: "";
    width: 14px;
    height: 14px;
    background: gray;
    border-radius: 50%;
    position: relative;
    right: 9px;
    margin-right: 20px;
}

.doc-verification .steps .step:last-child:before{
    content: "";
    right: 4px;
}

.doc-verification .steps .step.active::before{
    content: "";
    background: #5ea94b;
}


/* document verification css start  */

.recharge-history table th{
    background: #0a2f52;
    color: white;
}

.recharge-history table td{
    background: whitesmoke;
}

.recharge-history .table-box{
    overflow: auto;
}

.dashboard-content .wallet-content{
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    border-radius: 10px;
}

.dashboard-content .wallet-amount{
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    border-radius: 10px;
}

/*-----------------------Partner dashboard css 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;
    }

    .partner-form {
        /*bottom: -10px;*/
        width: 100%;
        right: 0;
        left: 0;
    }

    .partner-hero .hero-img {
        width: 80%;
    }
}



@media only screen and (min-width: 600px) {}

@media only screen and (min-width: 768px) {}

/* ------------------------ media query responsive End------------------------- */

/* lead detail modal css  start*/
.lead-detail-modal .picture-upload{
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 10px;
}

.lead-detail-modal .case-comments{
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 10px;
}

.lead-detail-modal .billing-section{
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 10px;
}

.lead-detail-modal table th{
    background: whitesmoke;
}

.btn-add{
    border: none;
    background: #0a2f52;
    color: white;
    border-radius: 10px;
    font-size: 14px;
    text-wrap: nowrap;
    padding: 10px;
}

.bg-sec{
    background-color: #5da947 !important;
}

.lead-detail-modal .modal-header{
    background: #0a2f52;
    color: white;
}

.lead-detail-modal .grand-total{
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 10px;
}

.lead-detail-modal .icon-btns .btn-call{
    background: #2085cb;
    display: flex;
    width: 40px;
    height: 40px;
    color: white;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.lead-detail-modal .icon-btns .btn-whatsapp{
    background: #4aba82;
    display: flex;
    width: 40px;
    height: 40px;
    color: white;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.lead-detail-modal .grand-total .grand-total-card{
    width: 100%;
    border: 1px solid gainsboro;
    padding: 10px;
    border-radius: 10px;
}

.lead-detail-modal .quantity-box{
    border: 1px solid gainsboro;
    border-radius: 6px;
    display: flex;
}

.lead-detail-modal .quantity-box .qn{
    border-left: 1px solid gainsboro;
}

.lead-detail-modal .quantity-box span{
    padding: 5px;
}

.lead-detail-modal .form-check{
    display: flex;
    flex-direction: row-reverse;
}

/* custom radio  */
 .case-payment {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: 'Inter', sans-serif;
  }
  
  .case-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 25px;
    border: 1px solid #d1d5db;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .case-option input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .case-option input[type="radio"]:checked {
    border-color: #2563eb;
  }
  
  .case-option input[type="radio"]:checked::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .case-option span {
    color: #374151;
    font-size: 15px;
    user-select: none;
  }
  
  .case-option input[type="radio"]:checked + span {
    font-weight: 500;
  }
  
  .case-option:has(input[type="radio"]:checked) {
    background-color: #f3f4f6;
    border-color: #2563eb;
  }
/* custom radio  end*/

/* change status modal css start  */
.change-status-modal .modal-content{
    width: 70% !important;
    margin: auto;
}

.change-status-modal .modal-header{
    margin: 0;
}

.change-status-modal .status-radios{
    display: flex;
        flex-direction: column;
        gap: 10px;
}

.change-status-modal .reschedule input{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
}

.change-status-modal textarea{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 10px;
}

/* change status modal css end  */

.pulse-widget-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Circular Floating Buttons */
.pulse-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    position: relative;
    transition: transform .2s ease;
}

.pulse-btn:hover {
    transform: translateY(-4px);
}

@media(max-width:991px){
    .pulse-widget-container{
        bottom:75px !important;
    }
}
.whatsapp-ripple {
    position: relative;
    overflow: visible;
}

.whatsapp-ripple::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.4);
    animation: rippleWhatsApp 1.8s infinite;
    z-index: -1;
}

@keyframes rippleWhatsApp {
    0% { transform: scale(0.9); opacity: 0.8; }
    70% { transform: scale(1.8); opacity: 0; }
    100% { opacity: 0; }
}

.call-swing {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: swing 1.5s ease-in-out infinite;
}

@keyframes swing {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(10deg); }
    50%  { transform: rotate(-10deg); }
    75%  { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

/*Modal design*/
/* Modal look */
.city-modal .modal-content {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 0 25px rgba(0,0,0,0.12);
}

/* Header */
.city-modal .modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background: #0a2f52;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.city-modal .btn-close {
    filter: brightness(0) invert(1);
}

/* City box */
.city-box {
    background: #f5f9fc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    transition: 0.25s ease;
    text-align: center;
    color: #0a2f52;
    font-weight: 600;
}

/* Hover effect with your 2 colors */
.city-box:hover {
    background: #0a2f52;
    color: #fff !important;
    border-color: #58a643;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* Icon style */
.city-box i {
    font-size: 24px;
    margin-bottom: 6px;
    color: #58a643;
    transition: 0.2s;
}

.city-box:hover i {
    color: #fff;
}

/**Auto Suggest*/
#country-list{
    float: left;
    list-style: none;
    margin-top: -1px;
    padding: 0;
    /*width: 91.3%;*/
    position: absolute;
    margin-left: 1px;
    background:#fff;
    z-index:99999;
    display: unset !important;
}
  
#country-list li a{
    text-align:left;
    color:#000;
    float:left;
    margin-left: 20px;
    width:100%;
    line-height: 40px;
    font-size: 14px;
} 
  
  
#country-list li{
    padding:0px 5%;
    width:100%;
    height: unset;
    float:left;
    border-bottom:1px solid #c4c4c4;
    background-color: #fff;
}

#country-list li a:hover{
    background:#3c3b5c;
    color:#fff;
    cursor: pointer;
    text-decoration:none;
    line-height: 40px;
    font-size: 14px;
}

.home_search_container input[type="text"] {
    position: relative; 
}
.home_search_container .search_icon {
    position: absolute;
    left: 42px;
    top: 7px;
    z-index: 9999;
}
.autosuggest_left{
    padding-right:2%;
    padding-top:10px;
    width:10%;
    float:left;
}

.autosuggest_right{
    width:88%;
    float:left;
}
.autosuggest_left img{
    width:30px;
}

#city-list{
    float: left;
    list-style: none;
    margin-top: -1px;
    padding: 0;
    width: 93%;
    position: absolute;
    margin-left: 1px;
    background:#fff;
    z-index:99999;
}
  
#city-list li{
    padding:5px 5px;
    width:100%;
    float:left;
    text-indent:10px;
}
#city-list li:hover{
    background:#F3F3F3;
    color:#000;
    cursor: pointer;
}
#city_show{
    background-position: 300px 15px !important;
}
/**End Auto Suggest*/

.nav .button{
    border: 1px solid white;
}
.cat-icon-img {
    width: 20px;
    max-height: 25px;
    float: left;
    margin-top: 0px;
    margin-right: 4%;
    color: #fff;
    background: #fff;
    padding: 2px;
}