/* =============================================================
   FIGMA MATCH ADDITIONS
   Add this file's link AFTER homepage.css and responsive.css
   so these rules can safely override where needed.
   ============================================================= */

/* ---------- HEADER: location button (replaces "Book An Appointment") ---------- */
.hm__location-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #344FF0;
    color: #344FF0;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.hm__location-btn:hover {
    background: #344FF0;
    color: #ffffff;
}

.hm__location-icn {
    display: flex;
    align-items: center;
}

.hm__location-txt {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .hm__location-txt {
        display: none;
    }
    .hm__location-btn {
        padding: 8px;
        border-radius: 50%;
    }
}

/* ---------- SEARCH: mic icon ---------- */
.search-bar-container {
    display: flex;
    align-items: center;
}

.mic-btn {
    background: transparent;
    border: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    flex: 0 0 auto;
}

.search-bar-container.mobile .mic-btn {
    color: #1e1e1e;
}

.mic-btn.listening {
    color: #ff4d4f;
    animation: hm-mic-pulse 1s infinite;
}

@keyframes hm-mic-pulse {
    0%   { opacity: 1; }
    50%  { opacity: .4; }
    100% { opacity: 1; }
}

/* ---------- HERO SECTION (sidebar categories + banner + CTA cards) ----------
   NOTE: the header is position:fixed (same as the old .hr_banner_section),
   so this section needs the same top offset that section used to have,
   or content renders underneath/behind the header. Kept in sync with the
   73.21px used elsewhere and the 55/75px breakpoints in responsive.css. */
.hm__hero-figma-sec {
    margin-top: 73.21px;
    padding: 16px 0;
}

@media only screen and (max-width: 991.98px) {
    .hm__hero-figma-sec {
        margin-top: 75px;
    }
}

@media (max-width: 767px) {
    .hm__hero-figma-sec {
        margin-top: 55px;
    }
}

/* Flex row that SHRINKS at every width instead of stacking/hiding —
   matches the reference screenshot, which keeps sidebar + banner + CTAs
   side-by-side even on narrow/mobile viewports. */
