body {
    font-family: "Poppins", sans-serif;
}

.primary-bg {
    background-color: #4D4036 ;
    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;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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: #4D4036;
    color: white;
    border-radius: 32px;
    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: #4D4036;
    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;
}

.hero-banner {
    margin-top: 4rem;
    position: relative;
}

.banner-carousel img {
    width: 100%;
    height: 94vh;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0000008f 35%, transparent);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    color: white;
}

/* Your existing text styles remain unchanged */
.banner-address {
    position: relative;
    font-size: 18px;
    display: inline-block;
}

.banner-address::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16%;
    width: 3rem;
    border: 1px solid #fff;
}

.banner-address::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -16%;
    width: 3rem;
    border: 1px solid #fff;
}

.banner-name {
    font-size: 2rem;
    font-weight: 500;
}

.banner-type {
    font-size: 2.2rem;
    font-weight: 700;
    height: 4.2rem;
    position: relative;
}

.banner-type::before {
    content: "";
    width: 18rem;
    height: 1rem;
    bottom: 5px;
    left: 55%;
    transform: translateX(-50%);
    background-image: url("../img/banner-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
}

.banner-highlight p {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 18px;
    margin-bottom: 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    transform: skew(-8deg);
    border: 1px solid #e6e6e6;
}

.banner-highlight p * {
    transform: skew(8deg);
}

.banner-highlight p i {
    background: #422006;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
}

/* HOVER */
.banner-highlight p:hover {
    background: #fff7f1;
    border-color: #ff7a21;
    cursor: pointer;
}




#project-overview {
    padding: 4rem 0 3rem;
    background-color: #F4F0E9;
    position: relative;
}


.banner-form-section {
    display: none;
}

.banner-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.12);
}

.banner-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
}

.input-box {
    position: relative;
    margin-bottom: 1rem;
}

.input-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
}

.input-box input {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.input-box input:focus {
    border-color: #4D4036;
    box-shadow: 0 0 0 2px rgba(229, 112, 42, 0.2);
}

.btn-submit {
    width: 100%;
    background: #4D4036;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #c95e22;
}

.btn-call {
    display: block;
    width: 100%;
    margin-top: 0.8rem;
    text-align: center;
    padding: 12px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-call:hover {
    background: #333;
}

.sec-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    color: #555;
    margin-bottom: 1.2rem;
    text-align: center;
}

.sec-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

.project-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background-color: #4D4036;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #4D4036;
    transition: 0.3s;
}

.project-btn a i {
    font-size: 1.1rem;
}

.sec-text {
    font-size: 1.05rem;
    color: #555;
}

.overview-img img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature-box {
    background: #fff;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-6px);
}

.feature-box h3 {
    margin: 0;
    font-weight: 700;
    color: #4D4036;
    font-size: 1.4rem;
}

.feature-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}



#price {
    padding: 4rem 0rem;
    background-color: rgba(255, 255, 255, 0.041);
    background-image: url("../img/wave-shade.png");
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
}

.pricing-card {
    position: relative;
    border-radius: 6px;
}

.white-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 6px;
    text-align: left;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.white-card h2 {
    font-size: 32px;
    margin: 0;
    font-weight: 600;
}

.onwards {
    margin-top: 5px;
    font-size: 17px;
    color: #555;
}

.line {
    height: 1px;
    width: 100%;
    background: #dcdcdc;
    margin: 25px 0;
}

.card-type {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 5px;
}

.card-size,
.projects {
    font-size: 20px;
    color: #555;
}

.green-bar {
    height: 10px;
    background: #4D4036;
    width: 100%;
}

.card-bottom {
    padding: 18px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 6px 6px;
}

.price-card-bg {
    background: #4D4036;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.mirror-shine {
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.mirror-shine:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.20);
}

.mirror-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: none;
}

.mirror-shine:hover::after {
    animation: shine-slide 0.9s ease forwards;
}

@keyframes shine-slide {
    0% {
        left: -120%;
    }

    100% {
        left: 180%;
    }
}


.purchase-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}


#highlight {
    padding: 4rem 0rem;
    background-color: #F4F0E9;
    position: relative;
}

#highlight::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("../img/gallery4.webp");
    border-left: 5px solid #000;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.highlight-points {
    max-width: 60%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.highlight-points .sec-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.points-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
}

.points-list li:last-child {
    border-bottom: none;
}

.points-list li i {
    color: #c95e22;
    margin-right: 12px;
}


#amenities {
    padding: 4rem 0rem;
    background-color: #F4F0E9;
    position: relative;
}

#amenities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50.3%;
    height: 100%;
    background-image: url("../img/gallery5.webp");
    border-right: 5px solid #000;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.amenities-box {
    position: relative;
    z-index: 1;
}

.amenities-txt h4 {
    background-color: #4D4036;
    border-radius: 50%;
    padding: 15px;
    width: 4rem;
    height: 4rem;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.amenities-img img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}



.amenities-txt h1 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
}

.amenities-slider {
    background-color: #fff;
    padding: 1rem;
    border-radius: 12px;
}

#amenities .item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}




