

/* Properties and Cities Section */
.properties__cities__section {
    padding: 40px 0;
    background: #fff;
}

.properties__cities__grid {
    display: grid;
    grid-template-columns: 80% 20%;
    gap: 40px;
    align-items: start;
}

.properties__column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.property__slider__row {
    position: relative;
}

.row__header {
    margin-bottom: 24px;
}

    .row__header h3 {
        font-size: 24px;
        font-weight: 700;
        color: #121212;
        margin: 0;
    }

/* Property Cards */
.properties__cities__section .property__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-height: 0;
}

    .properties__cities__section .property__card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

.properties__cities__section .card__image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}

    .properties__cities__section .card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.properties__cities__section .rera__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    border: 1px solid #05379a;
    border-radius: 20px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

    .properties__cities__section .rera__badge svg {
        width: 12px;
        height: 12px;
    }

    .properties__cities__section .rera__badge span {
        font-size: 11px;
        font-weight: 600;
        color: #05379a;
    }

.properties__cities__section .heart__icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

    .properties__cities__section .heart__icon:hover {
        background: #f5f5f5;
    }

    .properties__cities__section .heart__icon svg {
        width: 20px;
        height: 20px;
    }

.properties__cities__section .card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.properties__cities__section .card__title a {
    font-size: 14px;
    font-weight: 600;
    color: #121212;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.properties__cities__section .card__price {
    font-size: 16px;
    font-weight: 700;
    color: #05379a;
    margin: 0 0 8px 0;
}

