/* header css start here */
/* footer css start here */
/* index page css start here */
/* contact-us css start here */
/* new updates css start here */
/* blog detail css start here */
/* properties page css start here */
/* disclaimer page css start here */
/* terms and conditions page css start here */
/* about us page css start here */
/* scroll to top icon css start here */
/* properties detail page css start here */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,body{
    overflow-x: hidden;
    overflow-y: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
li {
    list-style: none;
}

:root {
    --body-font: "Inter", sans-serif;
    --body-color: #000;
    --body-color2: #000;
    --th-body-background: #ffffff;
    --section-bg: #ffffff;
    --border-color: #2f7df6;
    --heading-text-color: #000000;
    --btn-vision-bg-color: #1f8cff;
    --body-text-color: #000000;
    --card-bg-color: #f8faff;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
    background: var(--th-body-background);
    -webkit-font-smoothing: antialiased;
}

/* header css start here */

.gt-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 25px 0;
    background: transparent;
    transition:
        background-color 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.5s ease,
        padding 0.5s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gt-header-inner {
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gt-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gt-logo img {
    height: 40px;
    transition: 0.25s ease;
}

.gt-logo-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.gt-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.gt-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gt-menu>li {
    position: relative;
}

.gt-menu>li>a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 0;
    position: relative;
    display: flex;
}

.gt-menu>li>a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.25s ease;
}

.gt-menu>li:hover>a::before,
.gt-menu>li.active>a::before {
    width: 100%;
}

.gt-menu>li.has-dropdown>a::after {
    content: "▾";
    font-size: 30px;
    margin-left: 6px;
    position: relative;
    top: -1px;
}



.gt-dropdown {
    position: absolute;
    top: calc(100% + 24px);
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 190px;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.gt-menu>li.has-dropdown:hover .gt-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.gt-dropdown li {
    list-style: none;
}

.gt-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        padding-left 0.2s ease,
        transform 0.2s ease;
}