.hm__hero-figma-main {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.hm__hero-cats-sidebar {
    flex: 0 0 18%;
    max-width: 220px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 8px 0;
    max-height: 420px;
    overflow-y: auto;
}

.hm__hero-cats-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hm__hero-cats-sidebar li a {
    display: block;
    padding: 6px 10px;
    font-size: 13px;
    line-height: 1.3;
    color: #1e1e1e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .2s ease-in-out;
}

.hm__hero-cats-sidebar li a:hover {
    background: #f2f4ff;
    color: #344FF0;
}

.hm__hero-figma-banner {
    flex: 1 1 auto;
    min-width: 0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 200px;
}

.hm__hero-figma-banner .swiper,
.hm__hero-figma-banner .swiper-slide {
    height: 100%;
    min-height: 200px;
}

.hm__hero-figma-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hm__hero-figma-ctas {
    flex: 0 0 22%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hm__hero-cta {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
}

.hm__hero-cta--buy {
    background: #FFF3D6;
    color: #1e1e1e;
}

.hm__hero-cta--sell {
    background: #F8D7D7;
    color: #1e1e1e;
}

.hm__hero-cta-icon {
    color: #344FF0;
}

.hm__hero-cta-icon svg {
    width: 18px;
    height: 18px;
}

.hm__hero-cta-text {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.hm__hero-cta-btn {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #1e1e1e;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .hm__hero-cats-sidebar li a {
        padding: 10px 20px;
        font-size: 14px;
    }
    .hm__hero-figma-banner,
    .hm__hero-figma-banner .swiper,
    .hm__hero-figma-banner .swiper-slide {
        min-height: 340px;
    }
    .hm__hero-cta {
        padding: 20px;
        gap: 10px;
    }
    .hm__hero-cta-icon svg {
        width: 26px;
        height: 26px;
    }
    .hm__hero-cta-text {
        font-size: 15px;
    }
    .hm__hero-cta-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ---------- NEW IMAGE-ONLY SECTIONS ----------
   Visible placeholder box + label until the real creative files are
   uploaded to assets/images/ — so the slot is never just blank/invisible. */
.hm__grow-image-sec,
.hm__joining-image-sec {
    margin: 40px 0;
}

.hm__grow-image-sec .hm__img-slot,
.hm__joining-image-sec .hm__img-slot {
    position: relative;
    display: block;
    min-height: 180px;
    border-radius: 12px;
    background: #f2f4ff;
    border: 1px dashed #bcc4f7;
}

.hm__grow-image-sec img,
.hm__joining-image-sec img {
    width: 100%;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 1;
    background: #f2f4ff;
}

.hm__img-slot-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6473e0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    z-index: 0;
}

/* ---------- Keep footer flush — no extra whitespace after it ---------- */
.one_stop_section {
    margin: 0;
    padding: 0;
}

.one_stop_section .container {
    min-height: 0;
}

/**Navbar :: Start **/
.cart__btn {
    height: 45px;
    margin: 0 !important;
}

h2 {
    line-height: 1.2 !important;
}

.cart__btn img {
    width: 100%;
    height: 100%;
}

/* .home_category_slider {
    visibility: hidden;

}

.home_category_slider.slick-initialized {
    visibility: visible;
} */


/**Navbar :: END **/

/** HERO SECTION :: START **/
.hm__hero-img {
    margin: auto;
}

.hm__top-space {
    margin-top: 50px;
}

.hm__hero-img .swiper-button-next:after,
.hm__hero-img .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
}

.hm__hero-img .swiper-button-next,
.hm__hero-img .swiper-button-prev {
    background-color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 100%;
}

.hm__hero-img .swiper:hover .swiper-button-next,
.hm__hero-img .swiper:hover .swiper-button-prev {
    opacity: 1;
}

.hm__hero-img .swiper-button-next,
.hm__hero-img .swiper-button-prev {
    background-color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

.hm__hero-img .swiper-backface-hidden .swiper-slide img,
.hm__heroslide-img {
    border-radius: 12px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 24px;
    top: auto;
}

.hm__hero-img .swiper-slide {
    border-radius: 12px;
}

.hm__herocat-img {
    height: 97%;
}

.hm__banner-desc {
    color: #ffffff;
    position: absolute;
    top: 37%;
    left: 30px;
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

.hm__hero-cat {
    overflow: hidden;
    border-radius: 12px;
}

.hm__hero-cat img,
.hm__hero-cat h3 {
    transition: all 0.2s ease-in-out;
}

.hm__hero-cat:hover img,
.hm__hero-cat:hover h3 {
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

/** HERO SECTION :: END **/
/** CATEGORY SECTION :: START **/
.hm__homepage-cat {
    font-weight: 300px;
}

.category img {
    border-radius: 20px;
    width: 120px;
    text-align: center;
    padding: 20px;
}

.cat-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffe6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.hm__cat-title {
    font-size: 0.8em;
    text-align: start;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

.hm__cat-img img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 3px;
}

.hm__cat-img {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    padding: 5px;
    background-color: #ffffff;
    border: .5px solid#ccc;
    margin: 0;
    transition: all 0.2s ease-in-out;
}

.home_category_slider .slick-track,
.we_connect_bottom .slick-track {
    display: flex;
    /* height: 100%; */

}

.home_category_slider .slick-arrow {
    display: none !important;
}



.shop_service_slider .slick-track {
    display: flex;
    height: 100%;
    align-items: center;

}

.hm__categories-container .hm__cat-imgs img {
    transition: all 0.5s ease-in-out;
}

.hm__categories-container a:hover .hm__cat-imgs {
    background-color: #007bff;
    transition: all 0.5s ease-in-out;
}

.hm__categories-container a:hover .hm__cat-imgs img {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}

.category-sec {
    margin: 45px 0;
}

/** CATEGORY SECTION :: END **/
/** SHOP BY SERVICE SECTION :: START **/
.hm__shopbyservice-btn {
    margin: 0 auto;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    padding-top: 10px;
}

.service-product-img {
    height: 50px;
}

.hm__service-product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px !important;
    text-align: center;
}

.hm__service-product-description {
    font-size: 14px;
    text-align: center;
}

section.hr_banner_section {
    margin-top: 73.21px;
    margin-bottom: 0;
}

.hm__shopbyservice-img-3 {
    width: 100%;
}

.hm__shopbyservice-sec {
    padding: 30px 0 50px 0;
}

.hm__shopbyservice-sec img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    /* padding: 5px 5px 5px 7px; */
}

.shop_service_slider .slick-arrow img,
.categories-sub-container .slick-arrow img {
    padding: 5px 5px 5px 7px;
}

.hm__service-img {
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    height: 240px;
}

.shop_service_slider .slick-arrow,
.categories-sub-container .slick-arrow {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    background: #344FF0;
}

.shop_service_slider .slick-prev:hover,
.shop_service_slider .slick-prev:focus,
.shop_service_slider .slick-next:hover,
.shop_service_slider .slick-next:focus,
.categories-sub-container .slick-prev:hover,
.categories-sub-container .slick-prev:focus,
.categories-sub-container .slick-next:hover,
.categories-sub-container .slick-next:focus {
    color: transparent;
    outline: none;
    background: #344FF0;
}

.hm__shopbyservice-sec .hm__service-img img {
    transition: all 0.5s ease-in-out;
}

.hm__shopbyservice-sec .hm__service-img:hover img {
    transition: all 0.5s ease-in-out;
    transform: scale(1.1);
}

/* .hm__service-img:before {
    content: '';
    position: absolute;
    background-color: #0000005c;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: 9;
} */

.hm__col-block {
    flex-direction: column;
    gap: 16px;
    display: flex;

}

/** SHOP BY SERVICE SECTION :: END **/
/** LOOKING FOR SERVICE AND PRODUCT SECTION :: START **/
.hm__service-product-sec-container {
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #E6E6E6;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.servicepro_section {
    margin-bottom: 80px !important;
}

.shop_service_slider .slick-dots,
.categories-sub-container .slick-dots {
    position: static !important;
}

.servicepro_section .slick-dots {
    bottom: -35px;

}

.hr_features_main .slick-track {
    display: flex;
    height: auto;
}

.hr_features_main .slick-slide {
    height: auto !important;
}


.trending_slider .slick-dots {
    bottom: -10px;
}

.hm__service-product-sec-container img {
    transition: all 0.2s ease-in-out;
}

.hm__service-product-sec-container:hover img {
    transition: all 0.2s ease-in-out;
    transform: scale(1.1);
}

.hm__service-product-sec-container:hover {
    border-color: #007bff;
}

.hm__servicepro-sec {
    margin: 50px 0;
}

.hm__servicepro-sec h2,
.hm__servicepro-sec p {
    text-align: center;
}

.container-best-on-rent h2,
.hm__shopbyservice-sec h2 {
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
}

.hm__service-product-sec {
    margin-top: 0 !important;
}

.shop_service_left h4,
.shop_service_left p {
    color: #fff !important;
}

.best_rent_right h4,
.best_rent_right p {
    color: #442F23 !important;
}

.best_rent_right h4 {
    font-size: 18px !important;
    line-height: 27px !important;
    max-width: 57% !important;
}

.best_rent_right p {
    max-width: 50% !important;
}

.shop_service_left a {
    background-color: #08759C !important;
}

/** LOOKING FOR SERVICE AND PRODUCT SECTION :: END **/
/** BEST ON RENT SECTION :: START **/
.hm__bestonrent-btn {
    font-weight: 600;
    font-size: 14px;
    position: unset;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 0;
}

.container-best-on-rent .bestonrent-img img {
    height: 219px;
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
}

.container-best-on-rent .bestonrent-img {
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    padding: 0;
    margin-left: 10px;
    margin-right: 10px;
}

/* .categories-sub-container {
    gap: 16px;
    justify-content: space-between;
} */

.container-best-on-rent .slick-track,
.servicepro_section .slick-track {
    display: flex;
    /* width: 100% !important; */
}

.container-best-on-rent .bestonrent-img img {
    transition: all 0.3s ease-in-out;
}

/* .container-best-on-rent .bestonrent-img:hover img {
    transition: all 0.3s ease-in-out;
    transform: scale(1.1);
} */

/* .container-best-on-rent .bestonrent-img:before {
    content: '';
    position: absolute;
    background-color: #0000005c;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: 9;
} */

/* .container-best-on-rent .bestonrent-img .hm__bestonrent-btn {
    transition: all 0.3s ease-in-out;
}

.container-best-on-rent .bestonrent-img:hover .hm__bestonrent-btn {
    transition: all 0.3s ease-in-out;
    transform: scale(1.1);
} */

.container-best-on-rent {
    margin: 0 0 60px;
    background-color: #ECEFFF;
    padding: 30px 0 50px 0;


}

.best-to-buy-item .image {
    height: 170px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.best-to-buy-item:hover .image img {
    transform: scale(1.1);
}

/** BEST ON RENT SECTION :: END **/
/** OUR FEATURE SECTION :: START **/
.our-feature-img {
    height: 100%;
    margin: 0;
    width: 100%;
    max-height: 96px;
    min-width: 96px;
    max-width: 96px;
    min-height: 96px;
}

.hr_features_main .hm__feature-block {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 30px;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 15px;
}

.our-feature-description {
    width: 100%;
}

.hm__feature-block {
    border: 2px solid #DDDDDD;
    border-radius: 12px;
    padding: 16px;
}


.hm__feature-img {
    width: 100%;
    height: 88%;
    border-radius: 12px;
}

.hm__feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/** OUR FEATURE SECTION :: END **/

/** BEST TO BUY SECTION :: START **/
.hm__besttobuy-title {
    background-color: #007BFF;
    color: #ffffff;
    padding: 12px;
    margin: 0;
    font-weight: 500;
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hm__buy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: all 0.2s ease-in-out;
}

.hm__buy-img {
    height: 170px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.hm__buy-img:hover img {
    transform: scale(1.1);
}

.hm__buy-img:before {
    content: '';
    position: absolute;
    background-color: #0000005c;
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0;
    z-index: 9;
}

/** BEST TO BUY SECTION :: END **/
/** TRENDING NOW SECTION :: START **/
.hm__trendingnow-title {
    background-color: #E6F2FF;
    font-weight: 300px;
}

.hm__trendingnow-title-2 {
    background-color: #E6F2FF;
    font-weight: 300px;
    text-align: right;
}

.hm__tranding-sec {
    background-color: #e6f2ff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 12px;
}

.hm__tranding-sec span {
    display: inline-block;
    background-color: #007BFF;
    color: #ffffff;
    padding: 4px 20px;
    border-radius: 100px;
    font-weight: 600;
}

.hm__tranding-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.5s ease-in-out;
}

.hm__icon-img svg path {
    stroke: #ffffff;
}

.home_slide_sec_more .hm__icon-img {
    background-color: transparent;
    transform: rotate(90deg);
    margin: 0;
    width: 100%;
}

.home_slide_sec_more .hm__icon-img svg path {
    stroke: #000;
}

.hm__title-wrap p {
    margin-bottom: 0;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

.hm__icon-img svg {
    max-width: 20px;
}

.hm__icon-img {
    background-color: #344FF0;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    text-align: center;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hm__tranding-img:hover img {
    transition: all 0.5s ease-in-out;
    transform: scale(1.1);
}

.hm__tranding-sec .col-6 {
    padding: 0 8px;
}

.hm__tranding-img {
    height: 170px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.search-bar-container.mobile {
    display: none;
}

/** TRENDING NOW SECTION :: START **/
/** JOIN OUR BUSSINES SECTION :: START **/
.hm__ourbussiness-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hm__ourbusiness-description {
    font-size: 0.75em;
}

.hm__ourbusiness-cont {
    background-color: #E6F2FF;
    padding: 10px;
}

.hm__busines-sec {
    background-color: #E6F2FF;
    margin: 0;
    border-radius: 12px;
    padding: 24px 0;
}

.hm__business-img {
    background-color: #ffffff;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 100%;
    padding: 11px;
    border: 1px solid #ffffff;
    transition: all 0.2s ease-in-out;
    background: #344FF0;
}

.hm__business-img img {
    max-width: 100%;
    transition: all 0.2s ease-in-out;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.hm__ourbusiness-cont:hover .hm__business-img,
.hm__feature-block:hover .our-feature-img {
    transition: all 0.2s ease-in-out;
    transform: scale(1.1);
}

.hm__ourbusiness-cont:hover .hm__business-img {
    border-color: #344FF0;
}

.hm__service-product-title {
    transition: all 0.2s ease-in-out;
}

.hm__ourbusiness-cont:hover .hm__service-product-title,
.hm__feature-block:hover .hm__service-product-title,
.hm__servicepro-sec .col:hover .hm__service-product-title {
    color: #344FF0;
}

.hm__join-business {
    padding-top: 50px;
    margin: 50px 0 0 0;
    background: #E6F2FF;
    padding-bottom: 30px;
}

.hm__busines-sec-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.hm__join-business .hm__busines-sec-col {
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
}

.hm__busines-sec-col .hm__ourbusiness-cont {
    background-color: transparent;
    padding: 30px 20px;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    height: 100%;
}

.bule_text {
    color: #344FF0;
}

/** JOIN OUR BUSSINESS SECTION :: END **/
/* APP DOWNLOAD SECTION :: START */
span.hm__tag {
    background-color: #BEDDFF;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #222222;
    border-radius: 100px;
    display: inline-block;
    margin: 0 0 24px;
}

.fancy-section {
    position: relative;
    background: linear-gradient(135deg, #faf5ff 0%, #2575fc 100%);
    color: #fff;
    overflow: hidden;
}

.fancy-section::before,
.fancy-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: move 10s infinite alternate ease-in-out;
}

.fancy-section::before {
    top: -100px;
    left: -150px;
}

.fancy-section::after {
    bottom: -100px;
    right: -150px;
}

@keyframes move {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.3) translateY(30px);
    }
}

.hm__app-download {
    background-color: #ECEFFF;
    padding: 0 0;
    margin: 50px 0;
    position: relative;
}

.hm__appdownload-content {
    padding: 50px 0;
}

.hm__app-img img {
    max-width: 100%;
    width: 90%;
    padding-top: 20px;
}

.kaam_mob {
    display: none;
}

.main_slick>.row {
    width: 100%;
    gap: 30px;
    margin: 0;
    display: flex;
}



div#categories-container .col-sm-1.col-4 {
    width: 100%;
    display: inline-flex;
    align-items: start !important;
    padding: 0;
    justify-content: center;
    flex: unset !important;
    max-width: calc(7.69230769231% - 28px) !important;
    min-width: calc(7.69230769231% - 28px) !important;
}

.home_slide_sec_more .hm__title-wrap {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    padding: 5px;
    background-color: #ffffff;
    border: .5px solid #ccc;
    margin: 0;
    transition: all 0.2s ease-in-out;
}

.home_slide_sec_more:not(.col-sm-1.col-4) {
    display: none;
}

/* APP DOWNLOAD SECTION :: END */



.home_slide_sec>div {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.home_category_slider {
    width: 100%;
}

.home_slide_sec_more {
    width: 14%;
    align-items: center;
    justify-content: end;

}

.home_category_slider .slick-slide {
    display: flex;
    padding: 6px 0;
    background: transparent;
    border-radius: 100px;
    margin-left: 10px;
    margin-right: 10px;
    width: auto !important;
}

.main_slick {
    justify-content: center;
}

.main_slick>.slick-slider {
    /* overflow: hidden; */
    position: relative;
    padding-left: 0;
}

.home_category_slider button.slick-next {
    right: -30px;
    top: 40%;
    transform: translate(-50%, -50%);
}

.categories-sub-container .slick-next,
.shop_service_slider button.slick-next {
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    transition: 0.3s all;
}

.home_category_slider button.slick-prev {
    left: 0;
    top: 60%;
    transform: translate(-50%, -50%) rotate(-180deg);
}

.categories-sub-container button.slick-prev,
.shop_service_slider button.slick-prev {
    left: 30px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-180deg);
    opacity: 0.8;
    transition: 0.3s all;
}

.categories-sub-container button.slick-prev:hover,
.shop_service_slider button.slick-prev:hover,
.categories-sub-container .slick-next:hover,
.shop_service_slider button.slick-next:hover {
    opacity: 1;
}


.home_category_slider .slick-list {
    overflow: hidden;
}




.home_category_slider .slick-arrow {
    z-index: 1;
    top: 40%;
    border: none;
    position: absolute;
    padding: 0;
}

.home_category_slider .slick-arrow:before,
.categories-sub-container .slick-arrow::before,
.shop_service_slider .slick-arrow::before {
    display: none;
}

.home_category_slider .slick-next,
.home_category_slider .slick-prev {
    background: transparent;
    width: max-content;
}

.home_slide_sec {
    margin: 0 !important;
    /* background: #E9ECFE; */
    /* padding-left: 20px; */
    padding-top: 60px;
}

.home_slide_sec a.category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    overflow: hidden;
    flex-direction: column;
}

.hm__cat-title {
    text-align: center;
    line-height: 1.2;
}

.trend_btn {
    justify-content: center;
    margin-top: 20px;
}

/* .trend_section {
    padding-top: 10px;
} */

.trend_section .trend_btn {
    margin: 0 !important;
}

.trend_section>div {
    justify-content: center !important;
}

.hm__join-business h2,
.trend_section h2 {
    text-align: center;
}

.best_to_buy .slick-dots,
.hr_features_main .slick-dots {
    bottom: -45px;
}

.best_to_buy .slick-dotted.slick-slider {
    margin-top: 30px;
}

.hr_features_main .slick-slide {
    height: inherit !important;
}

.shop_service_slider .slick-slide {
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
    max-height: 100%;
}

.trending_slider .slick-slide {
    margin-right: 0px !important;

}

.trend_section .trending_slider .slick-slide,
.best_to_buy .bestToBuyContainer .slick-slide,
.hm__busines-sec-main .slick-slide,
.hr_buy_what_main .slick-slide,
.hr_features_main .slick-slide,
.servicepro_section .slick-slide,
.we_connect_bottom .slick-slide,
.services-grid .slick-slide,
.hr_banner_section .slick-slide,
.categories-sub-container .slick-slide,
.shop_service_slider .slick-slide {
    height: auto;
    margin-left: 10px;
    margin-right: 10px;
}

.trend_section .trending_slider .slick-dots li,
.best_to_buy .bestToBuyContainer .slick-dots li,
.hm__busines-sec-main .slick-dots li,
.hr_buy_what_main .slick-dots li,
.hr_features_main .slick-dots li,
.servicepro_section .slick-dots li,
.we_connect_bottom .slick-dots li,
.services-grid .slick-dots li,
.hr_banner_section .slick-dots li,
.categories-sub-container .slick-dots li,
.shop_service_slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #C5CCF4;
    border-radius: 100px;
    opacity: 1;
}


.trend_section .trending_slider .slick-dots li.slick-active,
.best_to_buy .bestToBuyContainer .slick-dots li.slick-active,
.hm__busines-sec-main .slick-dots li.slick-active,
.hr_buy_what_main .slick-dots li.slick-active,
.hr_features_main .slick-dots li.slick-active,
.servicepro_section .slick-dots li.slick-active,
.we_connect_bottom .slick-dots li.slick-active,
.services-grid .slick-dots li.slick-active,
.hr_banner_section .slick-dots li.slick-active,
.categories-sub-container .slick-dots li.slick-active,
.shop_service_slider .slick-dots li.slick-active {
    opacity: 1;
    background: #344FF0;
}

.trend_section .trending_slider .slick-dots li button,
.best_to_buy .bestToBuyContainer .slick-dots li button,
.hm__busines-sec-main .slick-dots li button,
.hr_buy_what_main .slick-dots li button,
.hr_features_main .slick-dots li button,
.servicepro_section .slick-dots li button,
.we_connect_bottom .slick-dots li button,
.services-grid .slick-dots li button,
.hr_banner_section .slick-dots li button,
.categories-sub-container .slick-dots li button,
.shop_service_slider .slick-dots li button {
    display: none;
}

.hm__busines-sec-main .slick-dots,
.we_connect_bottom .slick-dots,
.hr_banner_section .slick-dots,
.categories-sub-container .slick-dots,
.shop_service_slider .slick-dots {
    bottom: -35px;
}

.trend_section .slick-dotted.slick-slider,
.best_to_buy .slick-dotted.slick-slider {
    margin-bottom: 20px;
}


section.best_to_buy {
    padding: 50px 0;
}

.categories-sub-container {
    gap: 16px;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    overflow-x: scroll;
}

.best-to-buy-item .image {
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
    min-height: 210px;
    max-height: 210px;
}

.best-to-buy-item .image img {
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
    position: relative;
    border-radius: 12px 12px 0 0;
    min-height: 210px;
    max-height: 210px;
    object-fit: cover;
}

.hr_buy_what_section {
    padding: 50px 0 70px 0;
}

.hr_buy_what_main,
.hr_features_main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.we_connect_bottom_main_main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.servicepro_section {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
}

.we_connect_section h2,
.we_connect_section p {
    text-align: center;
}

.we_connect_col h4 {
    text-align: center;
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #1E1E1E;
}

.we_connect_col {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 25px 22px;
    background: #fff;
    border-radius: 15px;
    gap: 20px;
}

.we_connect_bottom_main {

    width: 750px;
    margin: 0 auto;
    padding-top: 30px;
}

.we_connect_bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    ;
}