.properties__cities__section .card__location {
    font-size: 12px;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.properties__cities__section .typology {
    margin: 0 0 12px 0;
    font-size: 11px;
    color: #05379a;
}

/* Typology pills slider (home cards + developer cards) */
.typology-slider {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.typology-track-wrapper {
    flex: 1;
    overflow-x: hidden;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}

.typology-track-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.typology-pills {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    white-space: nowrap;
}

.typology-pill {
    padding: 2px 10px;
    border-radius: 999px;
    background: #e6f0ff;
    color: #05379a;
    font-size: 11px;
    font-weight: 500;
    flex-shrink: 0;
}

.typology-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    color: #05379a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.typology-arrow.disabled {
    opacity: 0;
    cursor: default;
    pointer-events: none;
}
.typology-arrow.typology-prev{
    left: 0;
}
.typology-arrow.typology-next{
    right: 0;
}
.typology-slider.no-overflow .typology-arrow {
    display: none;
}

.properties__cities__section .card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.properties__cities__section .explore__btn {
    width: 100%;
    background: #05379a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .properties__cities__section .explore__btn:hover {
        background: #05379a;
    }

.properties__cities__section .action__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f5f5f5;
    border: none;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .properties__cities__section .action__icon:nth-child(2) {
        margin-left: auto;
    }

    .properties__cities__section .action__icon:hover {
        background: #e5e5e5;
    }

    .properties__cities__section .action__icon svg {
        width: 16px;
        height: 16px;
        stroke: #05379a;
    }

    .properties__cities__section .action__icon:nth-child(3) svg {
        stroke: #25D366;
    }
/* Cities Column */
.cities__column {
    position: relative;
}

    .cities__column .row__header {
        margin-bottom: 24px;
    }

        .cities__column .row__header h3 {
            font-size: 24px;
            font-weight: 700;
            color: #121212;
            margin: 0;
        }

/* Cities List Styles */
.cities__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.city__list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .city__list__item:hover {
        background: #f5f5f5;
    }

.city__list__image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

    .city__list__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.city__list__content {
    flex: 1;
    min-width: 0;
}

    .city__list__content h4 {
        font-size: 15px;
        font-weight: 600;
        color: #121212;
        margin: 0 0 2px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .city__list__content p {
        font-size: 13px;
        color: #666;
        margin: 0;
    }

/* Categories Column Styles */
.categories__column {
    position: relative;
}

    .categories__column .row__header {
        margin-bottom: 24px;
    }

        .categories__column .row__header h3 {
            font-size: 24px;
            font-weight: 700;
            color: #121212;
            margin: 0;
        }

/* Categories List Styles */
.categories__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category__list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .category__list__item:hover {
        background: #f5f5f5;
    }

.category__list__image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .category__list__image.flats {
        background: #EAFCF6;
    }

    .category__list__image.villas {
        background: linear-gradient(143deg, #f8feff, #e2f8ff);
    }

    .category__list__image.plots {
        background: #FFFAE2;
    }

    .category__list__image.floors {
        background: #F6F5FD;
    }

    .category__list__image.malls {
        background: #FCF3ED;
    }

    .category__list__image img {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

.category__list__content {
    flex: 1;
    min-width: 0;
}

    .category__list__content h4 {
        font-size: 15px;
        font-weight: 600;
        color: #121212;
        margin: 0 0 2px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .category__list__content p {
        font-size: 13px;
        color: #666;
        margin: 0;
    }

/* View All Button */
.view__all__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    margin-top: 8px;
    background: #05379a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s ease;
}

    .view__all__btn:hover {
        background: #042d7a;
    }

    .view__all__btn svg {
        width: 16px;
        height: 16px;
    }

/* Slider Styles */
.properties__cities__section .owl-carousel {
    position: relative;
}

    .properties__cities__section .owl-carousel .owl-item {
        display: flex;
    }

.properties__cities__section .property__card__wrapper {
    width: 100%;
    height: 100%;
}

.properties__cities__section .owl-carousel .owl-item .property__card__wrapper {
    width: 100%;
    height: 100%;
}

.properties__cities__section .owl-carousel .owl-item .property__card {
    width: 100%;
    height: 100%;
}

.properties__cities__section .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 10px;
}

.properties__cities__section #home__newly__launched__compact .owl-nav,
.properties__cities__section #home__featured__compact .owl-nav,
.properties__cities__section #home__hot__deals__compact .owl-nav,
.properties__cities__section #home__resale__deals__compact .owl-nav {
    top: 20%;
}

.properties__cities__section .owl-nav button {
    width: 40px;
    height: 40px;
    background: #fff !important;
    border: 2px solid #E0E0E0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: all;
    margin: 0 !important;
}

    .properties__cities__section .owl-nav button.owl-prev {
        left: -20px;
        position: absolute;
    }

    .properties__cities__section .owl-nav button.owl-next {
        right: -20px;
        position: absolute;
    }

    .properties__cities__section .owl-nav button:hover {
        background: #05379a !important;
        border-color: #05379a !important;
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
    }

        .properties__cities__section .owl-nav button:hover svg path {
            fill: #ffffff !important;
        }

    .properties__cities__section .owl-nav button svg {
        width: 8px;
        height: 11px;
    }

        .properties__cities__section .owl-nav button svg path {
            fill: #0C043F;
            transition: fill 0.3s ease;
        }


@media (max-width: 1024px) {
    .properties__cities__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cities__column,
    .categories__column {
        order: -1;
    }

    .cities__list,
    .categories__list {
        max-height: none;
    }
}

/* 22 July 2024 */
.home__categories__section .heading__block {
    padding-inline: 0;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .home__categories__section .heading__block::before {
        content: '';
        width: 4px;
        height: 24px;
        background: #05379a;
        border-radius: 2px;
        flex-shrink: 0;
    }

.home__categories__section .grid__row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.home__categories__section .category__card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding-top: 30px;
    min-height: 295px;
    max-height: 295px;
    overflow: hidden;
    position: relative;
}

    .home__categories__section .category__card.independent__villas {
        background: transparent linear-gradient(143deg,#f8feff,#e2f8ff) 0 0 no-repeat padding-box;
    }

    .home__categories__section .category__card.residential__plots {
        background: #FFFAE2;
    }

    .home__categories__section .category__card.builder__floors {
        background: #F6F5FD;
    }

    .home__categories__section .category__card.farm__house {
        background: #EAFCF6;
    }

    .home__categories__section .category__card.commercial__malls {
        background: #FCF3ED;
    }

        .home__categories__section .category__card.commercial__malls img {
            bottom: -30px;
        }

    .home__categories__section .category__card .title {
        padding-inline: 20px;
        color: #000;
        font-size: 20px;
        margin-bottom: 4px;
        line-height: 1.25;
        font-weight: 600;
    }

    .home__categories__section .category__card .count {
        padding-inline: 20px;
        color: #191e3b;
        margin-bottom: 20px;
    }

    .home__categories__section .category__card img {
        width: 100%;
        margin-top: auto;
        position: absolute;
        bottom: 0;
        height: auto;
        width: 100%;
        border-radius: 20px;
        transition: transform 0.3s ease;
    }

    .home__categories__section .category__card:hover img {
        transform: scale(1.05);
    }

.home__categories__section .carousel {
    display: block;
}

.home__categories__section #home__categories__slider {
    opacity: 0;
    transition: opacity 0.3s ease;
    min-height: 240px;
}

    .home__categories__section #home__categories__slider.owl-loaded {
        opacity: 1;
    }

    .home__categories__section #home__categories__slider .category__card {
        width: 100%;
        max-width: none;
    }

    .home__categories__section #home__categories__slider button {
        background: #fff;
        height: 40px;
        width: 40px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

        .home__categories__section #home__categories__slider button svg {
            height: 16px;
            width: 16px;
        }

            .home__categories__section #home__categories__slider button svg path {
                fill: #05379a;
            }

        .home__categories__section #home__categories__slider button.owl-prev {
            position: absolute;
            top: 50%;
            left: -25px;
        }

        .home__categories__section #home__categories__slider button.owl-next {
            position: absolute;
            top: 50%;
            right: -25px;
        }