.gt-dropdown li a .dd-icon {
    display: inline-flex;
    width: 18px;
    justify-content: center;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gt-dropdown li a .dd-text {
    transition: transform 0.25s ease;
}

.gt-dropdown li a:hover {
    background-color: #f5f7fb;
    padding-left: 26px;
}

.gt-dropdown li a:hover .dd-icon {
    opacity: 1;
    transform: translateX(0);
}

.gt-dropdown li a:hover .dd-text {
    transform: translateX(4px);
}

.gt-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-quote {
    border-radius: 999px;
    border: 1px solid #f05623;
    padding: 10px 26px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.btn-quote span.arrow {
    font-size: 14px;
}

.btn-quote:hover {
    background: #f05623;
    transform: translateY(-1px);
}

.gt-hamburger {
    width: 32px;
    height: 32px;
    /* border-radius: 50%; */
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.gt-hamburger-lines {
    height: 16px;
    width: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gt-hamburger-lines span {
    height: 2px;
    background: #ffffff;
    display: block;
    border-radius: 10px;
    transition:
        width 0.25s ease,
        margin-left 0.25s ease,
        background-color 0.25s ease;
}

.gt-hamburger-lines span:nth-child(1) {
    width: 12px;
}

.gt-hamburger-lines span:nth-child(2) {
    width: 16px;
}

.gt-hamburger-lines span:nth-child(3) {
    width: 20px;
}

.gt-hamburger:hover .gt-hamburger-lines span {
    width: 20px;
    margin-left: 0;
    background: #ffffff;
}

.gt-header.is-hidden {
    transform: translateY(-100%);
}

.gt-header.is-stuck {
    position: fixed;
    background: #000000;
    padding: 15px 0;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
    transform: translateY(0);
}

.gt-offcanvas {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.gt-offcanvas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateX(-100%);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.gt-offcanvas.is-open .gt-offcanvas-overlay {
    opacity: 1;
    transform: translateX(0);
}

.gt-offcanvas-panel {
    position: absolute;
    top: 0;
    left: -420px;
    width: 380px;
    max-width: 90%;
    height: 100%;
    background: #ffffff;
    padding: 24px 24px 32px;
    box-shadow: -4px 0 18px rgba(0, 0, 0, 0.25);
    transition: left 0.5s ease;
    overflow-y: auto;
}

.gt-offcanvas.is-open {
    pointer-events: auto;
}

.gt-offcanvas.is-open .gt-offcanvas-overlay {
    opacity: 1;
}

.gt-offcanvas.is-open .gt-offcanvas-panel {
    left: 0;
}

.offcanvas-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: #f05623;
    color: #ffffff;
    font-size: 28px;
    line-height: 28px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.offcanvas-logo {
    margin-bottom: 24px;
}

.offcanvas-section-title {
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 8px;
}

.offcanvas-text {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.offcanvas-nav {
    margin: 24px 0;
    border-top: 1px solid #e6e6e6;
}

.offcanvas-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-nav li {
    border-bottom: 1px solid #ededed;
}

.offcanvas-nav li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: #222;
    font-size: 15px;
}

.offcanvas-nav li.has-submenu>a .toggle {
    font-size: 18px;
}

.offcanvas-nav .sub-menu {

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        max-height 0.35s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.offcanvas-nav .sub-menu li a {
    padding: 6px 0 6px 16px;
    font-size: 14px;
}

.offcanvas-nav li.open .sub-menu {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 8px;
}

/* header css end here */


/* footer css start here */
.gt-footer {
    background-color: #000000;
    color: #d5e3ea;
}

.gt-footer-top {
    padding: 70px 0 40px;
}

.gt-footer-inner {
    padding: 0 24px;
    display: grid;
    column-gap: 40px;
    row-gap: 32px;
    grid-template-columns: minmax(220px, 2fr) minmax(206px, 1.3fr) minmax(160px, 1fr) minmax(140px, 1fr) minmax(160px, 1fr);
}

.gt-footer-col {
    align-self: flex-start;
}

.gt-footer-about {
    max-width: 360px;
}

.gt-footer-social-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gt-footer-logo img {
    height: 42px;
    display: block;
    margin-bottom: 22px;
}

.gt-footer-text {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.gt-footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
}

/* contact */
.gt-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gt-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #f05623;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 14px;
    color: #d5e3ea;
}

/* links */
.gt-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gt-footer-links li+li {
    margin-top: 6px;
}

.gt-footer-links a {
    font-size: 14px;
    color: #d5e3ea;
    text-decoration: none;
    position: relative;
    padding-left: 14px;
    display: inline-block;
}

.gt-footer-links a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    color: #d5e3ea;
}

.gt-footer-links a:hover {
    color: #ffffff;
}

/* social icons */
.gt-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.gt-footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #f05623;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.gt-footer-social i {
    font-size: 14px;
    color: #d5e3ea;
}

/* bottom strip */
.gt-footer-bottom {
    background-color: #000000;
    padding: 12px 0;
}

.gt-footer-bottom-inner {
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gt-footer-copy {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
}

.gt-footer-credit a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.gt-footer-credit a:hover {
    text-decoration: underline;
}

/* footer css end here */

/* css by het 2nd section in index page start here*/

/* index page css start here */

.feature-img {
    /* object-fit: contain; */
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}


.feature-wrapper:hover .feature-img {
    transform: rotateY(180deg) scale(1.1);
}

/* css by het 2nd section in index page end here*/


/* vision section css Start here */

.vision-section {
    padding: 60px 0;
    background-color: var(--section-bg);
}

.vision-heading {
    font-size: 2.4rem;
    font-weight: 700;
    /* margin-bottom: 16px; */
}

.vision-textp {
    color: #000;
    /* max-width: 540px; */
}

.vision-card {
    /* background-color: var(--card-bg-color); */
    border-radius: 18px;
    border: 1px solid #f05623;
    padding: 15px 15px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 5px #f05326;
    border-color: #f05623;
}

.vision-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--body-text-color);
    ;
}

.vision-card p {
    font-size: 0.9rem;
    color: var(--body-text-color);
    margin-bottom: 0;
}

.btn-vision {
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    background-color: #f05623;
    color: #fff;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.btn-vision span.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    /* background-color: rgba(255, 255, 255, 0.16); */
    font-size: 0.8rem;
}

.vision-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* vision section css end here */

/* news section css Start here */
.news-section {
    background-color: #ffffff;
    color: #000000;
}

.news-heading {
    font-size: 2.3rem;
    font-weight: 700;
}

.news-subtitle {
    color: #000;
    font-size: 0.95rem;
}

/* top button */
.news-btn {
    border-radius: 999px;
    border: 1px solid #f05623;
    padding: 10px 26px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-btn:hover {
    background-color: #f05623;
    color: #fff;
}

.news-btn .arrow {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

/* blog card */
.blog-card {
    background-color: transparent;
    border-radius: 22px;
    overflow: hidden;
}

.blog-img-wrapper {
    border-radius: 22px;
    overflow: hidden;
    height: 230px;
}

.blog-img-wrapper img {
    object-fit: cover;
    display: block;
}

.blog-body {
    padding-top: 14px;
}

.blog-meta span {
    font-size: 0.8rem;
    color: #000;
    margin-right: 6px;
}

/* .blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
} */

.blog-read-btn {
    border-radius: 999px;
    border: 1px solid #f05623;
    padding: 8px 22px;
    font-size: 1.2rem;
    color: #000;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-btn:hover {
    background-color: #f05623;
    color: #fff;
}

.blog-read-btn .arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}


.main-home .services-section {
    background-color: #f05623;
}

.main-home .services-section .service-label {
    color: #fff;
    font-size: 14px;
    margin-top: 5px;
}

.main-home .newsletter-section {
    background: url("/image/home/pexels-heyho-6585752-1536x1284.jpg") center/cover no-repeat;
    position: relative;
}

.main-home .newsletter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 30, 0.7);
}

.main-home .newsletter-section .newsletter-sec {
    position: relative;
    z-index: 2;
}

.main-home .newsletter-section .newsletter-form {
    gap: 10px;
}

.main-home .newsletter-section .newsletter-input {
    border-radius: 50px;
    padding-left: 20px;
    height: 52px;
    border: 1px solid #f05623;
    background: transparent;
    color: #fff;
}

.main-home .newsletter-section .newsletter-input::placeholder {
    color: #cfd3d7;
}

.main-home .newsletter-section .newsletter-btn {
    background: #f05623;
    border-radius: 50px;
    color: #fff;
    padding: 0 30px;
    font-weight: 600;
    height: 52px;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #ffffff;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: top     center;
    filter: brightness(0.75);
}

/* center content */
.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.4rem;
}