section.we_connect_section {
    padding: 50px 0 60px 0;
    background: #ECEFFF;
}

.servicepro_section .col {
    padding: 0;
}

.buy_dream {
    display: flex !important;
}

.buy_dream,
.buy_service,
.buy_rent {
    position: relative;
    min-height: 290px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hr_buy_what_col h4 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 33px;
    color: #73560A;

}

.hr_buy_what_col p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #73560A;

}



.person-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 10px;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
    z-index: 0;
}

.hr_buy_what_col h4,
.hr_buy_what_col p,
.hr_buy_what_col a {
    z-index: 1;
    position: relative;
    max-width: 70%;
}

.buy_service h4 {
    color: #000000;
}

.buy_service p {
    color: #000000;
}

.buy_rent h4 {
    color: #FFF;
}

.buy_rent p {
    color: #FFF;
}


.hr_buy_what_col a {
    font-family: Poppins;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    color: #FFFFFF;
    background-color: #73560A;
    border-radius: 8px;
    padding: 13px 17px;
    transition: 0.3s all;
}

.hr_buy_what_col a:hover {
    background-color: #007bff;
}

.best_to_buy {
    display: none;
}

.hm__app-download_left {
    width: 50% !important;
}

.hm__app-download_right {
    width: 50% !important;
    position: relative;
    z-index: 1;
}

