body {
    font-family: "Poppins", sans-serif;
}

.primary-bg {
    background-color: #C28563;
    display: inline-block;
    border-radius: 15px;
    font-size: 17px;
    color: #fff;
    font-weight: 700;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    /* background-image: url("../img/line-bg.webp"); */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ddd;
    padding: 0;

}

.navbar-nav .nav-link {
    font-weight: 600;
}


.navbar-toggler:focus {
    box-shadow: none;
}



/* ALIGNMENT FIX */
.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-collapse {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
    position: absolute;
    top: 95%;
    left: 5%;
}

/* CALL BUTTON */
.custom-call-btn {
    padding: 10px 24px;
    background: #1a5545;
    color: #cfb27a;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}



/* MOBILE BOTTOM BAR (FINAL DESIGN) */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ccc;
    display: none;
    z-index: 2000;
}

.mobile-bottom-bar .bottom-btn {
    width: 33.33%;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #1a5545;
    border: none;
    outline: none;
    text-decoration: none;
}

.mobile-bottom-bar .bottom-btn:nth-child(1),
.mobile-bottom-bar .bottom-btn:nth-child(2) {
    border-right: 1px solid #ccc;
}

.mobile-bottom-bar .bottom-btn:active {
    background: #f3f3f3;
}

.form-call {
    background: #1a5545;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: .3s;
    display: flex;
    width: 100%;
    padding: 6px 12px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}




#banner {
    position: relative;
    padding: 6rem 0 0rem 0rem;
    background: url("img/white-bg.png");
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

#banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20vh;
    background-color: #f5efe3;
    left: 0;
    bottom: 0;
    /* clip-path: polygon(0 0, 95% 0, 100% 0%, 95% 100%, 0 100%); */
    z-index: 0;
}

.banner-layout {
    max-width: 1420px;
    margin: auto;
}


.banner-top {
    margin-bottom: 2.5rem;
}

.badge-launch {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #4e380d;
    background: rgba(15, 90, 50, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.banner-project-name h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4e380d;
    margin-bottom: 0.5rem;
}

.banner-project-name .location {
    font-size: 19px;
    font-weight: 700;
    color: #555;
    margin: 0;
}

.banner-project-name .location i {
    color: #4e380d;
    margin-right: 6px;
}

.banner-price {
    position: relative;
    display: inline-block;
    background: #4e380d;
    color: #fff;
    padding: 1.2rem 2.2rem;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.banner-price:before {
    content: "";
    position: absolute;
    left: 3%;
    top: 8%;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #ddd;
}


.banner-price h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.banner-price span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.85;
}


.banner-body {
    position: relative;

}


.banner-image {
    position: relative;
    overflow: hidden;
}

/* .banner-image::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
} */

.banner-image img {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1;
}

.banner-image:hover img {
    transform: scale(1.05);
}

.banner-highlight h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.banner-highlight {
    background: #ffffff;
    padding: 2rem 1.2rem;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.banner-highlight::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(15, 90, 50, 0.08);
    border-radius: 50%;
}

.banner-highlight ul {
    padding: 0;
    margin: 0;
}

.banner-highlight ul li {
    list-style: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.banner-highlight ul li i {
    color: #4e380d;
    font-size: 0.9rem;
    margin-top: 3px;
}



/* SECTION */

#overview {
    padding: 4rem 0;
    background: #1a5545;
    /* background-image: url(../img/white-bg.png); */
    position: relative;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #ddd;
}


#overview:after {
    position: absolute;
    content: '';
    top: -240px;
    right: -189px;
    width: 30%;
    height: 60%;
    background: #ffffff57;
    border-bottom-left-radius: 40px;
    transform: rotate(-15deg);
}



#overview .container {
    position: relative;
    z-index: 2;
}

/* IMAGE */

.overview-image {
    position: relative;
    width: 100%;
    height: 24rem;
}

.overview-image img {
    width: 100%;
    height: 100%;
}

.overview-image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: #ffffffe3;
    pointer-events: none;
    z-index: -1;
}

.overview-image::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -42px;
    width: 200px;
    height: 350px;
    background-image: radial-gradient(circle, rgba(118, 112, 112, 0.281) 2px, #56555500 2px);
    background-size: 8px 8px;
    z-index: -1;
    display: none;
}

.overview-image {
    position: relative;
}



/* TEXT */
.overview-content h1 {
    color: #cfb27a;
    font-size: 16px;
    font-weight: 600;
}

.overview-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #cfb27a;
    letter-spacing: 1px;
}