.hero-cta {
    background: #f05623;
    padding: 12px 30px;
    border-radius: 30px;
    width: max-content;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    gap: 10px;
    border: none;
}

.hero-cta .cta-arrow {
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* rotating wheel */
.hero-wheel {
    background: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    cursor: pointer;
    border: 0;
}

.fa-arrow-right:before,
.fa-arrow-left:before {
    color: #fff;
}

.hero-wheel-left {
    left: 6%;
}

.hero-wheel-right {
    right: 6%;
}

.rotating-ring {
    width: 120px;
    height: 120px;
    animation: rotate 12s linear infinite;
}

.rotating-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 100%;
    background-color: #000;
    opacity: 0.5;
}

.wheel-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #f05623;
    background: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

/* Working start */

/* SECTION */
.home-working-section {
    background-color: #ffffff;
}

/* FEATURE BOX */
.home-working-section .feature-box {
    display: flex;
    gap: 16px;
    padding: 16px 18px;
    background: #f05623;
    border-radius: 14px;
    margin-bottom: 16px;
    color: #fff;
}

.home-working-section .feature-box img {
    width: 75px;
    height: 90px;
    object-fit: contain;
}

.home-working-section .feature-box h5 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

/* Working end */

/* About Us start */

/* BUTTON */
.home-about-section .offer-btn {
    background: #f05623;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.home-about-section .offer-btn:hover {
    background: #d0441a;
}

.home-about-section .offer-arrow {
    transition: transform 0.3s ease;
}

.home-about-section .offer-btn:hover .offer-arrow {
    transform: translateX(4px);
}