.top__developers__section {
    padding: 48px 0 32px;
    background: #f8fafc;
    overflow: hidden;
}

    .top__developers__section .heading__block {
        padding-inline: 0;
        margin-bottom: 32px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .top__developers__section .heading__block::before {
            content: '';
            width: 4px;
            height: 36px;
            background: #05379a;
            border-radius: 2px;
        }

        .top__developers__section .heading__block .title {
            font-size: 32px;
            font-weight: 700;
            color: #121212;
            margin: 0;
        }

.developers__marquee__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.marquee__row {
    display: flex;
    overflow: hidden;
    width: 100%;
    gap: 16px;
}

.marquee__content {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    animation: marquee-left 120s linear infinite;
}

.marquee__right .marquee__content {
    animation: marquee-right 120s linear infinite;
}

.developer__logo__card {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

    .developer__logo__card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: #d1d5db;
    }

    .developer__logo__card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.developers__more__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 15px;
    color: #05379a;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s ease;
    width: max-content;
    border-bottom: 1px solid #05379a;
    border-radius: 50px;
    padding: 8px 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(5, 55, 154, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #05379a;
    border-radius: 50px;
    padding: 8px 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(5, 55, 154, 0.1);
    transition: all 0.3s ease;
    margin-inline: auto;
}

    .developers__more__text svg {
        width: 16px;
        height: 16px;
        stroke: #05379a;
        transition: all 0.3s ease;
    }

    .developers__more__text:hover {
        color: #042d7a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
    }

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 16px));
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(calc(-100% - 16px));
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause marquee on hover */
.marquee__row:hover .marquee__content {
    animation-play-state: paused;
}

.resale__properties__section {
    position: relative;
    padding-bottom: 10px;
    background: #F0F9FF;
}

    .resale__properties__section .container {
        border-radius: 20px;
    }

    .resale__properties__section .heading__block {
        padding-inline: 0;
        margin-bottom: 0px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .resale__properties__section .heading__block::before {
            content: '';
            width: 4px;
            height: 32px;
            background: #05379a;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .resale__properties__section .heading__block h2 {
            font-size: 32px;
            font-weight: 700;
        }

    .resale__properties__section #resale__properties__slider .owl-stage {
        padding-block: 20px;
    }

    .resale__properties__section .card {
        border: none;
        box-shadow: none;
        color: #000;
        display: block;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
    }

        .resale__properties__section .card .thumbnail__image {
            position: relative;
            width: 100%;
        }

            .resale__properties__section .card .thumbnail__image .photos__count {
                position: absolute;
                z-index: 2;
                bottom: 10px;
                left: 10px;
                display: flex;
                align-items: center;
                width: 100%;
                gap: 8px;
                background: rgba(12, 14, 28, .76);
                width: max-content;
                border-radius: 40px;
                padding: 2px 12px;
                height: 24px;
            }

                .resale__properties__section .card .thumbnail__image .photos__count img {
                    width: 16px;
                    height: 16px;
                    min-height: 16px;
                }

                .resale__properties__section .card .thumbnail__image .photos__count span {
                    color: #fff;
                }

            .resale__properties__section .card .thumbnail__image:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                width: 100%;
                height: 100%;
                border-radius: 10px;
                /*background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .19) 0%, #000 100%) 0 0 no-repeat padding-box;*/
            }

            .resale__properties__section .card .thumbnail__image img {
                width: 100%;
                min-height: 156px;
                height: 156px;
                object-fit: cover;
                border-radius: 12px 12px 0 0;
            }

        .resale__properties__section .card .status {
            display: flex;
            left: -4px;
            position: absolute;
            top: 10px;
            z-index: 1;
        }

            .resale__properties__section .card .status .before {
                background: url(/assets/images/status-new-launch-before.svg) no-repeat;
                height: 25px;
                width: 4px;
            }

            .resale__properties__section .card .status .main {
                background: #05379a;
                color: #fff;
                height: 21px;
                font-size: 12px;
                padding-inline: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .resale__properties__section .card .status .after {
                background: url(/assets/images/status-new-launch-after.svg) no-repeat;
                height: 21px;
                width: 10px;
            }

        .resale__properties__section .card .card__content {
            padding: 12px 20px;
            width: 100%;
        }

        .resale__properties__section .card .name {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.25;
            color: #000;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .resale__properties__section .card .location {
            color: #191e3b;
            font-weight: 400;
            font-size: 14px;
        }

        .resale__properties__section .card .price {
            margin-top: 4px;
            color: rgba(9, 29, 65, 1);
            font-weight: 600;
            font-size: 18px;
        }

            .resale__properties__section .card .price span {
                font-size: 16px;
            }

    .resale__properties__section #resale__properties__slider button {
        background: #fff;
        height: 40px;
        width: 40px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

        .resale__properties__section #resale__properties__slider button svg {
            height: 16px;
            width: 16px;
        }

            .resale__properties__section #resale__properties__slider button svg path {
                fill: #05379a;
            }

        .resale__properties__section #resale__properties__slider button.owl-prev {
            position: absolute;
            top: calc(50% - 40px);
            left: -25px;
        }

        .resale__properties__section #resale__properties__slider button.owl-next {
            position: absolute;
            top: calc(50% - 40px);
            right: -25px;
        }