.hm__app-download::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/girl_bann.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    display: none;
}

.col-sm-4.hm__app-download_left {
    z-index: 1;
}

.hm__app-downloader img {
    width: 120px;
    height: 40px;
    object-fit: cover;
}


.hr_features {
    background-color: #ECEFFF;
    padding: 50px 0 60px 0;
}

.hr_features h2 {
    text-align: center;
}

.kaam_section {
    position: relative;
}

.kaam_section span {
    font-family: Poppins;
    font-weight: 800;
    font-size: 60px;
    line-height: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    color: #fff;

}

p.pright span {
    margin-top: 60px;
}

.kaam_section img {
    border-radius: 20px;
    width: 100%;
}

.kaam_section {
    position: relative;

}

.left::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -35px;
    width: 30px;
    height: 30px;
    background-image: url('/assets/images/left_logo.svg');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1;
}


.right::before {
    content: "";
    position: absolute;
    top: 50px;
    right: -35px;
    width: 30px;
    height: 30px;
    background-image: url('/assets/images/right_logo.svg');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1;
}

.best_rent_section .container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.best_rent_right {
    width: 35%;
}

.categories-container.best_rent_left {
    width: 65%;
    overflow: hidden;
}

.best_rent_left .slick-slider,
.shop_service_slider .slick-slider {
    overflow: hidden;
    width: 100%;
    padding: 0px 50px;
}