/* STATS */
.home-about-section .offer-stat {
    background: #ffffff;
    border: 1px solid #f05623;
    border-radius: 18px;
    padding: 18px 12px;
    text-align: center;
    height: 100%;
}

.home-about-section .offer-stat h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.home-about-section .offer-stat p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* IMAGE */
.main-home .offer-house-img {
    border-radius: 28px;
}

/* MOBILE */
/* @media (max-width: 767px) {


  .frame-offer-section {
    border-radius: 20px;
  }
} */

/* About Us end */
.our-projects {
    background-color: #fff1ed;
}

.our-projects .card-house {
    height: 340px;

}

.our-projects .card-house-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* index page css end here */

/* contact-us css start here */

.contact-page .hero-section {
    background: linear-gradient(rgb(54 64 71 / 88%), rgb(32 37 41 / 40%)),
        url('/image/contact-us-banner.webp') center/cover no-repeat;
    position: relative;
    height: 50vh;
}

.contact-page .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-page .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

/* .contact-page .bread-crumb-a a {
    text-decoration: none;
} */

/* .contact-page .bread-crumb-a a:hover {
    color: #f05623;
} */

.contact-page .section-divider {
    width: 25px;
    height: 1px;
    background-color: #000000;
    margin: 10px auto;
}

.contact-page .contact-card {
    background: #f05623;
    color: white;
    border-radius: 10px;
    height: 100%;
}

.contact-page .visit-section {
    background: linear-gradient(rgb(54 64 71 / 88%), rgb(32 37 41 / 40%)),
        url("/image/contact-us-img1.webp") center/cover no-repeat;

}

/* Card styling */
.contact-page .visit-card {
    width: 75%;
    height: 95%;
    background: #fff1ed;
    border-radius: 20px;
}

.contact-page .input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #f05623;
}

.contact-page .submit-btn {
    background: #f05623;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
}

.contact-page .google-map {
    width: 100%;
    height: 100%;
    min-height: 750px;
    border: none;
}

.contact-page .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.0rem;
    color: #f05623;
    border-radius: 35px;
    padding: 25px;
}


/* contact-us css end here */


/* new updates css start here */

.blog-card {
    /* background: #cddadb; */
    border-radius: 12px;
}

.read-more-btn {
    position: relative;
    overflow: hidden;
    /* background: #0f2230; */
    color: #0f2230;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    transition: color 0.8s ease;
    border: 1px solid #f05623;
}

.read-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: skewX(-25deg);
}

.read-more-btn:hover::before {
    left: 125%;
    transition: left 0.6s ease;
}

.read-more-btn:hover,
.read-more-btn:focus-visible,
.read-more-btn:active {
    color: #fff;
    border: none;
    background-color: #f05623!important;
    box-shadow: none!important;
}

/*hero fix*/
.blog-hero {
    height: 50vh;
    background: linear-gradient(rgb(54 64 71 / 88%), rgb(32 37 41 / 40%)),
        url("/image/blog-banner.webp") center/cover no-repeat;
}

/*hero fix end*/
.sidebar-card {
    background: #fff1ed;
    border-radius: 12px;
}

.sidebar-cats .title-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-cats .title-line .mini {
    width: 55px;
    height: 3px;
    background: #000;
    border-radius: 10px;
    opacity: 0.9;
}

.sidebar-cats .title-line .full {
    flex: 1;
    height: 2px;
    background: #000;
    border-radius: 10px;
}

.sidebar-cats .cat-item {
    padding: 14px 0;
    border-top: 1px solid #000;
}

.sidebar-cats .cat-item:first-child {
    border-top: none;
}

.sidebar-cats a {
    color: #fff;
    text-decoration: none;
}

.sidebar-cats .cat-ic {
    width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0.95;
}

.sidebar-cats .cat-count {
    color: #000;
    /* yellow count */
    font-weight: 600;
}

.sidebar-cats .cat-item a:hover .cat-name,
.sidebar-cats .cat-item a:hover .cat-ic,
.sidebar-cats .cat-item a:hover .cat-count {
    color: #f05623;
}