.overview-content p {
    color: #ffffff;
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.overview-points {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    color: #000;
}

.overview-points li {
    margin-bottom: .4rem;
    font-weight: 600;
    position: relative;
    padding-left: 22px;
}

.overview-points li::before {
    content: "›";
    position: absolute;
    left: 0;
    font-size: 18px;
    font-weight: 700;
    color: #133c55;
}

/* price */


.pricing-area {
    background: #1a55450f;
    padding: 80px 0;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.pricing-title {
    font-weight: 600;

}

/* CARD */

.pricing-card {
    background: #fff;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    position: relative;
}

/* .pricing-card:after {
        position: absolute;
        content: '';
        top: 38px;
        left: 20px;
        width: 100%;
        height: 77%;
        background: #cfb27a42;
        border-bottom-left-radius: 40px;
        z-index: 0;

    } */

.pricing-card:hover {
    transform: translateY(-8px);
}

/* HEAD */
.pricing-card-head {
    padding: 5px 0;
    color: #cfb27a;
    font-weight: 600;
}

.pricing-card-head h4 {
    font-weight: 400;
    margin-bottom: 0;
}

/* BODY */

.pricing-card-body {
    padding: 0 20px 20px;
    position: relative;
    z-index: 1;
}

.pricing-card-body h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding: 12px 25px 10px;
    color: #1a5545;
}

.pricing-card-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card-body ul li {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #222;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.pricing-card-body ul li span {
    font-weight: 600;
    color: #35443f;
}

/* BUTTON */
.pricing-btn {
    background: #1a5545;
    padding: 3px 14px 5px;
    color: #cfb27a;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

/* VARIANTS */
.pricing-basic .pricing-card-head,
.pricing-standard .pricing-card-head,
.pricing-premium .pricing-card-head {
    background: #1a5545;
}

/* RESPONSIVE */

@media (max-width: 767px) {

    .pricing-card-body h2 {
        font-size: 1.7rem;
    }

    .amenity-card h4 {
        font-size: 1.7re !important;
    }

    .pricing-title {
        font-size: 1.7rem;
    }

}

/* end */


#amenities {
    padding: 4rem 0;
    background: url("../img/white-grey-bg.webp");
    background: #fff;
}

.amenities-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.amenities-text {
    font-size: 1rem;
    color: #555;
}

/* Carousel Capsule Card */
.amenity-card {

    border-radius: 50px;
    padding: 2rem;
    min-height: 400px;
    text-align: center;
    transition: 0.3s ease;
}

.amenities-des {
    background-color: #cdb37a57;
    background-image: url("../img/line-bg.webp");
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.amenity-card h4 {
    color: #393939;
    font-weight: 600;
    font-size: 32px;

}

.amenity-card:hover {
    transform: translateY(-8px);
}

/* Capsule Image */
.amenity-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    /* margin: 0 auto 1rem; */
}

.amenity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rating */
.rating {
    font-size: 1.3rem;
    color: #1a5545;
    margin-bottom: 0.7rem;
}

/* Description */
.amenity-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.project-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background-color: #ffffff;
    color: #1a5545;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

/* 
#highlights {
    padding: 2rem 0;
    background: #F4F0E9;
    background-image: url("../img/white-bg.png");
    position: relative;
    overflow: hidden;
}

.highlight-hed p {
    text-transform: uppercase;

}

.highlight-hed {
    width: 80%;
    text-align: center;
}

.highlight-image img {
    width: 100%;
    min-height: 555px;
    object-fit: cover;
    border-radius: 12px;
}

.highlights-point {
    padding: 1.2rem;
    border-left: 2px solid #1a5545;
}

.highlight-box {
    background-color: #1a5545;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: .8rem;
    margin-bottom: 1rem;
    border-radius: 12px;
}

.highlight-box h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding-top: 5px;
}

.highlight-box h4::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 3px solid #1a5545;
    background-color: #fff;
    position: absolute;
    left: -28px;
    top: 40%;
}

@media(max-width:768px) {
    .highlight-image img {
        width: 100%;
        min-height: 100%;
        object-fit: contain;
        border-radius: 12px;
    }
} */


/* highlight */


.highlight-section {
    background: #cdb37a57;
    padding: 4rem 0 !important;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.highlight-box {
    /* background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative; */
}

/* Title Style */
.highlight-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-title h2 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.highlight-title p {
    color: #777;
    margin: 0;
}

/* List */
.highlight-list {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    background: #1a5545;
    padding: 4px 4px;
    white-space: nowrap;
}

.highlight-item span {
    font-size: 18px;
    color: #cfb27a;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
    font-weight: 400;
}

.highlight-item p {
    margin: 0;
    font-weight: 500;
    color: #333;
    background: #ffffff;
    padding: 10px 20px;
    border-top-left-radius: 70px;
    border-bottom-left-radius: 70px;
    width: 100%;
    white-space: break-spaces;
}

/* Right Image */

.highlight-image {
    background: #1a5545;
    padding: 2px;
    border-radius: 0px;
    height: 30rem;
}

.highlight-image img {
    height: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .highlight-box {
        padding: 30px;
    }

    .option-badge {
        font-size: 40px;
    }

    .amenities-title {
        font-size: 1.7rem;
    }

    .highlight-image {
        height: auto;
    }

    .highlight-section {
        padding: 0rem 0 !important;
    }

}


/* end */

.sec-title {
    margin-bottom: 2rem;
}

.sec-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.sec-title h4 {
    font-weight: 600;
}

#location {
    padding: 4rem 1rem;
    background: #1a5545;
}

#location .container {
    /* background-color: #f8f4ef; */
    /* background-image: url('../img/white-map.png'); */
    border: 2px solid #cfb27a;
    background: #fff;
}