.row.shop_service_slider.slick-slider {
    padding: 0 50px;
}

.shop_service_main {
    display: flex !important;
    justify-content: space-between;
    padding-top: 15px;
}

.shop_service_slider {
    width: 104%;
}

.shop_service_left {
    width: 35%;
}

.icon_text_section {
    font-family: "Poppins", serif;
    line-height: 1.6;
    background: #fff;
    color: #333;
    padding: 50px 0;
    max-width: 100%;
    margin: auto;
}

.icon_text_section h1 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.icon_text_section p {
    font-size: 15px;
    color: #212529;
}

.icon_text_section .intro {
    margin-bottom: 30px;
}

.icon_text_section .services-title {
    font-size: 20px;
    margin: 40px 0 20px;
    font-weight: 600;
}

.hm__busines-sec-main .slick-track {
    display: flex;
}

.icon_text_section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.icon_text_section .service-box {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.icon_text_section .service-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon_text_section .service-box h3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}

.icon_text_section .service-box p {
    font-size: 14px;
    color: #212529;
}

.icon_text_section .footer-note {
    margin-top: 30px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Icon placeholder */
.icon_text_section .icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: inline-block;
    color: #444;
}

.services-grid .slick-track {
    display: flex;
}

.trend_section,
.hr_features {
    overflow: hidden;
}