span.cat-name,
span.cat-ic {
    color: #000;
}

.sidebar-cats .cat-name,
.sidebar-cats .cat-ic,
.sidebar-cats .cat-count {
    transition: color 0.25s ease;
}

/* new updates css end here */

/* blog detail css start here */


.new-update-detail-page .trusted-divider {
    width: 120px;
    height: 2px;
    background-color: #6c7f86;
}

.new-update-detail-page .resident-comment-box {
    border: 1px solid #f05326;
}

.new-update-detail-page .resident-comment-box {
    position: relative;
    padding: 24px 24px 24px 56px;
}

.new-update-detail-page .quote-mark {
    position: absolute;
    top: 35px;
    left: 30px;
    font-size: 48px;
    color: #f05623;
}

.new-update-detail-page .gt-difference-list li {
    margin-bottom: 8px;
    list-style-type: circle;
}

.new-update-detail-page .gt-difference-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

.new-update-detail-page .share-btn {
    width: 36px;
    height: 36px;
    color: #f05623;
    border-radius: 50%;
    border: 1px solid #f05326;
    background: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.new-update-detail-page .share-btn:hover {
    background-color: #f05326;
    color: #ffffff;
}

.new-update-detail-page .share-divider {
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.new-update-detail-page .comment-input-group {
    position: relative;
}

.new-update-detail-page .comment-input-group i {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #f05326;
    pointer-events: none;
}

.new-update-detail-page .comment-textarea-group i {
    top: 18px;
    transform: none;
}

.new-update-detail-page .comment-submit-btn {
    position: relative;
    overflow: hidden;
    background: #f05326;
    color: #fff;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    transition: color 0.8s ease;
    border: 1px solid #f05326;
}

.new-update-detail-page .comment-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: skewX(-25deg);
}

.new-update-detail-page .comment-submit-btn:hover::before {
    left: 125%;
    transition: left 0.6s ease;
}

/* .comment-form {
            width: 140%;
        } */

.new-update-detail-page .form-control:focus {
    border-color: #f05326;
    box-shadow: 0 0 0 .02rem #f05326;
}

.new-update-detail-page .sidebar-recent .thumb-wrap img {
    width: 70px;
    height: 60px;
    object-fit: cover;
}

.new-update-detail-page .comment-error {
    font-size: 13px;
    color: #d93025;
    margin-top: 6px;
}

/* Error input */
.new-update-detail-page .comment-input-error {
    outline: 2px solid #d93025;
}

.new-update-detail-page .sidebar-recent .title-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-update-detail-page .sidebar-recent .mini {
    width: 55px;
    height: 3px;
    background: #000;
    border-radius: 10px;
}

.new-update-detail-page .sidebar-recent .full,
.new-update-detail-page .popular-tags-card .full {
    flex: 1;
    height: 2px;
    background: #000;
    border-radius: 10px;
}

.new-update-detail-page .sidebar-recent .recent-item {
    align-items: flex-start;
}

.new-update-detail-page .sidebar-recent .thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-update-detail-page .sidebar-recent .post-title {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 4px;
}

.new-update-detail-page .sidebar-recent .post-date {
    color: #000;
    font-size: 14px;
}

.new-update-detail-page .sidebar-recent .recent-item.active .post-title,
.new-update-detail-page .sidebar-recent .recent-item:hover .post-title {
    color: #f05623;
}

.new-update-detail-page .sidebar-recent .link-ic {
    display: none;
}

.new-update-detail-page .sidebar-recent .thumb-wrap {
    position: relative;
    width: 70px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.new-update-detail-page .sidebar-recent .link-ic {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    color: #f6c23e;
    font-size: 22px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.new-update-detail-page .sidebar-recent .recent-item:hover .link-ic {
    opacity: 1;
}

.new-update-detail-page i.bi.bi-reply-fill.me-2 {
    color: #f05326;
}

/* blog detail css end here */

/* properties page css start here */

.properties .prop-hero-section {
    background: linear-gradient(rgb(54 64 71 / 88%), rgb(32 37 41 / 40%)),
        url('/image/photorealistic-sustainable-garden-with-home-grown-plants.webp') center/cover no-repeat;
    height: 50vh;
    position: relative;

}

/* Dark overlay */
.properties .prop-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 25, 40, 0.7); */
}

.properties .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.properties .bread-crumb-a a {
    text-decoration: none;
    color: #fff;
}

.properties .bread-crumb-a a:hover {
    color: #f05623;
}

.properties .top-search {

    margin: -25px;
}

.properties .search-box {
    background: #fff;
    border-radius: 8px;
    padding: 6px;
}

.properties .search-box input {
    border: none;
    box-shadow: none;
}

.properties .search-box button {
    border-radius: 6px;
    background: #f05623;
    border: none;
    color: #fff;
}

.properties .slider-track {
    display: flex;
    gap: 24px;

    overflow-x: auto;
    scroll-behavior: smooth;

    scrollbar-width: none;
    /* Firefox */
}

.properties .slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.properties .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    color: #f05623;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px #f05623;
    cursor: pointer;
    z-index: 10;

}