.location-advantage .border-bottom {
    border-bottom: 1px solid #0000002e !important;
}

.location-icon {
    background-color: #1a5545;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #cfb27a;
    width: 3rem;
    height: 3rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.map-image img {
    border: 3px solid #1a5545 !important;
    border-radius: 10px;
    margin-left: -65px;
}

.location-advantage p {
    line-height: 24px;
    color: #000000;
    font-weight: normal !important;
}















.main-footer {
    background-color: #fff;
    background-image: url("../img/map_bg.png");
    color: #000000;
    padding: 60px 0 1px;
    font-family: 'Poppins', sans-serif;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.main-footer .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-about h3,
.footer-form h3 {
    color: #1a5545;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #000000;
    font-weight: normal;
    font-size: 14px;
}

.footer-about .call-box {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.footer-about .call-box i {
    background: #1a5545;
    color: #fff;
    padding: 14px;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 18px;
    transform: rotate(90deg);
}

.footer-form {
    padding: 15px;
    min-width: 400px;
    background-color: #ffffff30;
    margin: 0 50px;
    text-align: center;
    padding: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-top: 18px solid #17433F;
    border-radius: 12px;
    border-left: 1px solid #17433F;
    border-right: 1px solid #17433F;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-form button {
    background: #1a5545;
    color: #fff;
    padding: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.footer-form button:hover {
    background: rgb(173 139 75);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 45px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #000000;
}

.footer-bottom a {
    color: #1a5545;
    text-decoration: none;
}

@media(max-width:1280px) {

    .re-title {
        font-size: 36px;
    }

    .re-subtitle {
        font-size: 23px;
    }
}


@media screen and (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) {
    .navbar-brand img {
        width: 110px;
    }

    .re-highlights li {
        padding: 10px;
    }

    .re-subtitle {
        font-size: 22px;
    }

    .re-title {
        font-size: clamp(30px, 9.5vw, 32px);
    }

    .re-company {
        font-size: 16px;
    }


}


@media(max-width:900px) {
    .navbar-brand img {
        width: 200px;
    }




    #overview::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    }

    .re-subtitle {
        font-size: 22px;
        margin-top: 15px;
    }


}

/* Small devices: extra tweaks */
@media(max-width:420px) {


    .loc-container {
        flex-direction: column;
    }

    .loc-right img {
        height: 350px;
    }
}

@media(max-width:768px) {
    .enquiry-box {
        display: none !important;
    }





    .price-hed h3 {
        font-size: 16px;
    }

    #overview {
        padding: 1rem 0rem 4rem 0rem;
    }

    .banner-form-section {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        background: #fff;
        padding: 12px;
    }


    .banner-form-section h3 {
        color: #ffffff;
        margin-bottom: 10px;
        background: #1a5545;
        padding: 4px 10px;
        text-align: center;
    }

    .overview-image {
        margin-bottom: 2rem;
        height: 100%;
    }

    .overview-image::after {
        height: 150px;
    }

    .overview-image::before {
        display: none;
    }

    .gallery-title {
        margin-bottom: 0 !important;
    }

    .gallery-section {
        padding: 1rem 0rem !important;
    }

    #location {
        padding: 1rem 5px;
    }

    .footer-about {
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 1.7rem;
    }

    .amenity-card {
        padding: 0;
    }

    #highlights {
        padding: 2rem 0rem;
    }

    .highlight-box {
        padding: 1.2rem 12px;
    }

    .gallery-card img {
        height: 250px !important;
    }



    .overview-image img {
        height: 200px;
    }

    .main-footer {
        padding: 31px 0 46px 0px !important;
    }



    .highlight-section h2 {
        padding: 1rem 0rem;
    }





    .overview-content h2 {
        font-size: 1.7rem;
    }



    .price-card {
        margin-top: 1.5rem;
    }

    #highlight {
        padding: 0;
        background-color: #fff;
    }

    .highlight-container {
        margin-top: 0;
    }

    .footer-form {
        min-width: 100%;
        margin: 0 !important;
    }
}



@media (max-width: 991px) {
    .mobile-bottom-bar {
        display: flex;
    }

    #banner::after {
        display: none;
    }

    .banner-price {
        margin-top: 1rem;
    }

    .banner-image img {
        height: 100%;
    }

    .banner-highlight {
        padding: 4px 1.2rem;
    }

    .banner-top {
        margin-bottom: 1rem;
    }

    .banner-project-name h1 {
        font-size: 1.8rem;
    }

    .banner-highlight h2 {
        font-size: 18px;
    }

    #amenities {
        padding: 1.5rem 0rem;
    }

    .amenity-img {
        height: 250px;
    }

    .amenity-card h4 {
        font-size: 24px !important;
    }

    .amenities-des {
        height: auto;
        padding: 20px 20px;
    }

    .modal-lg, .modal-xl {
        width: 100% !important;
    }

    .modal{
        padding: 20px !important;
    }

    .pricing-area{
        padding: 50px 0;
    }

}