/*  heading-font-noto-sans*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #990033;
    --second-theme-color: #AC1E30;
    --fs: 25px;
    --text-dark: #000;
    --text-light: #fff;
    --heading-font: 35px;
    --tittle-font: 21px;
    --text-font: 23px;
    --nav-font: 17px;
    --fs-17: 17px;
    --fw-300: 300;
}

html,
body {
    font-family: "Noto Sans", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0px;
}

a {
    text-decoration: none;
}

ul {
    padding: 0px;
    list-style: none;
}

.card-main .flipped {
    transform: rotateY(180deg);
    background: #ac1e30;
    color: #fff;
}

.flip-top .card-main.flipped p {
    color: #fff;
}

@media (min-width: 768px) {
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 calc(50% - 15px);
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 56.33333333%;
    }

    .col-md-12 {
        flex: 0 0 calc(100% - 15px);
    }

    .col-md-11 {

        width: 92.33333333%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 30.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 25.33333333%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 70.33333333%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 74.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 64.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 922px) {
    .header_menu {
        display: flex;
        align-items: center;
    }

    .ast-container {
        max-width: 1312px;
        margin: 0 auto;
        padding: 0px 30px;
    }
}

/*  */
nav#navLinks {
    flex-wrap: nowrap;
}
span.build-text {
    font-weight: 400;
}