.properties .slider-btn:hover {
    background-color: #f05623;
    color: #ffffff;
}

.properties .left-btn {
    left: -15px;
}

.properties .right-btn {
    right: 0px;
}

.properties .slider-btn:disabled {
    /* opacity: 0.4;
            cursor: not-allowed; */
    display: none;
}

.properties .area-card {
    min-width: 32%;
}

.properties .area-img {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    /* matches Bootstrap rounded */
}

.properties .area-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transform: skewX(-20deg);
}

.properties .area-card:hover .area-img::after {
    animation: img-shine 0.8s ease;
}

@keyframes img-shine {
    0% {
        left: -80%;
    }

    100% {
        left: 130%;
    }
}


/* properties page css end here */

/* disclaimer page css start here */

.disclaimer-page .hero-section {
    background: linear-gradient(rgb(54 64 71 / 88%), rgb(32 37 41 / 40%)),
        url("/image/photorealistic-sustainable-garden-with-home-grown-plants.webp") center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    height: 50vh;
}

.disclaimer-page h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
}

.disclaimer-page .bread-crumb-a a {
    text-decoration: none;
    color: #fff;
}

.disclaimer-page .bread-crumb-a a:hover {
    color: #f05623;
    ;
}

.disclaimer-page .section-divider {
    width: 80px;
    height: 2px;
    background-color: #6c757d;
    margin: 25px auto;
}

/* disclaimer page css end here */

/* terms and conditions page css start here */

.tandc-page .hero-section {
    background: linear-gradient(rgb(54 64 71 / 88%), rgb(32 37 41 / 40%)),
        url("/image/photorealistic-sustainable-garden-with-home-grown-plants.webp") center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    height: 50vh;
}

.tandc-page h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
}

.tandc-page .bread-crumb-a a {
    text-decoration: none;
    color: #fff;
}

.tandc-page .bread-crumb-a a:hover {
    color: #f05623;
    ;
}

.tandc-page .section-divider {
    width: 80px;
    height: 2px;
    background-color: #6c757d;
    margin: 25px auto;
}

/* terms and conditions page css end here */

/* privacy and policy page css start here */

/* Hero section */
.privacy-policy-page .hero-section {
    background: linear-gradient(rgb(54 64 71 / 88%), rgb(32 37 41 / 40%)),
        url("/image/photorealistic-sustainable-garden-with-home-grown-plants.webp") center/cover no-repeat;
    background-attachment: fixed;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.privacy-policy-page h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
}

.privacy-policy-page .bread-crumb-a a {
    text-decoration: none;
    color: #fff;
}

.privacy-policy-page .bread-crumb-a a:hover {
    color: #f05623;
    ;
}

.privacy-policy-page .section-divider {
    width: 80px;
    height: 2px;
    background-color: #6c757d;
    margin: 25px auto;
}

/* privacy and policy page css end here */

/* about us page css start here */

/*hero fix*/
.about-us .page-header-section {
    height: 50vh;
    background: linear-gradient(rgb(54 64 71 / 88%), rgb(32 37 41 / 40%)),
        url("/image/about-us/about-us-banner.webp") center/cover no-repeat;
    position: relative;
}