.hr_banner_column {
    border-radius: 20px;
    margin-top: 50px;

}

.hr_banner_column a {
    width: 100%;
}

.hr_banner_column img {
    border-radius: 20px;
    width: 100%;
}

.hr_banner_column h1 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 35px;
    line-height: 45px;
    color: #344FF0;
}

.hr_banner_column_left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}

.hr_banner_section .slick-slide {
    display: flex !important;
    height: auto;
}

.hm__app-downloader {
    padding-bottom: 30px;
}

.hm__app-download p {
    text-align: start;
    padding-top: 10px;
    width: 80%;
    font-size: 16px;
    color: #000;
}

.hm__app-downloader a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    /* border-radius: 16px; */
    padding: 5px;
    /* small padding for glow */
    background: transparent;
    background-size: 800% 800%;
    animation: gradientMove 5s ease infinite;
    /* box-shadow: 0 8px 20px rgba(0,0,0,0.2); */
}

.hm__app-downloader a img {
    display: block;
    width: 150px;
    /* adjust size */
    border-radius: 5px;
}

.hm__cat-img {
    position: relative;
    width: 60px;
    height: 60px;
    overflow: hidden;
}

/* Show GIF animation only on the first .hm__cat-img */
.home_category_slider .col-sm-1.col-4:first-of-type .hm__cat-img {
  background: url('/assets/images/paricle_slow.gif') center/cover no-repeat;
}

/* Keep your image visible above background */
.hm__cat-img img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* Animate the gradient background */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Optional: subtle bounce effect */
.hm__app-downloader a img {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.kamm_yahi {
    padding-bottom: 60px;
}

@media (max-width: 1440px) {
    div#categories-container .col-sm-1.col-4 {
        max-width: calc(10% - 28px) !important;
        min-width: calc(10% - 28px) !important;
    }
}

@media (max-width: 1280px) {

    div#categories-container .col-sm-1.col-4 {
        max-width: calc(12.5% - 27px) !important;
        min-width: calc(12.5% - 27px) !important;
    }

    .kaam_section span {
        font-size: 50px;
    }

    .categories-sub-container {
        gap: 16px;
        justify-content: space-between;
        flex-wrap: nowrap !important;
        overflow-x: scroll;
    }

    /* .container-best-on-rent .bestonrent-img {
        width: 25%;
    } */

    #servicesContainer .row {
        flex-wrap: nowrap !important;
        overflow-x: hidden;

    }
}