.home__web__stories__section .heading__block {
    margin-bottom: 24px;
    padding-inline: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .home__web__stories__section .heading__block::before {
        content: '';
        width: 4px;
        height: 32px;
        background: #05379a;
        border-radius: 2px;
        flex-shrink: 0;
    }

    .home__web__stories__section .heading__block h2 {
        font-size: 32px;
        font-weight: 600;
        padding-bottom: 4px;
        line-height: 1.25;
    }

    .home__web__stories__section .heading__block p {
        color: #666;
        font-weight: 400;
    }

.home__web__stories__section #home__web__stories button {
    background: #fff;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .home__web__stories__section #home__web__stories button.owl-prev {
        position: absolute;
        top: calc(50% - 20px);
        left: -25px;
    }

    .home__web__stories__section #home__web__stories button.owl-next {
        position: absolute;
        top: calc(50% - 20px);
        right: -25px;
    }

    .home__web__stories__section #home__web__stories button svg {
        height: 16px;
        width: 16px;
    }

        .home__web__stories__section #home__web__stories button svg path {
            fill: #05379a;
        }

.home__web__stories__section .owl-carousel .owl-stage {
    padding-top: 20px;
}

.home__web__stories__section .card {
    position: relative;
    border: none;
    padding-top: 20px;
    overflow: hidden;
    transition: transform .3s ease,box-shadow .3s ease;
}

    .home__web__stories__section .card:hover {
        transform: translateY(-2px);
    }

    .home__web__stories__section .card::before {
        width: calc(100% - 24px);
        height: 10px;
        border-radius: 10px 10px 0 0;
        background-color: #DCDCDC;
        content: '';
        top: -10px;
        left: 12px;
        position: absolute;
        z-index: 2;
    }

    .home__web__stories__section .card::after {
        width: calc(100% - 42px);
        height: 20px;
        border-radius: 10px 10px;
        background-color: #F5F5F5;
        content: '';
        top: -20px;
        left: 24px;
        position: absolute;
        z-index: 1;
    }

    .home__web__stories__section .card svg {
        position: absolute;
        top: 30px;
        z-index: 4;
        right: 10px;
    }

    .home__web__stories__section .card .image {
        min-height: 296px;
        height: 296px;
        z-index: 3;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

        .home__web__stories__section .card .image img {
            height: 296px;
        }

        .home__web__stories__section .card .image::before {
            background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #000);
            background-blend-mode: multiply;
            content: "";
            transform: rotate(-180deg);
            display: block;
            height: 45px;
            width: 100%;
            position: absolute;
            top: 0;
            border-radius: 4px;
            -webkit-border-radius: 4px;
            z-index: 1;
        }

        .home__web__stories__section .card .image img {
            width: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

    .home__web__stories__section .card .content {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 20px;
        padding-bottom: 10px;
        background-image: linear-gradient(180deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 80%));
        z-index: 3;
        border-radius: 10px;
    }

        .home__web__stories__section .card .content .webstory__title {
            font-size: 15px;
            color: #fff;
            font-weight: 500;
            line-height: 1.4;
        }

.newly__launched__section {
    background: #F0F9FF;
}

    .newly__launched__section .heading__block {
        padding-inline: 0;
        margin-bottom: 32px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .newly__launched__section .heading__block::before {
            content: '';
            width: 4px;
            height: 32px;
            background: #05379a;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .newly__launched__section .heading__block h2 {
            font-size: 32px;
            font-weight: 700;
        }

.home__categories__section .heading__block h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    color: #121212;
}
/*.newly__launched__section .custom-carousel{
    display:flex;
}*/
.newly__launched__section #newly__launched__slider button {
    background: #fff;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .newly__launched__section #newly__launched__slider button.owl-prev {
        position: absolute;
        top: calc(50% - 40px);
        left: -25px;
    }

    .newly__launched__section #newly__launched__slider button svg {
        height: 16px;
        width: 16px;
    }

        .newly__launched__section #newly__launched__slider button svg path {
            fill: #05379a;
        }

    .newly__launched__section #newly__launched__slider button.owl-next {
        position: absolute;
        top: calc(50% - 40px);
        right: -25px;
    }