/*hero fix end*/

.about-us .page-header-section::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-us .page-header-section .page-header-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
    content: '→';
}

.about-us .page-header-section .container {
    position: relative;
    z-index: 2;
}

/* .about-us .page-header-section .page-header-link {
    color: #ffffff;
    text-decoration: none;
}

.about-us .page-header-section .page-header-link:hover {
    color: #f05623;
} */

.about-us .why-choose-section {
    background-color: #ffffff;
    color: #000000;
}

.about-us .sourcing-process-section .why-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 40px;
    border: 1px solid #f05623;
    color: #000000;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;

}

.about-us .sourcing-process-section .why-btn:hover {
    background-color: #f05623;
    color: #fff;
}

.about-us .services-section {
    background-color: #f37017;
}

.about-us .sourcing-process-section {
    background: transparent;
    /* padding: 40px 0; */
}

.about-us .sourcing-process-title {
    font-weight: 700;
    color: #1a1a1a;

    text-align: left;
}

.about-us .sourcing-items-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-us .sourcing-text-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.about-us .sourcing-text-item:hover {
    background: #fff1ed;
    border-radius: 8px;
}

.about-us .sourcing-text-item-active {
    background: #fff1ed;
    border-left: 3px solid #f05623;
}

.about-us .sourcing-item-icon {
    width: 50px;
    height: 50px;
    background: #f5815f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    /* color: #0061ff; */
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.about-us .sourcing-text-item:hover .sourcing-item-icon {
    background: #f05623;
    color: #ffffff;
    transform: scale(1.1);
}

.about-us .sourcing-text-item-active .sourcing-item-icon {
    background: #f05623;
    color: #ffffff;
}

.about-us .sourcing-item-content {
    flex: 1;
}

.about-us .sourcing-item-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: none;
}

.about-us .sourcing-text-item-active .sourcing-item-text {
    display: block;
}

.about-us .sourcing-link {
    color: #0061ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.about-us .sourcing-link:hover {
    text-decoration: underline;
    color: #0050cc;
}

.about-us .sourcing-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.about-us .sourcing-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us .sourcing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


.about-us .sourcing-image-active {
    opacity: 1;
    z-index: 10;
}

.about-us .sourcing-carousel-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.about-us .sourcing-carousel-dot {
    width: 12px;
    height: 12px;
    background: #c5c5c5;
    border: none;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 0;
    cursor: pointer;
    outline: none;
}

.about-us .sourcing-carousel-dot:hover {
    background: #a0a0a0;
    transform: scale(1.15);
}

.about-us .sourcing-carousel-dot.active {
    background: #f05623;
    width: 14px;
    height: 14px;
    box-shadow: 0 2px 8px #f05623;
}

.about-us .sourcing-banner-section {
    background: transparent;
    padding: 0;
}

.about-us .sourcing-banner-container {
    background: linear-gradient(135deg, #0061ff 0%, #004ec4 100%);
    border-radius: 16px;
    padding: 28px 40px;
    box-shadow: 0 4px 16px rgba(0, 97, 255, 0.2);
}

.about-us .sourcing-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-us .sourcing-banner-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-us .sourcing-banner-icon i {
    font-size: 28px;
    color: #ffffff;
}

.about-us .sourcing-banner-text {
    flex: 1;
}

.about-us .sourcing-banner-title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.about-us .sourcing-banner-btn-wrapper {
    text-align: right;
}

.about-us .sourcing-banner-btn {
    display: inline-block;
    background: #ffffff;
    color: #0061ff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-us .sourcing-banner-btn:hover {
    background: #f5f5f5;
    color: #0050cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-us .b2b-market-info-section {
    background: transparent;
    padding: 40px 0;
}

.about-us .b2b-market-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-us .b2b-market-info-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-us .vision-box {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-us .vision-box:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

}

.about-us .sourcing-icon {
    width: 50px;
    height: 50px;
    padding: 7px;
}

/* about us page css end here */

/* scroll to top icon css start here */

.scroll-top {
    z-index: 9999;
}

.scroll-btn {
    width: 56px;
    height: 56px;
    cursor: pointer;
    background: #f05623;
}

.progress-svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: #f05623;
    stroke-width: 4;
}