.floor-plan-section {
    padding: 60px 0;
    text-align: center;
    background-image: url("../img/white-bg.png");
    background-position: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.floor-plan-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.floor-plan-card {
    background: #fff;
    border-radius: 12px;
    width: 30%;
    min-width: 280px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.floor-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.fp-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border-bottom: 2px solid #000;
}


.fp-img img {
    width: 100%;
    display: block;
    filter: blur(3px);
    transition: 0.4s ease;
}

.floor-plan-card:hover .fp-img img {
    transform: scale(1.04);
}

.fp-img-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.65);
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    opacity: 1;
    transition: 0.3s ease;
}

.floor-plan-card:hover .fp-img-btn {
    background: linear-gradient(45deg, #362d27, #4D4036);
    transform: translate(-50%, -50%) scale(1.06);
}

.floor-plan-card h4 {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 600;
}





#gallery {
    padding: 4rem 0;
    background-color: #F4F0E9;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #222;
}

/* Carousel Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Navigation Buttons */
.owl-nav button {
    background: #ffffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px !important;
    color: #d66228 !important;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
    transition: .3s ease;
    position: absolute;
    top: 40%;
}

.owl-nav button:hover {
    background: #d66228 !important;
    color: #fff !important;
}

.owl-nav .owl-prev {
    left: -60px;
}

.owl-nav .owl-next {
    right: -60px;
}


.location-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.location-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Text side */
.location-text {
    flex: 1 1 45%;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.advantage-list li {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
        border: 1px solid #000;
    padding: 10px;
}

.advantage-list li i {
    color: #4D4036;
    margin-right: 12px;
    font-size: 1.2rem;
}

.btn.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #4D4036;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn.btn-primary:hover {
    background: #4D4036;

}


/* Image side */
.location-image {
    flex: 1 1 45%;
    text-align: center;
}

.location-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.location-image img:hover {
    transform: scale(1.03);
}



.main-footer {
    background-color: #fff;
    background-image: url("../img/map_bg.png");
    color: #000000;
    padding: 60px 0 25px;
    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: #4D4036;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 12px;
    color: #000000;
}

.footer-about .call-box {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.footer-about .call-box i {
    background: #4D4036;
    color: #fff;
    padding: 14px;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 18px;
}

.footer-form {
    padding: 20px;
    min-width: 400px;
    border-radius: 15px;
    background-color: #F4F0E9;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-form input {
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 4px;
    font-size: 14px;
}

.footer-form button {
    background: #4D4036;
    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: #e45d00;
}

.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: #4D4036;
    text-decoration: none;
}



@media screen and (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) {
    .banner-carousel img {
        height: 100%;
    }

    .banner-name {
        font-size: 26px;
    }

    .banner-type {
        font-size: 28px;
        height: 55px;
    }

    .banner-highlight {
        padding: 20px 4px;
    }

    .banner-address::before,
    .banner-address::after {
        width: 2rem;
    }
   

    .feature-box {
        padding: 12px;
    }

    .overview-img img {
        min-height: 500px;
    }

    .sec-title {
        font-size: 30px;
    }

    .banner-highlight p {
        padding: 9px 10px;
        font-size: 14px;
    }

}



@media(max-width:768px) {
  
    .banner-type {
        height: 100%;
    }

    .banner-name {
        font-size: 25px;
        font-weight: 600;

    }

    .banner-type {
                font-size: 19px;
        height: 55px;
    
    }

    .banner-address::before,.banner-address::after {
       display: none;
    }

    .banner-text {
        color: #000000;
        background-image: url("../img/white-bg.png");
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .banner-highlight {
        width: 100%;
    }

    .banner-address::after {
        right: -34%;
        width: 3rem;
        border: 1px solid #000;
    }

    .banner-type::before {
        filter: brightness(0);
    }

    .banner-form-section {
        display: block;
    }

    .banner-form {
        display: block;
        padding: 1rem;
        max-width: 100%;
    }

    .banner-text {
        left: 0;
    }

    #highlight::before,
    #amenities::before {
        display: none;
    }

    .highlight-points {
        max-width: 100%;
    }

    #amenities {
        padding: 0rem 0rem 2rem 0rem;
    }

    .enquiry-box {
        display: none !important;
    }

    .footer-form {
        min-width: 100%;
        margin-top: 1rem;
    }

    .advantage-list {
        text-align: start;
    }

    .location-text ul li {
        justify-content: start;
    }

    .floor-plan-card {
        min-width: 100%;
    }

    .location-content {
        flex-direction: column-reverse;
    }

    .location-text,
    .location-image {
        flex: 1 1 100%;
        text-align: center;
    }

    .location-text ul li {
        justify-content: center;
    }

    .owl-nav .owl-prev {
        left: -10px;
    }

    .owl-nav .owl-next {
        right: -10px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    #project-overview {
        padding: 0rem 0rem 2rem 0rem;
    }

    .banner-form-section {
        position: relative;
        top: 0;
    }

    .banner-form-section {
        padding: 1rem;
    }

    .banner-carousel img {
        height: auto;
        object-fit: cover;
    }

    .banner-overlay {
        display: none;
    }

    .banner-text {
        position: static;
        transform: none;
        padding: 1.5rem 1rem;
        text-align: left;
        color: #222;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .sec-title {
        font-size: 1.4rem;
        text-align: center;
    }
    .sec-text{
        text-align: justify;
    }
    .white-card h2{
        font-size: 28px;
    }
    .section-title,.location-text h2,.gallery-title{
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .mobile-bottom-bar {
        display: flex;
    }
}