@media (max-width: 1100px) {
    .home_slide_sec {
        padding-top: 75px;
    }

    .hr_banner_column h1 {
        font-size: 30px;
        line-height: 40px;
        padding: 0;
    }



    .main_slick>.slick-slider {

        padding-left: 0;
    }

    .shop_service_main {
        padding: 0 30px !important;
    }

}



@media (max-width: 1024px) {
    .hm__cat-img {
    width: 50px;
    height: 50px;

}
    .home_slide_sec {
        padding-top: 50px;
    }

    div#categories-container .col-sm-1.col-4 {
        max-width: calc(16.6666666667% - 27px) !important;
        min-width: calc(16.6666666667% - 27px) !important;
    }

    .servicepro_section .col {
        padding: 0;
        margin-left: 20px !important;
        margin-right: 1px;
    }

    .hr_buy_what_section,
    .section.we_connect_section,
    .section.we_connect_section {
        padding: 50px 0 50px 0;
    }

    .hm__app-downloader {
        padding-bottom: 0;
    }

    .hr_banner_column_left {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 30px;
        width: 100%;
    }

    .hr_banner_section .slick-slide {
        flex-direction: column;
        /* padding: 20px 30px 0 30px; */
    }

    .hr_banner_column h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .shop_service_left,
    .shop_service_slider,
    .categories-container.best_rent_left,
    .best_rent_right {
        width: 50%;
    }

    section.kamm_yahi {
        margin-top: 100px;
    }

    .hm__servicepro-sec {
        margin: 50px 0 0 0;
    }

    .icon_text_section .footer-note {
        margin-top: 70px;
    }

    .services-grid .slick-dots {
        bottom: -40px;

    }

    .we_connect_col.slick-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .we_connect_bottom_main {
        width: 100%;
    }

    p.pright span {
        margin-top: 40px;
    }

    .right::before {
        top: 30px;

    }

    /* .servicepro_section {
        padding-left: 10px;
    } */

    .slick-list {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .home_slide_sec>div {
        padding-left: 20px;
        padding-right: 30px;
    }

    .main_slick>.slick-slider {
        padding-left: 20px;
    }

    .kaam_section img {

        min-height: 230px;
    }

    .kaam_section span {
        font-size: 32px;
    }

    .servicepro_section {
        display: block !important;

    }

    /* .servicepro_section .col-sm-3 {
        width: auto !important;
        padding: 0;
    } */



    .hr_buy_what_main .slick-slide {
        min-height: 260px;
    }

    .hr_buy_what_main .slick-dots {
        bottom: -35px;
    }

    .person-image {
        min-height: 230px;
    }

    .buy_dream,
    .buy_service,
    .buy_rent {
        min-height: 230px;
    }

    .hr_buy_what_main .slick-track {
        display: flex;
    }

    /* .container-best-on-rent .bestonrent-img {
        width: 35%;
    } */

    .hm__busines-sec-main {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .home_category_slider {
        width: 100%;
    }

    .home_slide_sec_more {
        width: 100%;
        justify-content: center;
    }

    .hm__busines-sec-main {
        grid-template-columns: 1fr 1fr;
    }

    .home_slide_sec {
        padding-left: 20px;
        padding-right: 20px;
    }

    .row.shop_service_slider.slick-slider {
        padding: 0 30px 0 60px;
    }


    .container-best-on-rent .bestonrent-img img {
        height: 200px;
    }

    img.banner_ing {
        max-width: 150px;
    }
}




@media (max-width: 767px) {
    .home_slide_sec_more .hm__icon-img {
        background-color: transparent;
        transform: rotate(90deg);
        margin: 0;
        width: 100%;
    }

    .hr_banner_column {

        margin-top: 30px;
    }

    .icon_text_section {
        padding: 50px 0 70px 0;
    }

    .services-grid .slick-dots {
        bottom: -60px;
    }

    .main_slick>.row {
        gap: 15px;
    }

    section.hr_banner_section {
        margin-top: 0;
    }

    .categories-sub-container {
        flex-direction: column;
        margin-bottom: 0 !important;
    }

    #servicesContainer .row {
        overflow-y: hidden;
    }

    .shop_service_slider .slick-slide {
        margin-right: 0 !important;
    }

    .shop_service_slider {
        margin-left: -20px;
        width: calc(100% + 40px);
        max-width: 100vw;
    }

    .categories-sub-container button.slick-prev,
    .shop_service_slider button.slick-prev,
    .categories-sub-container .slick-next,
    .shop_service_slider button.slick-next {
        display: none !important;
    }

    .hr_banner_column img {
        border-radius: 20px;
        width: 100%;
        height: auto;
        min-height: 170px;
        object-fit: cover;
        object-position: left center;
    }

    .kaam_mob {
        display: block;
    }

    .kaam_desk,
    .kaam_section p {
        display: none;
    }

    .hr_banner_column_left {
        gap: 20px;
    }



    .hr_banner_column h1 {
        font-size: 27px;
        line-height: 35px;
    }

    .main_slick .row {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        -ms-overflow-style: none;
    }

    div#categories-container .col-sm-1.col-4 {
        width: 100%;
        display: inline-flex;
        align-items: center;
        padding: 0;
        justify-content: center;
        flex: unset !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .wrap-mobile {
        display: flex;
        flex-direction: row-reverse;
    }

    .person-image {
        min-height: 210px;
    }

    .buy_dream,
    .buy_service,
    .buy_rent {
        min-height: 210px;
    }

    .shop_service_slider button.slick-prev {
        left: 16px;
    }

    .shop_service_slider button.slick-next {
        right: -14px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .row.shop_service_slider.slick-slider {
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .best_rent_left .slick-slide,
    .shop_service_slider .slick-slide {
        padding-left: 0 !important;
        padding-right: 0;
        z-index: 0;
    }

    .shop_service_main {
        padding-right: 0 !important;
    }

    .categories-container div#best-on-rent-dynamic-container,
    .shop_service_slider {
        padding-left: 0 !important;
        padding-right: 0;
    }

    .categories-sub-container {
        overflow: visible;
    }

    .best_rent_section>.container {
        padding-right: 20px;
    }

    /* .best_rent_section>.container .best_rent_right,   .shop_service_main .shop_service_left {
        padding-right: 20px;
    } */


    .shop_service_slider .slick-arrow,
    .categories-sub-container .slick-arrow {
        z-index: 1;
    }

    .shop_service_main {
        padding: 0 20px !important;
    }

    section.kamm_yahi {
        margin-top: 0;
    }

    .hm__servicepro-sec {
        overflow: hidden;
    }

    .categories-container.best_rent_left {
        width: 100%;
        overflow: hidden;
    }

    .best_rent_left .slick-slider,
    .shop_service_slider .slick-slider {
        overflow: hidden;
        padding: 0px 20px;
        width: auto;
        justify-content: center;
    }

    /* .row.shop_service_slider.slick-slider {
        padding: 0 20px;
    } */

    .best_rent_right,
    .shop_service_slider {
        width: 100%;
    }

    .best_rent_left,
    .shop_service_left {
        width: 100%;
        margin-top: 0;
    }

    .best_rent_section .container {
        flex-direction: column;
    }

    .shop_service_main {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .best_rent_section .container {
        gap: 40px;
    }

    .row.hm__busines-sec {
        padding-left: 15px;
        padding-right: 15px;
    }

    p.pright span {
        margin-top: 30px;
    }

    .left::before {
        top: -15px;
        left: -20px;
        width: 20px;
        height: 20px;
    }

    .right::before {
        top: 20px;
        right: -20px;
        width: 20px;
        height: 20px;
    }

    .trending_slider {
        padding-left: 10px;
    }

    .home_slide_sec>div {
        display: flex;
        /* flex lagana zaroori */
        flex-direction: row;
        /* "flex" valid value nahi hai */
        gap: 10px;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        /* auto better hai */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        overflow-y: hidden;
    }


    .kaam_section span {
        font-size: 21px;
    }

    .kaam_section img {

        min-height: 170px;
    }

    .hm__app-download_left {
        width: 100% !important;
    }

    .hm__app-download_right {
        width: 100% !important;
    }

    .home_slide_sec {
        padding-top: 0;
    }

    .desk_header_logo a.btn.hm__book-apoinment {
        padding: 12px;
    }

    .home_slide_sec {

        margin-top: 20px;
    }

    .main_slick>.slick-slider {

        padding-left: 0;
    }

    .main_slick .col-4 {
        width: auto !important;
    }


    .search-bar-container.mobile {
        display: block;
        margin: 0 15px 0 15px !important;
        width: auto !important;
    }

    .search-bar-container.desktop {
        display: none;
    }

    .home_category_slider .slick-slide {
        min-height: 50px;
        max-height: 50px;
    }

    .home_slide_sec a.category-link {
        gap: 8onpx;
        flex-direction: column;
        padding: 0;
    }

    .hm__cat-img {
        width: 54px;
        height: 54px;
        border: 1px solid #907676;
        padding: 5px;
    }



    .home_slide_sec>div {
        /* padding-top: 15px; */
        padding: 50px 0 0 0;
    }

    .home_category_slider .slick-slide {

        margin-left: 6px;
        margin-right: 6px;

    }

    .home_slide_sec {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hm__busines-sec-main {
        grid-template-columns: 1fr;
    }

    .hm__banner-desc {
        top: 29%;
        font-size: 20px;
    }

    .hm__hero-cat {
        margin: 0 0 16px;
    }

    h2,
    .h2,
    h1,
    .h1 {
        font-size: 26px;
        line-height: 40px;
    }

    .categories-sub-container {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    /* .container-best-on-rent .bestonrent-img {
        width: 60%;
    } */

    .h-50 {
        height: 25% !important;
    }

    .hm__servicepro-sec .row {
        gap: 16px;
        margin-left: 5 px;
    }

    #bestToBuyContainer {
        gap: 16px;
    }

    .hm__appdownload-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .hm__tranding-img {
        height: 130px;
    }

    .hm__join-business {
        margin: 40px 0 0 0;
    }

    .hm__join-business .container {
        flex-wrap: wrap;
        gap: 0;
        margin: 0 !important;
    }

    .hm__tranding-sec span {
        padding: 4px 15px;
        font-size: 14px;
    }

    .categories-sub-container {
        flex-wrap: nowrap !important;
        overflow-x: scroll;
    }

    .hm__icon-img {
        width: 30px;
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .h-50 {
        height: 100% !important;
    }

    .hm__service-img {
        height: 195px;
    }

    .hm__service-img img {
        width: 100%;
        height: 100%;
    }
}