.progress-bar {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
}

/* scroll to top icon css end here */

/* properties detail page css start here */

.property-main .hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.property-main .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.property-main .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.property-main .hero-bg.next {
    transform: translateX(100%);
}

.property-main .hero-thumbs {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.property-main .thumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

.property-main .thumb-img {
    width: 55px;
    height: 45px;
    background-size: cover;
    background-position: center;
    transition: 0.3s;
}

.property-main .thumb-item.active {
    opacity: 1;
}

.property-main .thumb-item.active .thumb-img {
    width: 80px;
}

.property-main .slide-big-number {
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
}

.property-main .slider-btn {
    border: 1px solid #f05623;
}

.property-main .slider-btn:hover {
    background-color: #f05623;
    color: white;
    border: 1px solid #f05623;
}

/* ================= PROJECT STORY ================= */
.project-story .story-watermark {
    opacity: 0.06;
    pointer-events: none;
}

.project-story .story-watermark h1 {
    font-size: 100px;
    font-weight: 700;
}

.property-main .btn-letter {
    letter-spacing: 2px;
    font-size: 13px;
    border: 1px solid #f05623;
    color: black;
}

.property-main .btn-letter:hover {
    background-color: #f05623;
    color: white;
    border: 1px solid #f05623;
}

/* galary image css */

.property-main .gallery-label {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.property-main .image-viewer {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
}

.property-main .image-viewer img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.property-main .viewer-close,
.property-main .viewer-nav {
    position: absolute;
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
}

.property-main .viewer-close {
    top: 20px;
    right: 30px;
    font-size: 40px;
}

.property-main .viewer-nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
}

.property-main .viewer-nav.prev {
    left: 30px;
}

.property-main .viewer-nav.next {
    right: 30px;
}

.property-main .image-counter {
    position: absolute;
    bottom: 20px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
}

/* lifestyle css comment-out section*/

.property-main .lifestyle-final {
    background: #fff;
    overflow: hidden;
}

.property-main .lifestyle-image {
    position: relative;
    z-index: 2;

    margin-left: 20px;
    transform: translateX(20px);
}

.property-main.lifestyle-card {
    background: #e6e6e6;
    padding: 90px 80px;
    margin-left: -20px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.property-main .lifestyle-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* connectivity section */
.property-main .connectivity-section {
    background: #fff;
}

.property-main .connectivity-card {
    background: #f05623;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 0 5px #f05326; */
}

/* map css */
.property-main .map-section {
    background: #fff;
}

.property-main .map-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
}

.property-main .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* amenities card  */
.property-main .info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 0px 5px #f05623;
    transition: 0.3s ease;
    height: 100%;
}

.property-main .info-card:hover {
    transform: translateY(-6px);
}

.property-main .icon-circle {
    width: 70px;
    height: 70px;
    border: 2px solid #f05623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #000000;
    font-size: 30px;
    background-color: #f05623;
}

.property-main .icon-circle i {
    font-size: 42px;
    color: #ffffff;
}


.property-main .info-card h6 {
    font-weight: 600;
    color: #000000;
    margin-bottom: 6px;
}

.property-main .info-card p {
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.property-main .brochure-btn {
    background-color: white;
    color: black;
    border: 1px solid #f05623;
    font-size: 16px;
    letter-spacing: 1px;
}

.property-main .brochure-btn:hover {
    background-color: #f05623;
    color: white;
    border: 1px solid #f05623;
}

.property-main .custom-icon1 {
    font-size: 48px;
    color: #4a4d5b;
    transition: color 0.3s ease;
}

.property-main .custom-icon2 {
    font-size: 48px;
    color: #f05623;
    transition: color 0.3s ease;
}

.property-main .project-highlight {
    background-color: #fff1ed;
}

.property-main .wc-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* properties detail page css end here */

.bg-alternate {
    background: #fff1ed;
}

.opened-page {
    color: #f05623;
}