.border-radius {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.custom-logo-link img {
    width: 284px;
    height: auto;
    object-fit: contain;
}

.master-header {
    padding: 25px 0px;
    position: absolute;
    width: 100%;
    top: 0px;
    transition: all 0.3s ease;
    z-index: 99999;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.bg-dark {
    background-color: var(--text-dark);
    border-radius: 10px;
    padding: 32px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.result-sec {
    background-color: var(--text-dark);
    padding: 80px;

}

.text-center {
    text-align: center;
}

.text-start {
    text-align: start;
}

.align-items {
    align-items: center;
}

.align-items-stretch {
    align-items: stretch;
}

.d-flex {
    display: flex;
}

.flex-fill {
    flex: 1 1 auto !important
}

.fs-25 {
    font-size: 25px;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-around {
    justify-content: space-around;
}

.theme-color {
    color: var(--theme-color) !important;
}

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

.text-white {
    color: var(--text-light) !important;
}

.pe {
    padding-right: 24%;
}

.navbar {
    justify-content: space-between;
    align-content: center;
    padding-top: 0px;
}

ul {
    padding: 0px;
    list-style: none;
}

.protal-sec {
    background: #241e1f85;
    padding: 6px;
    border-radius: 5px;
    width: 142px;
    text-align: center;
    height: 35px;
    color: var(--text-light);
    font-size: var(--nav-font);
    margin-left: auto;
    white-space: nowrap;

}

.protal-sec a {
    color: var(--text-light);
    font-size: var(--nav-font);
}

/* Base styles */
#menu-main-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Menu item link */
.before-set>a {
    font-size: 16px;
    color: #fff;
    padding: 12px 30px 12px 10px;
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
    background-color: transparent;
}

/* Dropdown icon */
.drop-down-icon>a::after {
    content: "\f078";
    font-family: "FontAwesome";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #fff;
    transition: transform 0.3s ease;
}

/* Rotate when open */
.before-set.open>a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Submenu hidden by default */

.toggle-btn {
    display: none;
}

/* Submenu item */
.sub-menu li {
    margin-bottom: 12px;
}

.sub-menu li a {
    color: #000 !important;
    display: block;
    text-decoration: none;
    padding: 13px 14px;
}

.before-set:hover a {
    background: #fff;
    border-radius: 5px;
    color: #000;
}

.sub-link a {
    padding: 4px 10px;
}

.sub-link:hover a {
    background: var(--second-theme-color);
    color: #fff !important;
}

.sub-menu li a:hover {
    background: var(--second-theme-color);
    color: #fff !important;
}

.drop-down-icon:hover a::after {
    top: 16px;
    transform: rotate(180deg);
    color: #000;
}

/* Hide submenus by default on mobile */
/* @media (max-width: 991px) {
    .sub-menu {
    
        background-color: #fff;
    }

    .before-set.open .sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 10px;
    }
} */

/* Desktop behavior */
@media (min-width: 992px) {
    #menu-main-menu {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transform: scaleY(0);
        transform-origin: top;
        transition: all 0.3s ease;
        width: 208px;
        padding: 14px;
        z-index: 1000;
        background: #fff;
        border-radius: 4px;
        margin-top: 4px;
    }

    .before-set:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
    }

    .sub-menu li {
        margin-bottom: 10px;
    }
}

/* Make sure container doesn't clip dropdowns */
#menu-main-menu,
nav,
.header-wrapper {
    overflow: visible !important;
}


@media screen and (max-width: 768px) {
    .capital-section p {
        line-height: 30px !important;
        padding: 0px;
        margin-bottom: 16px;
    }

    .custon-card-sec {
        height: 293px;
    }

    .toggle-btn {
        display: block;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 30px;
        background-color: white;
        width: 200px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }
}

/*coomon-heading-clas  */
.odc-text {
    text-decoration: underline;
    color: #000;
}

.main-heading {
    font-size: var(--heading-font);
    color: var(--text-dark);
    padding-bottom: 15px;
    font-weight: bold;
    text-transform: capitalize;
}

.pb-15 {
    padding-bottom: 15px;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-40 {
    font-size: 40px;
}

.fs-30 {
    font-size: 30px;
}

.fs-500 {
    font-weight: 500;
}

.fs-17 {
    font-size: 18px !important;
}

.exp-details {
    font-size: var(--text-font);
    color: var(--text-dark);
    padding-bottom: 20px;
    line-height: 31px;
    font-weight: var(--fw-300);
}

.common-spacing {
    padding-top: 100px;
}

.plan-sec {
    margin-bottom: 104px;
}

.commence-sec-lets {
    padding-top: 18px;
    margin-top: 1px;
    display: inline-flex;
}

.sub-tittle {
    color: var(--theme-color);
    font-size: var(--tittle-font);
    font-weight: 700;
}

/*hero-banner  */
.hero-banner {
    background-image: linear-gradient(to bottom, #AC1E30, #AC1E30, #300a0f, #000000, #ffffff00);
    /* filter: drop-shadow(2px 4px 6px black);*/
}

.build-heading {
    gap: 32px;
    display: grid;
    padding-top: 193px;
    padding-bottom: 117px;
}

/* .main-viesw {
    margin-top: -25px;
} */
.build-heading h1 {
    font-size: 60px;
    color: var(--text-light);

}

.fw-300 {
    font-weight: var(--fw-300);
}

.commerce-details {
    font-size: 26px;
    color: var(--text-light);
    font-weight: 300;
    padding: 0px 60px;
}

.common-btn {
    /*     background-color: var(--text-light); */
    background-color: #241E1F;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 22px;
    padding: 15px 34px;
    width: fit-content;
    font-weight: 500;
    text-transform: capitalize;
}


.home-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.map-sec img {
    width: 97%;
}

.lets-con-link {
    white-space: nowrap;
    font-size: 20px;
    color: var(--text-light);
    border-radius: 10px;
    padding: 14px 41px;
    font-weight: 600;
    text-transform: capitalize;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.hover-red:hover {
    background-color: #241E1F;
    color: #fff;
}

.white-hover:hover {
    background-color: #fff;
    color: var(--second-theme-color);
}

.hover-block:hover {
    background-color: #ac1e30;
}

.commence-sec {
    display: flex;
    align-items: center;
    justify-content: end;
}

/*  */
.ps-section {
    background-color: var(--second-theme-color);
    padding: 80px 0px;

}

.links-section {
    display: flex;
    column-gap: 25px;
}

/* .blank-img img {
    border-radius: 10px;
    width: 97%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
} */

.house-img {
    padding: 0;
    margin: 0;
    margin-top: 80px;
    margin-bottom: -10px;
}

.house-img img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.plans-link {
    background-color: #241E1F;
}

.common-tb-spacing {
    padding: 100px 0px;
}

.main-review-sec {
    background-color: #EBEDEC;
}

.sticky {
    position: fixed;
    top: 0;
    z-index: 999;
    background: #ac1e30;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.image-slider img {
    width: 100%;
    height: auto;
    display: block;
}

/* slider */
.custon-card-sec {
    background: #fff;
    border-radius: 7px;
    padding: 20px 55px;
    height: 328px;
    position: relative;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    text-align: center;
    margin: 20px 0px;
}

/* .custon-card-sec:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
    transition: all .7s ease;
    -webkit-clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
    clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
    border-radius: 4px;
} */
.custon-card-sec:hover {
    background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
}

.custon-card-sec:hover:after {
    height: 100%;
    border-radius: 4px;
    clip-path: unset;
}

.custon-card-sec:hover .custom-stars .star {
    color: var(--text-light);
    position: relative;
    z-index: 9;
}

.custon-card-sec:hover .review-details {
    color: var(--text-light);
    position: relative;
    z-index: 9;

}

.custon-card-sec:hover .client-name {
    color: var(--text-light);
    z-index: 9;
}

.review-details {
    font-size: 20px;
    font-weight: var(--fw-300);
    color: var(--text-dark);
    padding-top: 30px;
}

.client-name {
    font-size: 17px;
    position: absolute;
    bottom: 20px;
    font-weight: var(--fw-300);
    text-align: center;
    left: 0;
    right: 0;
    width: 140px;
    margin: 0 auto;
    animation: unset;
}

.blank-video video {
    width: 100%;
    height: 414px;
    object-fit: cover;
    object-position: left center;
    border-radius: 10px;
}

.main-viesw {
    padding-left: 15px;
}

.wrapper {
    max-width: 800px;
    margin: auto;
}

.image-slider img {
    width: 100%;
    height: auto;
    display: block;
}

.image-slider .slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.slick-dots li img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.slider-section img {
    height: 435px;
    border-radius: 10px;
    object-fit: cover;
}

.slick-dots {
    bottom: -35px;
}

.slick-dots {
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 51px;
}

.client-name {
    font-size: 17px;
}

/* capital-section */
.capital-section {
    background-image: url(/wp-content/uploads/2025/07/pexels-davidmcbee-1546166-scaled.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: color;
    background-color: #ffffff2b;
}

.common-background {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: color;
    background-color: #ffffff2b;
}

.resl-sec {
    background-image: url(/wp-content/uploads/2025/07/pexels-michael-tuszynski-1134777-2157404-scaled.jpg);
    position: relative;

}

.diff-img {
    background-image: url(/wp-content/uploads/2025/07/why_commence.jpg);
}

.work-sec-details {
    display: grid;
    row-gap: 30px;
    text-align: center;
    background: #ffffffa8;
    height: 100%;
    border-radius: 10px;
    padding: 49px 91px;
}

.capital-section h2 {
    color: var(--second-theme-color);
    padding: 0px;
}

.capital-section p {
    line-height: 44px;
    padding: 0px;
}

.work-sec-details {
    display: grid;
    row-gap: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.footer-heading h4 {
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 14px;
    /*     text-align: center;
    width: 71%; */
}

.footer-link h6 {
    font-size: 19px;
    font-weight: 500;
    padding-bottom: 14px;
}

.footer-heading h5 {
    font-size: 19px;
    font-weight: 200;
    padding-bottom: 14px;
}

footer {
    background-color: #241E1F;
    color: var(--text-light);
    padding: 62px 0px;
}

footer div.ast-container div.row div.col-md-3 {
    margin-top: 10px;
}

ul#menu-footer-menu li a {
    color: var(--text-light);
    font-size: 17px;
/*     text-transform: capitalize; */
    font-weight: 200;
    position: relative;
}

ul#menu-footer-menu {
    display: grid;
    row-gap: 12px;
    position: relative;
}

ul#menu-footer-menu li a:before {
    position: absolute;
    content: '';
    background: #ac1e30;
    ;
    width: 0%;
    height: 2px;
    bottom: -2px;
}

ul#menu-footer-menu li a:hover {
    color: #ac1e30;
}

ul#menu-footer-menu li a:hover:before {
    width: 100%;
}

.socail-media-section a {
    color: var(--text-light);
    background: var(--second-theme-color);
    width: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    height: 39px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.socail-media-section ul {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 1px;
}

.footer-link {
    padding-left: 86px;
}

.adrres-section {
    display: grid;
    /* text-align: end; */
    display: flex;
    align-items: start;
    justify-content: end;
}

.footer-logo img {
    width: 71%;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.wrapper {
    padding-top: 10px;
}

.investors-cus {
    position: relative;
    /* margin-bottom: 11px; */
}

/* .investors-cus::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 8px;
    width: 23%;
    background: linear-gradient(to right, #d50a0acc, #b0172a, transparent);
    clip-path: polygon(0% 50%, 10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%);
    right: 0;
    left: 0;
    margin: 0 auto;
} */

.custom-stars {
    display: inline-block;
}

.custom-stars .star {
    color: #ffb300;
    /* Blue */
    font-size: 24px;
    margin: 0 2px;
}

.custom-stars .star:hover,
.custom-stars .star:hover~.star {
    color: #999;
}

.show-menu {
    display: block !important;
}

.toggle-btn {
    color: var(--text-light);
    background: unset;
    border: unset;
    font-size: 20px;
}


.closed-btn {
    display: none;
    color: var(--text-light);
}


.work-sec-details h2 {
    margin: 0px;
}

.build-heading span {
    display: block;
}

/* animation-section */
.custom-btn-animation {
    transition: all .3s ease;
}

.custom-btn-animation:hover {
    transition: all .3s ease;
    transform: translateY(-5px);
}

/* .slide-animation {
    animation: slide-right 2s;
    -webkit-animation: slide-right 2s;
} */

@keyframes slide-right {
    0% {
        margin-left: -100%;
    }

    100% {
        margin-left: 0;
    }
}

/* show objects being animated */
/* Animation base styles */
.animatable {
    visibility: hidden;
}

.animated {
    visibility: visible;
    animation-fill-mode: both;
    animation-play-state: running;
}

.timer-changes {
    animation-duration: 1s;
}

.time-change {
    animation-duration: 1s !important;
}

.time-changes {
    animation-duration: 5s !important;
}

.image-time-change {
    animation-duration: 1s !important;
}

.animated.moveUp {
    animation-name: moveUp;
    animation-duration: 2s;
}

@keyframes moveUp {
    0% {
        transform: translateY(40px);
    }

    100% {
        transform: translateY(0);
    }
}

.animated.bounceInLeft {
    animation-name: bounceInLeft;
    animation-duration: 2s;
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    60% {
        transform: translateX(20px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated.bounceInRight {
    animation-name: bounceInRight;
    animation-duration: 2s;
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        transform: translateX(-20px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 2s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/*  */
.put-link {
    height: 100%;
    display: flex;
    justify-content: center;
}

/* how-it-works-page css */
.investors-section {
    padding-bottom: 100px;
}

.inner-banner-section {
    background-image: linear-gradient(to bottom, #AC1E30, #AC1E30, #300a0f, #000000);
    text-align: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}

.expect-img img {
    width: 100%;
    object-fit: cover;
    display: flex;
    height: 490px;
    border-radius: 8px;
}

.sub-category-link {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}

.hor-works-mains-sec {
    height: 700px;
}



.margin-top-set {
    margin-top: -174px;
}

section.wexpect-sec {
    background: #fff;
    padding: 80px 0px;
}

.sub-category-link ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 46px;
}

.category-link {
    font-size: var(--nav-font);
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 27px;
    border-radius: 4px;
}

.category-link:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.category-active {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.build-icon img {
    width: 90px;
    z-index: 9;
    position: relative;
}

.build-card-sec:hover .build-icon img {

    filter: invert(1);
}

.build-icon {
    margin: 0 auto;
    text-align: center;
}

.build-card-sec:hover p {
    color: #fff !important;
    position: relative;
    z-index: 9;
}

.build-card-sec:hover h6 {
    color: #fff !important;
    position: relative;
    z-index: 9;
}

.build-card-sec {
    border-radius: 4px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.build-card-sec:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
    transition: all .7s ease;
    -webkit-clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
    clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
    border-radius: 4px;
}

.build-card-sec:hover:after {
    height: 100%;
    border-radius: 4px;
    clip-path: unset;
}

ul.sign-list {
    list-style: square;
    padding-left: 22px;
    display: grid;
    row-gap: 12px;
    font-size: 21px;
    margin-bottom: 14px;
}

/*  */
.mobile-hide {
    display: none;
}

.mobile-logo {
    display: none;
}

/* timeline */

.timeline {
    width: 91%;
    position: relative;
    margin: auto;
}

.process-header {
    background-color: #AC1E30;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    height: 158px;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-top: -77px;
    position: relative;
    z-index: 4;
}

.step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -top;
    position: relative;
    padding-top: 100px;
}

.step-box {
    width: 450px !important;
    z-index: 9;
    height: 225px !important;
    text-align: center;
    display: grid;
}

.step-box h4 {
    margin: 0 0 5px;

    font-weight: bold;
}

.icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: #fff;
}

.icon img {
    width: 60%;
    height: 60%;
    object-fit: cover;
}

.step-box .fornt-end-view {
    padding: 60px;
}

.line {
    position: absolute;
    width: 3px;
    background: #ffffff;
    top: 0px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    height: 100%;
    overflow: hidden;
}

.line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #A1192E;
    /* red animation fill */
    transition: height 0.6s ease-in-out;
    z-index: 1;
}

.line.active-line::before {
    height: 100%;
    background: #9b1b2b;
}

.centered-box {
    text-align: center;
    margin-top: 123px;
}

.centered-box .step-box {
    margin: 0 auto;
}

.icons img {
    width: 42%;
    height: 100%;
    object-fit: contain;
}

.delivery-box .step-box {

    margin-bottom: 10px;
    color: #fff;
    background-color: var(--second-theme-color);
}

.process-headers {
    position: relative;
    background: #ffffff00;
    padding: 15px;
    border-radius: 0px 0px 10px 10px;
    width: 92%;
    z-index: 9;
    height: 128px;
    text-align: center;
    display: grid;
    margin: 0 auto;
    border: 2px solid #ccc;
    border-top: unset;
    background-color: #fff;

}

.process-headers .line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #A1192E;
    /* red fill */
    transition: height 0.6s ease-in-out;
}

.process-headers .line.active-line::before {
    height: 100%;
}



.icon .colored-icon {
    opacity: 0;
    position: absolute;
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.icon .default-icon {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.line.active-line+.icon .default-icon {
    opacity: 0;
}

.line.active-line+.icon .colored-icon {
    opacity: 1;
}

.inner-banner-section h1 {
    padding-right: 0px;
}

.commence-flat-detials {
    font-size: 20px;
    font-weight: var(--fw-300);
    padding-top: 10px;
}

.flat-free-list {
    display: grid;
    row-gap: 34px;
    padding-right: 23px;
}

.flat-img {
    padding-top: 22px;
    display: flex;
    align-self: start;
}

.flat-sec {
    column-gap: 13px;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 270px;
    padding: 28px 19px;

}

.markup-section {
    padding: 40px 0px;
}

.stronger-section {
    text-align: center;
    background-image: url(/wp-content/uploads/2025/06/freepik_edit_Closeup-of-a-womans-hand-holding-an-espresso-cup-b-2-scaled.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-color: #000000ab;
    background-blend-mode: color;
    padding-bottom: 161px;
}

/* .stronger-section:before {
    position: absolute;
    height: 130%;
    content: '';
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    background-image: linear-gradient(to bottom, #00000075, #000000a6, #bf7e8652, #e929296b);
    opacity: 1;
    filter: blur(16px);
} */

.stronger-section .ast-container {
    position: relative;

}

.main-buil-section {
    margin-top: -70px;
    padding-bottom: 100px;
}




.main-buil-section .build-card-sec::after {
    bottom: 0px !important;
    top: auto;
}

/* .roi-section ul {
    text-align: start;
    display: grid;
    row-gap: 16px;
    list-style: square;
    padding-left: 28px;
    padding-right: 41px;
    font-size: 17px;
}

.roi-section ul li {
    font-size: 19px;
    font-weight: 300;
} */

/* .build-card-sec:hover ul li {
    position: relative;
    z-index: 9;
    color: var(--text-light);
} */

.markup-sections {
    position: relative;
    width: 50%;
}

.markup-sections:before {
    content: '';
    position: absolute;
    bottom: -8px;
    height: 2px;
    width: 91%;
    font-size: 23px;
    background: linear-gradient(to right, #d50a0acc, #b0172a, transparent);
    clip-path: polygon(0% 50%, 10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%);
    /* right: 0; */
    left: 0;
    margin: 0 auto;
}

.mone-heading {
    font-size: 21px;
    padding-top: 8px;
    text-align: center;
    font-weight: 600;
    padding: 0px 36px;
}

.build-bootom .build-card-sec::after {
    top: auto;
    bottom: 0;
}

.resl-sec .build-details br {
    display: none;
}

.monetize-section .main-heading {
    padding-bottom: 2px;
}

/* .monetize-section {
    padding: 25px 28px;
    background: #fff;
    border-radius: 5px;
} */

.build-bootom .build-card-sec::before {
    position: absolute;
    width: 131px;
    height: 82px;
    border-radius: 4px;
    content: '';
    z-index: -17;
    top: -8px;
    left: -10px;
    background-color: var(--second-theme-color);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.landow-main-sec {
    column-gap: 35px;
    row-gap: 75px;
    padding-top: 50px;
}

@media (min-width: 768px) {
    .landow-main-sec .col-md-6 {
        flex: 0 0 calc(50% - 15px);
        max-width: 47%;
        margin:0 auto;
    }
}

/* flip-card */

/* Set the size of the card */

.front img {
    width: 100%;
    height: 98%;
    object-fit: contain;
}

.flip-container {
    perspective: 983px;
    margin-bottom: 80px;
}

.flip-card {
    width: 240px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
    margin: 10px;
}

.flip-card .front {
    background: rgba(255, 255, 255, 0.1);
}

.flip-card .front,
.flip-card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    border: 2px solid #241e1f00;
    box-shadow: 0 0 15px #ac1e304d;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.flip-card .back {
    background: rgba(255, 255, 255, 0.1);
    transform: rotateY(180deg);
}

.flip-card:hover {
    transform: rotateY(180deg);
}

/* resl-sec */

.resl-sec .work-sec-details {
    height: 334px;
    display: flex;
    align-items: center;
}

.resl-sec br {
    display: none;
}

.mangin-img img {
    width: 93%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 740px;
    max-width: 100%;
}

.first-img {
    height: 368px;
    object-fit: cover;
}

img.second-img {
    height: 200px;
    object-fit: cover;
}

/*  */
.lets-commenece-banner {
    padding-top: 150px;
    padding-bottom: 100px;
}

.lets-commence-form {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    padding: 50px 50px 0px 50px;
    background-color: #fff;
}

div#formContainer {
    max-width: 92% !important;
}

.plans-main-section {
    background-image: linear-gradient(to bottom, #AC1E30, #AC1E30, #300a0f, #000000, #ffffff00);
    padding-bottom: 300px;
}

.plans-section {
    padding-bottom: 0px;
}

.finishe-sec {
    position: unset;
    padding-top: 100px;
    display: block !important;
}

.homes-range-section {
    background: #fff;
    border-radius: 10px 10px 0px 0px;
    padding: 40px 30px 0px 30px;
}

.maodels-space {
    margin-top: 40px;
}

.filter-sec {
    background-color: #EBEDEC;
    border-radius: 8px;
    padding: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 33px;
}

#Isolation_Mode {
    width: 1rem;
    height: 1rem;
    padding-top: 4px;
}

.filters-link {
    background: #fff;
    font-size: 20px;
    color: #000;
    border-radius: 4px;
    font-weight: 300;
    margin-bottom: 13px;
    display: block;
    width: 100%;
    padding: 10px 13px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.home-img img {
    border-radius: 4px;
}

.fliter-details {
    display: grid;
    row-gap: 23px;
    margin-bottom: 32px;
    margin-top: 42%;
}

.home-card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 4px;
    background: #fff;

}

.home-details {
    padding: 10px 10px;
}

.home-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img img {
    width: 97%;
    height: 364px;
    display: inline-block;
    object-fit: cover;
    border-radius: 10px;
}

.aug-sec {
    column-gap: 20px;
    row-gap: 44px;
}


.investor-fav-ses img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -ms-border-radius: 10px 10px 0px 0px;
    -o-border-radius: 10px 10px 0px 0px;
}


.invertor-inner-section {
    padding: 20px;
}

.invertor-inner-section {
    padding: 0px 56px;
    display: grid;
    row-gap: 14px;
}

.choose-links {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    margin-top: 11px;
    color: #000;
    display: ruby;
    width: 140px;
    border-radius: 10px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.investor-favorites {
    padding-bottom: 100px;
    padding-bottom: 70px;
}

.filter-active {
    background-color: var(--second-theme-color);
    color: var(--text-light);
}

.filters-link:hover {
    background-color: var(--second-theme-color);
    color: var(--text-light);
}

.quartz-sec {
    padding-top: 80px;
}

.quar-heading {
    padding-bottom: 10px;
    font-size: 23px;
}

/* .coutn-filter-sec {
    margin-bottom: 46px;
    position: sticky;
    height: fit-content;
    top: 108px;
} */

.ast-container.investor-fav-sec-main {
    padding: 0px;
    width: 100%;
    padding-top: 21px;
}

.inner-color {
    background: radial-gradient(circle, #ffffff 0%, #ac1e30 40%, #ac1e30 100%);
    padding: 135px;
}



.cus-text {
    color: #ac1e30;
    margin-right: 9px;
}

.walk-img img {
    border-radius: 10px;
}

.form-section {
    padding-top: 20px;
}

.dec-section {
    display: grid;
    row-gap: 9px;
}

.filter-toggle-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-toogle {
    padding-bottom: 15px;
    border: unset;
    font-size: 20px;
    display: none;
    background-color: transparent;
}

.filter-closed {
    display: none;
}

.des-view {
    display: block;
}

.des-view.active {
    display: block;
    /* Show when active */
}

.quar-fliter {
    display: none;
}

.investor-fav-sec-main {
    padding: 21px 22px !important;
}

.images-logo-section img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.form-section img {
    width: 100%;
}

.text-end {
    text-align: end;
}

.coomenece-links {
    background: #fff;
    font-size: 20px;
    border-radius: 4px;
    padding: 16px 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.nodding-sec {
    margin-top: 110px;
}

.margin-bottom {
    margin-bottom: 100px;
}

.careers-sec {
    background: #000000d4;

}

.expect-imgd img {
    width: 100%;
    height: 308px;
}

.map-sec img {
    width: 97%;
    height: 364px;
    border-radius: 10px;
    object-fit: cover;
}

.map-sec img {
    width: 97%;
    height: 364px;
    border-radius: 10px;
    object-fit: cover;
}

.home-imgs img {
    width: 100%;
    object-fit: cover;
    height: 208px;
    border-radius: 6px;
}

.form-section iframe {
    width: 100%;
    height: 800px;

}


/* ---------------------
   DEFAULT DESKTOP STYLES
---------------------- */
/* ---- DESKTOP DEFAULT ---- */
/* .roi-section {
    width: 100%;
    height: 300px;
    position: relative;
    background: #fff;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    perspective: 1200px;
    cursor: pointer;
    transition: background 0.4s ease;
}

.roi-card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    position: relative;
}

.build-fornt-side {
    text-align: center;
}

.build-fornt-side,
.build-back-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.build-fornt-side {
    z-index: 2;
}

.build-back-side {
    transform: rotateY(180deg);
} */

/* @media (hover: hover) and (pointer: fine) {
    .roi-section:hover .roi-card-inner {
        transform: rotateY(180deg);
        background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
        color: #fff;

    }
} */

/* ---- MOBILE OVERRIDE ---- */
@media (max-width: 1024px) {
    /* .roi-section {
        height: 250px;
        background: #fff;
        padding: 20px;
        display: flex;
        align-items: center;
    }

    .roi-card-inner {
        transform: none !important;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .build-fornt-side,
    .build-back-side {
        position: relative;
        transform: none;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        padding: 10px 0;
        display: none;
        height: auto;
        text-align: center;
    }


    .roi-section.show-back .build-fornt-side {
        display: block;
    }

    .roi-section.show-back .build-back-side {
        display: block;
        padding: 0px 15px 20px;
        color: #fff;
    }

    .roi-section:not(.show-back) .build-fornt-side {
        display: block;
    }

    .roi-section:not(.show-back) .build-back-side {
        display: none;
    }

    .roi-section.show-back {
        background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
        height: auto;
    }

    .roi-section.show-back h6,
    .roi-section.show-back p {
        color: #fff;
    }

    .roi-section.show-back ul {
        color: #fff;
    } */

 

    .team-img img {
        width: 100%;
    }

    .home section.main-review-sec.common-tb-spacing {
        margin-top: 70px;
    }

    .custom-line img {
        max-width: 100%;
    }

    .cost-details.cost-call .put-link {
        justify-content: center !important;
    }

    .cost-details.cost-call {
        max-width: 100% !important;
    }
}

.img-team img {
    margin-bottom: 14px;
    width: 155px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

/* .build-card-sec:hover .img-team img {
    position: relative;
    z-index: 9;
} */

.team-card-sec {
    text-align: center;
}

/* .our-team {
    margin-bottom: 68px;
} */
.team-card-sec {
    text-align: center;
    margin-bottom: 9px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.img-team {
    padding-top: 20px;
    position: relative;
    z-index: 999;
}

.centerContainer {
    box-sizing: border-box;
    background: rgba(var(--form-cont-bg-clr), var(--form-cont-bg-opacity));
    border: var(--form-cont-bdr-width) var(--form-cont-bdr-style) var(--form-cont-bdr-clr);
    border-top-left-radius: var(--form-cont-bdr-topleft-radius);
    border-top-right-radius: var(--form-cont-bdr-topright-radius);
    border-bottom-left-radius: var(--form-cont-bdr-bottomleft-radius);
    border-bottom-right-radius: var(--form-cont-bdr-bottomright-radius);
    overflow: hidden;
    box-shadow: unset !important;
    margin: 0 auto;
}

.image-carousel-wrapper {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 15px;
}

.image-carousel-slider .carousel-image {
    padding: 10px;
    box-sizing: border-box;
}

.image-carousel-slider img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.custom-stars i {
    color: #027eff;
}

.model-fliterss {
    gap: 0px;
    column-gap: 30px;
    row-gap: 37px;
}

.bg-images {
    background-image: url(/wp-content/uploads/2025/06/home.png);
    height: 305px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-blend-mode: darken;
    background-color: #000000cc;
}

.custon-card-sec:hover {
    background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
}

.hover-red:hover {
    background-color: #241E1F;
}

.white-hover:hover {
    background-color: #fff;
    color: var(--second-theme-color);
}

.hover-block:hover {
    background-color: #ac1e30;
    color: #fff;
}

/* newcss */
.cb-section {
    width: 100%;
    max-width: 350px;
    height: 300px;
    /* margin: 50px auto; */
    position: relative;
    border-radius: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    z-index: 8;
    text-align: center;
    perspective: 1200px;
    cursor: pointer;
}

.card-main {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.8s ease;
    will-change: transform;
}

.card-main.flipped {
    transform: rotateY(180deg);
    background: linear-gradient(87deg, #241e1f 41.99%, #ac1e30 85.34%);
}

.flip-red .card-main.flipped {
    background: #ac1e30 !important;
}

.step-box .back-end-view {
    padding: 20px;
}

.fornt-end-view,
.back-end-view {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
}

.fornt-end-view {
    z-index: 2;
}

.back-end-view {
    transform: rotateY(180deg);
}

.back-end-view p {
    color: #fff;
    padding-bottom: 0px;
}

.step-box .back-end-view p {
    padding: 0px;
}

/* Desktop hover effect only */
@media (hover: hover) and (pointer: fine) {
    .cb-section:hover .card-main {
        transform: rotateY(180deg);
        background: #ac1e30;
    }
    .cb-section:hover .monetize-section {
  background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
}

}

/* 💻 Desktop hover effect only */
/* @media (hover: hover) and (pointer: fine) {
    .cb-section:hover .card-main {
        transform: rotateY(180deg);
        background: linear-gradient(87deg, #241e1f 41.99%, #ac1e30 85.34%);
    }
	
    .step-box:hover .card-main {
        background: linear-gradient(87deg, #241e1f 41.99%, #ac1e30 85.34%);
    }

    .cb-section:hover .monetize-section {
        background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
    }
} */

@media (max-width: 767px) {
    .monetize-section.active {
        background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
    }
}

/* .fornt-end-view,
.back-end-view {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.fornt-end-view {
    z-index: 2;
}

.back-end-view {
    transform: rotateY(180deg);
    padding: 20px;
}

.cb-section:hover .card-main .back-end-view p {
    color: var(--text-light);
} */


.padding-top-20 {
    padding-top: 20px;
}

.icon:hover {
    background: var(--second-theme-color)
}

.icon:hover img {
    filter: invert(1);
}

/* .step-box:hover .card-main {
    background: linear-gradient(87deg, #241e1f 41.99%, #ac1e30 85.34%)
} */

.delivery-box .step-box img {
    filter: invert(1);
}

.mak-spacing {
    padding-top: 44px;
}

.cost-model-section {
    padding-bottom: 0px !important;
}

.cost-btn {
    margin-top: 67px;
}

/* .cb-section:hover .monetize-section {
    background: linear-gradient(289.19deg, #241e1f 41.99%, #ac1e30 85.34%);
} */

.flipper-sec {
    position: relative;
}

.flipper-sec:before {
    position: absolute;
    background-color: var(--second-theme-color);
    content: '';
    width: 300px;
    height: 177px;
    top: -15px;
    left: -17px;
    border-radius: 8px;
    z-index: -1;
}

.flipper-sec .cb-section {
    height: 247px;
    width: 100%;
    max-width: 98%;
}

.cb-section.flipped .card-main {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.let-btns {
    margin-top: 30px;
}

.step-box.exp-details {
    padding: 0;
}

.our-team-sec {
    padding: 80px 0px;
}

.sure-details {
    font-size: 21px;
}

.fliter-details p {
    font-size: 22px;
}

.home-card p {
    font-size: 23px;
}

/* review */

.ReviewBackground__Container-sc-b270746f-0.eQMHnD.es-review-background-container {
    background: #fff;
    border-radius: 7px;
    padding: 20px 28px;

}



.cWOhZz {
    justify-content: center;
}

.sub-category-link {
    display: none;
}

.resl-sec .build-details {
    background: #08080838;
    padding: 70px;
    border-radius: 8px;
}

.portal-sec {
    background-color: #000000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    /*text-transform: uppercase;
    */
    padding: 4px 10px;
    border: none;
    border-radius: 10px !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    z-index: 99999 !important;
    transition: 0.4s ease;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}

.portal-sec:hover {
    background-color: red;
}

.portal-sec a {
    color: #fff !important;
}

.portal-sec::before,
.portal-sec::after {
    content: '';
    position: absolute;
    border-radius: 10px;
    width: 100%;
    height: 130%;
    left: 42%;
    top: 50%;
    transform: translate(-43%, -50%);
    z-index: -3;
    pointer-events: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.portal-sec::before {
    background: conic-gradient(from var(--angle), #e7dede 50deg, #313131 80deg);
    filter: blur(20px) brightness(3);
    animation: neonGlow 6s linear infinite;
}

.portal-sec::after {
    background: conic-gradient(from var(--angle), #000 50deg, #000 60deg);
    animation: neonGlow 2s linear infinite;
    padding: 2px;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}


@keyframes neonGlow {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

.portal-sec:hover a {
    background-color: #000000;
    color: #000;
}

#menu-item-359 a {
    background-color: transparent !important;
}

.portal-sec:hover {
    background-color: var(--second-theme-color) !important;
}

.portal-sec:hover a {
    color: #fff !important;
}

.autoplay {
    display: none;
}

.before-set {
    position: relative;
}

.custom-section {
    margin-top: 17px;
}

.height-set {
    height: 386px;
    display: flex;
    align-items: center;
}

.spacing-sec {
    padding: 43px 50px;
}

.background-color-set {
    background-color: #AC1E30;
    margin-top: 81px;
}

.expert-section {
    padding-top: 80px;
}

/* .background-color-set {
    overflow-x: hidden;
}
.how-it-works .row{
    overflow-x: hidden;
}
.advantage-section{
    overflow-x: hidden;
} */
.page-id-437 {
    overflow: visible;
}

.put-linkes {
    margin-top: 8px;
    margin-bottom: 16px;
}

.links-section.cost-limnks {
    margin-top: 20px;
}

.spave-tip {
    padding-top: 20px;
}

/* .new-spacing {
    padding-right: 90px;
} */
.cost-model-details {
    z-index: 10;
}



.fit-section-details {
    background: linear-gradient(261deg, #241e1f 3.99%, #ac1e30 102.34%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 247px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.fit-section-details p {
    color: #fff;
    font-size: 23px;
    text-align: center;
    padding: 66px;
}

.custom-line {
    margin: 0 auto;
    text-align: center;
}

.handles-section {
    background: #EBEDEC;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.img-sec img {
    width: 95px;
    height: 95px;
    object-fit: contain;
}

.img-sec {
    padding: 41px 0px 0px 30px;
}

.handles-deatils {
    text-align: start;
    margin: 2px 50px 50px 50px;
    height: 423px;
}

.bottom-image img {
    max-width: 100%;
    height: 409px;
    object-fit: cover;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    align-items: end;
}

.why-commence-sec {
    height: 800px;
}

.margin-top-set-wc {
    margin-top: -235px;
}

.Main__Content-sc-9938ec41-1.hvsvmR.es-main-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-top: 50px;
}

.bkPTAJ {
    margin-bottom: 0px;
}

.click-show {
    display: inline-block;
}

.hide-click {
    display: none;
}

.coutn-filter-sec .filter-sec {
    padding: 30px;

}

.single-filter-section {
    width: 450px;
}

.finsh-selector-section {
    display: flex;
    gap: 22px;
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    margin-bottom: 20px;
}


.fs-img img {
    width: 100%;
}

.on-click-show-section {
    display: none;
}

.destila-finsh {
    width: 230px;
}

.destila-finsh p {
    font-size: 19px;
    padding-top: 10px;
}

.selector-images-sction {
    /* display: flex; */
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.img-select a {
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: center;
    text-transform: uppercase;
}



.selector-images-sction h5 {
    font-size: 20px;
    margin-bottom: 20px;
}

.flex-sec a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: start;
}

.flex-sec .fa-angle-down {
    transition: transform 0.3s ease;
}

.flex-sec.active .fa-angle-down {
    transform: rotate(180deg);
}

.floor-map img {
    width: 100%;
    padding: 20px;
}

.ca-details {
    display: grid;
    gap: 22px;
}

.ca-details p {
    font-size: 22px;
}

.fliter-detailess p {
    font-size: 26px;
    margin-bottom: 36px;
}

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

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

/* Apply same height to all images */
.model-main-img img,
.single-img img,
.floor-map img {
    /* Set your desired fixed height */
    width: 100%;
    /* Let width auto-adjust */
    object-fit: cover;
    /* Cover container without distortion */
    display: block;
}

/* Optional: Ensure consistent spacing between images */
.single-img,
.model-main-img,
.floor-map {
    margin-bottom: 15px;
}

.single-img {
    border: 1px solid #3431311c;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 95%;
    justify-content: center;
    font-size: 20px;
    padding: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.include-div {
    background: #fff;
    border-radius: 10px;

    padding-top: 50px;
    width: 70%;
    text-align: left;
}

.coutn-filter-sec h6 {
    white-space: nowrap;
}

.struct-section {
    padding: 50px 0px;
}

.nf-listing ul {
    list-style: disc;
    display: flex;
    padding-left: 33px;
    flex-wrap: wrap;
    gap: 30px;
}

.nf-listing ul li {
    width: 47%;
    font-size: 20px;
}

.rs-main-section {
    background: #EBEDEC;
}

.reading-section {
    gap: 24px;
    display: grid;
}

.home-slider {
    padding-top: 20px;
}

.models-spacess {
    padding-top: 9px;
}

a.back-link {
    display: flex;
    align-items: center;
    color: #000;
}

a.back-link .arrow-set {
    transform: rotate(92deg);
    margin-right: 4px;
    margin-top: 3px;
}

.back-link h6 {
    padding: 0;
}

.details-sec-link {
    display: none;
}

.lessdetails-sec-link {
    display: none;
}

.bootom-section {
    background-image: url(/wp-content/uploads/2025/07/freepik__wide-angle-image-of-a-miniature-house-the-design-i__17846-1.png);
}

.put-custom-link {
    background: #fff;
    color: #000;
}

.youes-sec {
    display: grid;
    gap: 29px;
}


.bootom-sections {
    background-image: url(/wp-content/uploads/2025/07/freepik__wide-angle-image-of-a-miniature-house-the-design-i__17846-1.png);
    background-size: cover;
    background-attachment: fixed;
}

.bath-listing .sub-category {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 13px;
    display: block;
    width: 100%;
    padding: 10px 13px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.bath-listing .sub-category .sub-cat-link {

    font-size: 20px;
    color: #837f7f;
    font-weight: 300;
    border-radius: 4px;
    /* margin-bottom: 13px; */
    display: block;
    width: 100%;
    padding: 6px 13px;
}

.bath-listing .sub-category .sub-cat-link:hover {
    background-color: var(--second-theme-color);
    color: var(--text-light);
}

.non-cap {
    text-transform: unset;
}

section.our-team-sec .row {
    justify-content: center;
}

section.team-details {
    padding: 50px 0px;
}

.team-img {
    background-color: #00000008;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.team-details {
    padding-left: 30px;
}

.team-details h4 {
    font-size: 20px;
    color: #ac1e30;
    margin-bottom: 20px;
}

.team-details h1 {
    padding-bottom: 5px;
}

.team-details p {
    line-height: 30px;
    margin-bottom: 30px;
}

.team-details li {
    margin-bottom: 10px;
    list-style: disc;
}

.team-details .title {
    font-size: 22px;
    margin-bottom: 15px;
}

.cost-details.cost-call {
    background-image: url(/wp-content/uploads/2025/07/why_commence.jpg);
    padding: 40px 40px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: inset 0px 0px 0px 500px #ffffffbd;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 360px;
}

.cost-details.cost-call h2 {
    color: var(--second-theme-color);
}

.cost-details.cost-call .put-link {
    justify-content: flex-start;
    padding-top: 25px;
}

.sm-card {
    height: 100%;
    padding: 20px 30px;
    border-radius: 20px;
	text-wrap: pretty;
}

.sm-card p {
    padding: 0px;
}

/* .col-md-12.bottom-text.moveUp.animated, .row.sm_card {
    padding-top: 30px;
} */
.new-spacing strong {
    font-weight: 700;
}

.selector-images-sction .img-select {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* spacing between items */
    justify-content: flex-start;

}

.selector-images-sction .fs-img {
    width: calc(33.333% - 13.333px);
    /* 3 per row with spacing */
    box-sizing: border-box;
    text-align: center;
}

@media (min-width:767px) {
    .pd-0 {
        padding-top: 0px;
    }

    p.exp-details.pd-right {
        padding-right: 10px;
    }

    .flip-top .build-icon {
        height: 90px;
    }

    .flip-top .fornt-end-view {
        align-items: unset;
        padding: 50px 50px 0px;
    }

    .sm_card .col-md-4 {
        width: 31.33333333%;
    }
/* 
    .build-fornt-side.card_align {
        align-items: unset;
        padding: 70px 50px 0px;
    } */

    #secondary-title .put-link .common-btn {
        z-index: 9999;
        position: relative;
        white-space: nowrap;
    }
}

img.first-floor {
    margin-bottom: 12px;
}

.finshes-listing .main-heading {
    text-align: start !important;
}

.team-img img {
    width: 100%;
}
.bottom-text p{
    padding: 0px;
}

.new-include-sec{
    font-size: 50px;
}

.selector-images-sction .exp-details a {
    color: #ac1e30;
    font-weight: 500;
    font-size: 16px;
    text-decoration: underline;
}