.newly__launched__section .owl-stage-outer {
    padding-bottom: 20px;
}

.newly__launched__section .card {
    border: none;
    color: #000;
    background: #fff;
    position: relative;
    text-decoration: none;
    background: #fff;
    display: block;
    border-radius: 12px;
    box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
}

    .newly__launched__section .card .card__content {
        padding: 12px 20px;
        display: flex;
        align-items: flex-start;
        padding-right: 40px;
    }

        .newly__launched__section .card .card__content .developer__icon img {
            width: 50px;
            height: auto;
            position: absolute;
            right: 20px;
            bottom: 16px;
        }

    .newly__launched__section .card .status {
        display: flex;
        left: -4px;
        position: absolute;
        top: 10px;
        z-index: 1;
    }

        .newly__launched__section .card .status .before {
            background: url('/assets/images/status-new-launch-before.svg') no-repeat;
            height: 25px;
            width: 4px;
        }

        .newly__launched__section .card .status .main {
            background: #05379a;
            color: #fff;
            height: 21px;
            font-size: 12px;
            padding-inline: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newly__launched__section .card .status .after {
            background: url('/assets/images/status-new-launch-after.svg') no-repeat;
            height: 21px;
            width: 10px;
        }

    .newly__launched__section .card .thumbnail__image {
        position: relative;
        width: 100%;
    }

        .newly__launched__section .card .thumbnail__image:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        .newly__launched__section .card .thumbnail__image img {
            width: 100%;
            border-radius: 12px 12px 0 0;
            min-height: 156px;
            height: 156px;
            object-fit: cover;
        }

        .newly__launched__section .card .thumbnail__image .photos__count {
            position: absolute;
            z-index: 2;
            bottom: 10px;
            right: 10px;
            display: flex;
            align-items: center;
            width: 100%;
            gap: 8px;
            background: rgba(12, 14, 28, .76);
            width: max-content;
            border-radius: 40px;
            padding: 2px 12px;
            height: 24px;
        }

            .newly__launched__section .card .thumbnail__image .photos__count img {
                width: 16px;
                height: 16px;
                min-height: 16px;
            }

            .newly__launched__section .card .thumbnail__image .photos__count span {
                color: #fff;
            }

    .newly__launched__section .card .card__content .name {
        font-size: 15px;
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .newly__launched__section .card .card__content .about__property {
        font-size: 13px;
        color: #8c94a5;
        margin-bottom: 8px;
        min-height: 36px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .newly__launched__section .card .card__content .price {
        color: rgba(9,29,65,1);
        font-weight: 600;
        font-size: 18px;
    }

.home__services__section .heading__block {
    margin-bottom: 32px;
    padding-inline: 0;
}

    .home__services__section .heading__block .title {
        font-size: 32px;
        margin-bottom: 8px;
        color: #05379a;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .home__services__section .heading__block .title::before {
            content: '';
            width: 4px;
            height: 32px;
            background: #05379a;
            border-radius: 2px;
            flex-shrink: 0;
        }

    .home__services__section .heading__block p {
        font-size: 15px;
        color: #666;
        padding-top: 0;
    }

.home__services__section .grid__row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.home__services__section .service__card {
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
    cursor: pointer;
}

    .home__services__section .service__card .card__header {
        display: flex;
        align-items: start;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .home__services__section .service__card .icon img {
        width: 40px;
    }

    .home__services__section .service__card .card__header .about {
        text-align: left;
    }

        .home__services__section .service__card .card__header .about h3 {
            color: rgba(9,29,65,1);
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .home__services__section .service__card .card__header .about p {
            font-size: 15px;
            color: #000;
            opacity: 0.8;
        }

    .home__services__section .service__card .view__more {
        display: flex;
        align-items: center;
        width: max-content;
        gap: 8px;
        font-weight: 600;
        font-size: 13px;
        color: #05379a;
        background-color: rgb(239 246 255);
        border: 1px solid rgb(219 234 254);
        padding: 0 16px;
        border-radius: 6px;
        transition: all 0.3s ease-out;
        height: 40px;
    }

        .home__services__section .service__card .view__more svg {
            width: 12px;
            transition: fill 0.3s ease-out;
            stroke: #05379a;
        }

        .home__services__section .service__card .view__more:hover {
            background-color: #05379a;
            border-color: #05379a;
            color: #fff;
        }

            .home__services__section .service__card .view__more:hover svg {
                stroke: #fff;
            }

    .home__services__section .service__card:hover {
        box-shadow: 0 3px 15px 0 rgba(96.9,96.9,96.9,.2);
        transform: translateY(-5px);
    }

    .home__services__section .service__card img {
        margin-bottom: 12px;
    }

    .home__services__section .service__card h4 {
        font-size: 20px;
        color: #000;
        font-weight: 700;
        letter-spacing: .5px;
    }

/* Why BrokerSaathi Section */
.why__brokersaathi__section {
    padding: 60px 0;
    background-color: #f8fafc;
}

    .why__brokersaathi__section .why__brokersaathi__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        border-radius: 12px;
        padding: 24px;
        background: #fff;
    }

    .why__brokersaathi__section .why__content {
        padding-right: 20px;
    }

    .why__brokersaathi__section .why__title {
        font-size: 36px;
        font-weight: 700;
        color: #121212;
        margin-bottom: 24px;
        line-height: 1.2;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .why__brokersaathi__section .why__title::before {
            content: '';
            width: 4px;
            height: 36px;
            background: #05379a;
            border-radius: 2px;
            flex-shrink: 0;
        }

    .why__brokersaathi__section .why__description {
        font-size: 15px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 16px;
        text-align: justify;
    }

    .why__brokersaathi__section .why__features__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .why__brokersaathi__section .why__feature__card {
        background: #fff;
        border-radius: 12px;
        padding: 24px 20px;
        text-align: center;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

        .why__brokersaathi__section .why__feature__card:hover {
            box-shadow: 0 8px 24px rgba(5, 55, 154, 0.15);
            transform: translateY(-4px);
        }

    .why__brokersaathi__section .feature__icon {
        width: 64px;
        height: 64px;
        background: #f0f5ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        margin-top: -40px;
    }

    .why__brokersaathi__section .why__feature__card h4 {
        font-size: 15px;
        font-weight: 600;
        color: #121212;
        line-height: 1.4;
        margin: 0;
    }

/* Why BrokerSaathi Section Responsive */
@media (max-width: 1024px) {
    .why__brokersaathi__section .why__brokersaathi__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why__brokersaathi__section .why__content {
        padding-right: 0;
    }

    .why__brokersaathi__section .why__title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .why__brokersaathi__section {
        padding: 40px 0;
    }

        .why__brokersaathi__section .why__features__grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .why__brokersaathi__section .why__feature__card {
            padding: 16px 12px;
        }

        .why__brokersaathi__section .feature__icon {
            width: 52px;
            height: 52px;
        }

            .why__brokersaathi__section .feature__icon svg {
                width: 24px;
                height: 24px;
            }

        .why__brokersaathi__section .why__feature__card h4 {
            font-size: 13px;
        }

        .why__brokersaathi__section .why__title {
            font-size: 24px;
        }

        .why__brokersaathi__section .why__description {
            font-size: 14px;
        }

    .property__slider__row {
        max-width: calc(100vw - 40px);
        width: calc(100vw - 40px);
    }

    .why__brokersaathi__section .why__brokersaathi__grid {
        padding: 24px 12px;
    }
}

.home__cities__section .heading__block {
    padding-inline: 0;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .home__cities__section .heading__block::before {
        content: '';
        width: 4px;
        height: 32px;
        background: #05379a;
        border-radius: 2px;
        flex-shrink: 0;
    }

    .home__cities__section .heading__block .pre__heading {
        color: #666;
        padding-bottom: 4px;
    }

    .home__cities__section .heading__block .title {
        font-size: 32px;
        text-align: left;
    }

.home__cities__section .carousel {
    padding-bottom: 20px;
    display: flex;
}

.home__cities__section #home__cities__slider button {
    background: #fff;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .home__cities__section #home__cities__slider button.owl-next {
        position: absolute;
        top: calc(50% - 20px);
        right: -25px;
    }

    .home__cities__section #home__cities__slider button.owl-prev {
        position: absolute;
        top: calc(50% - 20px);
        left: -25px;
    }

    .home__cities__section #home__cities__slider button svg {
        height: 16px;
        width: 16px;
    }

        .home__cities__section #home__cities__slider button svg path {
            fill: #05379a;
        }

.home__cities__section .city__card {
    position: relative;
    border-radius: 10px;
    display: block;
    overflow: hidden;
    transition: .3s ease;
    min-height: 296px;
}

    .home__cities__section .city__card img {
        min-height: 296px;
        object-fit: cover;
        transition: .3s ease;
    }

    .home__cities__section .city__card:hover img {
        transform: scale(1.05);
    }

    .home__cities__section .city__card .content {
        position: absolute;
        background: linear-gradient(to top,rgba(0,0,0,.6) 0,rgba(0,0,0,.6) calc(100% - 32px),rgba(0,0,0,0) 100%);
        bottom: 0;
        padding: 20px;
        color: #fff;
        width: 100%;
        padding-bottom: 10px;
        z-index: 1;
    }

        .home__cities__section .city__card .content h3 {
            font-size: 20px;
            font-weight: 600;
        }

        .home__cities__section .city__card .content .total__properties {
            font-size: 12px;
        }

.app__section .container {
    display: flex;
    padding-bottom: 0;
    position: relative;
    border-radius: 10px;
    background: transparent linear-gradient(143deg, #e2f8ff, #f8feff) 0 0 no-repeat padding-box;
    background-repeat: no-repeat;
    background-size: cover;
}

.app__section__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    width: 100%;
    padding-inline: 50px;
    align-items: center;
    z-index: 2;
    position: relative;
}

    .app__section__row h3 {
        font-size: 48px;
        font-weight: 600;
        line-height: 1.25;
        margin-bottom: 20px;
        color: #05379a;
    }

    .app__section__row p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .app__section__row ul li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-bottom: 16px;
    }

        .app__section__row ul li svg {
            width: 16px;
        }

    .app__section__row .buttons__wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 32px;
    }

    .app__section__row a {
        box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
        border-radius: 10px;
        padding: 15px 25px;
        justify-content: center;
        background: #fff;
        min-width: 188px;
        max-width: 188px;
        letter-spacing: 0;
        font-weight: 600;
        color: #1d113e;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .app__section__row a svg path {
            fill: #1d113e;
        }

    .app__section__row .app__image {
        height: 100%;
        padding-top: 20px;
    }

        .app__section__row .app__image img {
            width: 100%;
            height: 100%;
        }


@media (max-width:800px) {

    .home__cities__section .city__card {
        width: 160px;
        min-height: 210px;
    }

        .home__cities__section .city__card img {
            min-height: 210px;
        }

    .home__cities__section .heading__block .title,
    section.home__categories__section h2,
    .newly__launched__section .heading__block h2,
    .home__services__section .heading__block .title,
    .resale__properties__section .heading__block h2,
    .home__web__stories__section .heading__block h2,
    .top__developers__section .heading__block .title {
        font-size: 24px;
        text-align: left;
        color: #000;
        font-weight: 800;
        justify-content: center;
    }

    .home__cities__section .heading__block::before,
    .newly__launched__section .heading__block::before,
    .home__services__section .heading__block::before,
    .resale__properties__section .heading__block::before,
    .home__web__stories__section .heading__block::before,
    .top__developers__section .heading__block::before {
        height: 28px;
    }

    .home__categories__section .heading__block::before {
        height: 22px;
    }

    .why__brokersaathi__section .why__title::before {
        height: 30px;
    }

    .home__categories__section .category__card {
        width: 100%;
        min-height: 260px;
        max-height: 260px;
    }

    .home__services__section .grid__row {
        column-gap: 24px;
        row-gap: 40px;
    }

    .home__services__section .service__card .card__header .about p {
        font-size: 14px;
        text-align: center;
    }

    .home__services__section .heading__block p {
        font-size: 15px;
    }

    .home__services__section .service__card {
        padding: 0;
    }

        .home__services__section .service__card .card__header .about h3 {
            font-size: 18px;
        }
}


/* *********** Media Queries ************** */
@media (max-width:600px) {
    .banner__section .banner__image .owl-dots {
        bottom: 40px;
    }

    .banner__section .banner__image .owl-nav button.owl-prev {
        left: 20px;
    }

    .banner__section .banner__image .owl-nav button.owl-next {
        right: 20px;
    }

    .banner__section .banner__image .owl-nav button {
        height: 36px;
        width: 36px;
    }

    .home__layout section {
        padding-block: 0 30px;
    }

    .cities__column .row__header h3, .categories__column .row__header h3, .row__header h3 {
        text-align: center;
    }

    .view__all__btn {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    .cities__list, .categories__list {
        max-height: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-inline: 0;
    }

    .city__list__item, .category__list__item {
        flex-direction: column;
    }

    .city__list__content h4, .category__list__content h4 {
        text-align: center;
    }

    .home__layout section .owl-nav button.disabled {
        opacity: 0;
    }

    .category__list__content p {
        text-align: center;
    }

    .home__services__section .service__card .view__more {
        margin-inline: auto;
    }

    .home__services__section .service__card .icon {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .home__cities__section .heading__block .title, section.home__categories__section h2, .newly__launched__section .heading__block h2, .home__services__section .heading__block .title, .resale__properties__section .heading__block h2, .home__web__stories__section .heading__block h2, .top__developers__section .heading__block .title {
        font-size: 20px;
    }

    .home__cities__section .heading__block::before,
    .newly__launched__section .heading__block::before,
    .resale__properties__section .heading__block::before,
    .home__web__stories__section .heading__block::before,
    .top__developers__section .heading__block::before {
        height: 24px;
    }

    .home__services__section .heading__block .title::before {
        height: 24px;
    }

    .home__categories__section .heading__block::before {
        height: 20px;
    }

    .why__brokersaathi__section .why__title::before {
        height: 26px;
    }

    .heading__block p {
        font-size: 14px;
    }

    .home__categories__section .category__card .title {
        font-size: 15px;
    }

    .home__categories__section .category__card .count {
        font-size: 13px;
    }

    .newly__launched__section .heading__block {
        margin-bottom: 20px;
    }

    .home__services__section .grid__row {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .home__services__section .service__card {
        background: #F7F7F7;
        padding: 16px;
    }

        .home__services__section .service__card .card__header .about h3 {
            margin-bottom: 8px;
            text-align: center;
        }

    .resale__properties__section .card .location {
        font-size: 13px;
    }

    .resale__properties__section #resale__properties__slider .owl-stage {
        padding-block: 20px 0;
    }

    .home__web__stories__section .card .image {
        min-height: 226px;
        height: 206px;
    }

    .resale__properties__section .card .price {
        font-size: 16px;
        font-weight: 600;
    }

    .home__web__stories__section .card svg {
        top: 10px;
    }

    .home__web__stories__section .card .content {
        padding: 12px;
        width: 100%;
    }

        .home__web__stories__section .card .content .webstory__title {
            font-size: 14px;
            width: 100%;
        }

    .top__developers__section .heading__block {
        margin-bottom: 20px;
        justify-content: center;
    }

    .top__developers__section {
        padding: 32px 0 24px;
    }

        .top__developers__section .heading__block .title {
            font-size: 20px;
        }

        .top__developers__section .heading__block::before {
            height: 28px;
        }

    .developer__logo__card {
        width: 120px;
        height: 60px;
        padding: 12px;
    }

    .developers__marquee__wrapper {
        gap: 12px;
    }

    .marquee__content {
        gap: 12px;
    }

    .developers__more__text {
        font-size: 13px;
    }

    .home__web__stories__section .card .image img {
        height: 226px;
    }
}

/* Video Play Button Styles */
.video_play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 1000 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: auto !important;
    outline: none;
}

    .video_play_button:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background: rgba(255, 0, 0, 1);
    }

    .video_play_button:active {
        transform: translate(-50%, -50%) scale(1.05);
    }

