:root {
    --theme_color1: #BA9976;
    --theme_color2: #fff8af;
    --body_font: "Poppins", sans-serif;
    --heading_font: "Cormorant Garamond", serif;
}


/* career - start */

.nirala-career-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://transparenttextures.com');
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.5;
}

.nirala-hero-content {
    z-index: 10;
    text-align: center;
}

.nirala-main-title {
    color: #BA9976;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -2px;
}

.nirala-highlight-text {
    color: #BA9976;
    opacity: 0.7;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto;
}

/* Floating Elements */
.nirala-floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(111, 78, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
    border: 1px solid rgba(111, 78, 55, 0.05);
}

.nirala-card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.nirala-card-2 {
    top: 20%;
    right: 8%;
    animation-delay: 1s;
}

.nirala-card-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 2s;
}

.nirala-card-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.5s;
}

.nirala-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #BA9976;
}

.nirala-card-info span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #BA9976;
}

/* Buttons */
.nirala-btn-primary {
    background-color: #BA9976;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(111, 78, 55, 0.2);
    text-decoration: none;
    display: inline-block;
}

.nirala-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
    color: white;
    background-color: #5a3e2b;
}

/* Custom Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Decorative Icons */
.nirala-deco-icon {
    position: absolute;
    color: #BA9976;
    opacity: 0.15;
    font-size: 2rem;
    z-index: 1;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .nirala-floating-card {
        display: none;
    }

    .nirala-career-hero {
        min-height: 80vh;
    }
}

.nwc-career-section {

    /* overflow-x: hidden; */
    /* background: #fff; */
    color: #BA9976;
    position: relative;
}

.nwc-career-section .main_heading {

margin-bottom: 30px; 

}

.nwc-career-section .career-box {

    margin-bottom: 30px;

}

.nwc-job-card {
    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
    background: #fff;
    /* backdrop-filter: blur(10px);border: 1px solid #e4d3c7; */
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nwc-job-card:hover {
    /* transform: translateY(-8px); */
    /* background: #fff; */
    /* border-color: #BA9976; */
    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.5);
}

.nwc-icon-badge {
    width: 50px;
    height: 50px;
    background: #BA9976;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5rem;
}

.nwc-btn-apply {
    background: #BA9976;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.nwc-btn-apply:hover {
    /* background: #8b6b54;
            color: #fff;
            letter-spacing: 1px; */
}

.nwc-meta-item {
    background: rgba(111, 78, 55, 0.05);
    color: #000;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nirala-deco-icon.i-1 {
    top: 10%;
    left: 25%;
}

.nirala-deco-icon.i-2 {
    top: 60%;
    right: 25%;
}

.nirala-deco-icon.i-3 {
    bottom: 10%;
    left: 40%;
}

/* career - end */


/* enquiry popup - start */

.enquiry-popup-section .enquiry-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: scroll;
}

.enquiry-popup-section .enquiry-popup-overlay::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.enquiry-popup-section .enquiry-popup-content {
    background-color: #ffffff;
    /* width: 90%; */
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    position: relative;
}

.enquiry-popup-section .enquiry-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.enquiry-popup-section .enquiry-popup-overlay.show .enquiry-popup-content {
    transform: scale(1);
}

.enquiry-popup-section .popup-header {
    background-color: #BA9976;
    color: #ffffff;
    padding: 15px 25px;
    text-align: center;
    position: relative;
}

.enquiry-popup-section .popup-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.enquiry-popup-section .popup-header h2 i {
    margin-right: 10px;
}

.enquiry-popup-section .popup-header p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.enquiry-popup-section .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
}

.enquiry-popup-section .popup-form-container {
    padding: 15px 25px 15px 25px;
    background: #fdfaf7 url(https://www.transparenttextures.com/patterns/cubes.png);
}

.enquiry-popup-section .form-group {
    margin-bottom: 15px;
}

.enquiry-popup-section .form-group label {
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.enquiry-popup-section .input-group-custom {
    position: relative;
    width: 100%;
}

.enquiry-popup-section .input-group-custom i {
    position: absolute;
    left: 12px;
    top: 26px;
    transform: translateY(-50%);
    color: #BA9976;
    font-size: 1.1rem;
}

.enquiry-popup-section .input-group-custom input,
.enquiry-popup-section .input-group-custom textarea {
    width: 100%;
    padding: 8px 15px 8px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.enquiry-popup-section .input-group-custom textarea {
    padding-top: 12px;
    height: 80px;
    resize: vertical;
}

.enquiry-popup-section .input-group-custom.textarea-group i {
    top: 10px;
    transform: none;
}

.enquiry-popup-section .captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.enquiry-popup-section #captchaCode {
    background: #f0ebe8;
    color: #BA9976;
    padding: 8px 15px;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    border-radius: 5px;
    user-select: none;
    font-size: 18px;
    border: 1px dashed #BA9976;
}

.enquiry-popup-section .refresh-captcha {
    cursor: pointer;
    color: #BA9976;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.enquiry-popup-section .refresh-captcha:hover {
    transform: rotate(180deg);
}

.enquiry-popup-section .enquiry-submit-btn {
    background-color: #BA9976;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.enquiry-popup-section .enquiry-submit-btn:hover {
    background-color: #5d412d;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.3);
}

.enquiry-popup-section .success-message {
    display: none;
    text-align: center;
    padding: 40px;
    color: #27ae60;
}

.enquiry-popup-section .captcha-with-input {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.enquiry-popup-section .mb-0 {
    margin-bottom: 0 !important;
}

@media (max-width: 600px) {
    .enquiry-popup-section .enquiry-popup-content {
        width: 95%;
    }

    .enquiry-popup-section .captcha-with-input {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* enquiry popup - end */


/* rera - start */

.rera-section {
    position: relative;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

/* --- Content Styling --- */
.rera-logo-wrapper {
    margin-bottom: 25px;
    display: inline-block;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rera-logo {
    max-height: 60px;
    object-fit: contain;
}

.rera-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #BA9976;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.rera-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 80px;
    height: 4px;
    background: #BA9976;
    border-radius: 2px;
}

.rera-lead {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.rera-subheading {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    color: #BA9976;
    margin-bottom: 20px;
    font-family: poppins;
}

/* --- Custom List Points --- */
.rera-list {
    list-style: none;
    padding: 0;
}

.rera-list li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.699);
    backdrop-filter: blur(10px);
    border-left: 4px solid #BA9976;
    border-radius: 0 12px 12px 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.rera-list li:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.rera-list li i {
    color: #BA9976;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* --- CTA Button --- */
.rera-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #BA9976;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(111, 78, 55, 0.3);
    border: 2px solid #BA9976;
    margin-top: 20px;
}


.rera-btn:hover {
    background-color: transparent;
    color: #BA9976;
    transform: translateY(-3px);
}

/* --- Visual Composition (Right Side) --- */
.rera-visual-stack {
    position: relative;
    padding: 50px;
}

.rera-img-main {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

.rera-img-overlay {
    position: absolute;
    bottom: 37px;
    right: 37px;
    width: 60%;
    height: 60%;
    background: #BA9976;
    z-index: 1;
    border-radius: 30px;
    transform: translate(30px, 30px);
}

.rera-experience-card {
    position: absolute;
    top: 15%;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
    z-index: 3;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rera-experience-card img {

    width: 96px;

}

.experience-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #BA9976;
    line-height: 1;
}

.experience-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 600;
}

/* --- Responsiveness --- */
@media (max-width: 991px) {
    .rera-title {
        font-size: 2.5rem;
    }

    .rera-visual-stack {
        padding: 20px;
    }

    .rera-experience-card {
        top: -20px;
        left: 10%;
    }
}

/* rera - end */


/* rera showcase - start */

.rera-showcase-section {
    background: #fff;
    position: relative;
    overflow: hidden;
    /* background: #fdfaf7 url(https://www.transparenttextures.com/patterns/cubes.png); */
    /* background: #fdfaf7 url(https://www.transparenttextures.com/patterns/cubes.png); */
}

.rera-shoowcase-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    /* background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236f4e37' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
    pointer-events: none;
}

/* --- HEADERS --- */
.rera-sc-header-wrap {
    text-align: center;
}

.rera-sc-sub-label {
    font-size: 14px;
    letter-spacing: 5px;
    color: #BA9976;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.rera-sc-main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.rera-sc-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #BA9976;
}

/* --- CARD DESIGN --- */
.rera-sc-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 20px 0 20px;
}

.rera-sc-item-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(111, 78, 55, 0.1);
    border-radius: 0px;
    /* Sharp modern edges */
    padding: 40px 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    /* cursor: pointer; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid #e4d3c7;
}

.rera-sc-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #BA9976;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rera-sc-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 78, 55, 0.1);
    border-color: #BA9976;
}

.rera-sc-item-card:hover::before {
    height: 100%;
}

.project-name {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 311px;
}

.rera-sc-badge-id {
    display: inline-flex;
    align-items: center;
    background: #fdfaf8;
    border: 1px dashed #BA9976;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #BA9976;
    letter-spacing: 1px;
    margin-top: 15px;
}

.rera-sc-icon-box {
    position: absolute;
    top: 58px;
    right: 30px;
    font-size: 2rem;
    color: rgba(111, 78, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rera-sc-icon-box img {

    width: 50px;

}

.rera-sc-item-card:hover .rera-sc-icon-box {
    color: #BA9976;
}

/* --- UTILS --- */
.verified-stamp {
    font-size: 10px;
    text-transform: uppercase;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    letter-spacing: 1px;
    font-weight: 700;
}

.copy-btn {
    margin-left: 10px;
    cursor: pointer;
    color: #ccc;
    transition: 0.3s;
}

.copy-btn:hover {
    color: #BA9976;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 767px) {
    .rera-sc-card-grid {
        grid-template-columns: 1fr;
    }

    .rera-showcase-section {
        padding: 60px 0;
    }
}

/* rera showcase - end */


/* construction update - start */

.construction-update-section {
    position: relative;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    background-color: #fff;
}

.construction-update-section .main_heading {
    margin-bottom: 45px;
}

.construction-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    color: #BA9976;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 600;
    letter-spacing: -1px;
    opacity: 0;
}

/* Interactive Cards */
.construction-card-wrapper {
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

}

/* Staggered Layout Logic */


.construction-card-inner {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.construction-image-container {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.construction-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* transform: scale(1.1); */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Overlay & Content */
.construction-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(0deg,
            rgba(42, 42, 42, 0.95) 0%,
            rgba(42, 42, 42, 0.7) 75%,
            rgba(42, 42, 42, 0) 100%);
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.construction-project-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 35px;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
}

.construction-read-more {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.construction-read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #8B6B54;
    transform: translateX(-101%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover States */
.construction-card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
}

.construction-card-inner:hover .construction-image-container img {
    transform: scale(1);
}

.construction-card-inner:hover .construction-card-content {
    /* transform: translateY(0); */
}

.construction-card-inner:hover .construction-read-more::after {
    transform: translateX(0);
}

.construction-card-inner:hover .construction-read-more {
    color: var(--theme_color2);
    ;
}

/* Scroll Badge (Floating Detail) */
.construction-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #BA9976;
    color: white;
    padding: 20px;
    z-index: 10;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .construction-card-item:nth-child(even) {
        margin-top: 0;
    }

    .construction-image-container {
        height: 400px;
    }
}


/* construction update - end */


/* construction update inner - start */

.const-details-update-section {
    background-image: url("../images/bg-pattern.png");
    background-color: #fff;
    position: relative;
}

/* Timeline Logic */
.const-details-timeline-container {
    position: relative;
    padding: 40px 0;
}

.const-details-icon-box {
    width: 60px;
    height: 60px;
    background: #BA9976;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.const-details-status-badge {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #BA9976;
    background: rgba(111, 78, 55, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.const-details-intro-text {
    color: #2c1e15;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.const-details-highlight-card {
    border-left: 5px solid #BA9976;
}

.const-details-update-section .row {

    row-gap: 40px;

}

.const-details-update-section .project-construction-video video {

    border-radius: 16px;

}

@media (max-width: 767px) {

    .const-details-timeline-line,
    .const-details-timeline-progress {
        left: 20px;
    }

    .const-details-milestone-card {
        margin-left: 40px;
    }

    .const-details-timeline-container::before {
        left: 20px;
    }
}

.c-u-inner-section .main_heading {

    margin-bottom: 30px;

}

.c-u-inner-section .summary-head {

    margin-bottom: 30px;

}

.c-u-inner-section p {

    line-height: 1.6;

}

.c-u-inner-section .const-details-box {

    padding: 30px;

}

/* construction update inner - end */


/* cu image gallery - start */

.cu-img-update-section {
    overflow: hidden;
}

.cu-img-update-section {
    overflow: hidden;
}

.cu-img-heading-wrapper {
    position: relative;
}

.cu-img-main-heading {
    color: #BA9976;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    display: inline-block;
}

.cu-img-heading-line {
    height: 4px;
    width: 80px;
    background: #BA9976;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Gallery Grid */
.cu-img-gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 30px;
    justify-content: center;
}

.cu-img-gallery-item {
    position: relative;
    flex: 1 1 calc(25% - 20px);
    /* Equal 4 columns */
    max-width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 250px;
}

.cu-img-gallery-item:hover {
    transform: translateY(-10px);
    border-color: #BA9976;
    box-shadow: 0 20px 40px rgba(111, 78, 55, 0.25);
}

.cu-img-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.cu-img-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cu-img-gallery-item:hover .cu-img-gallery-img {
    transform: scale(1.1);
}

/* Overlay Effect */
.cu-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(111, 78, 55, 0.8), transparent);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.cu-img-gallery-item:hover .cu-img-overlay {
    opacity: 1;
}

.cu-img-view-btn {
    background: #fff;
    color: #BA9976;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.cu-img-gallery-item:hover .cu-img-view-btn {
    transform: scale(1);
}

.cu-img-status-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.cu-img-gallery-item:hover .cu-img-status-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cu-img-gallery-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .cu-img-gallery-item {
        flex: 1 1 100%;
    }

    .cu-img-main-heading {
        font-size: 1.8rem;
    }
}

.cu-img-update-section .cu-img-heading-wrapper p {
    margin-bottom: 25px;
    max-width: 800px;
    text-align: center;
}



/* cu image gallery - end */


/* our blogs - start */

.our-blogs-section .owl-item .blog_card {

    margin-bottom: 0;

}

.our-blogs-section .row {

    row-gap: 30px;

}

.our-blogs-section .blog_card {

    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);

}

.our-blogs-section .blog_card:hover {

    background: var(--theme_color1);

}

.our-blogs-section .blog_card:hover .date {

    background-color: #fff;
    color: var(--theme_color1);

}

.our-blogs-section .blog_card:hover .content h4 {

    color: #fff;

}

.our-blogs-section .blog_card:hover .content .readmore {

    color: #fff;

}

.our-blogs-section .blog_card:hover .content .readmore i {

    color: #fff;

}



/* our blogs - end */


/* blog details - start */

.blog-details-section {
    background-color: #fdfaf8;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    color: #2d241e;
    overflow-x: hidden;
}

.ux-article-container {
    position: relative;
}

.ux-main-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(111, 78, 55, 0.15);
    z-index: 1;
}

.ux-main-image {
    width: 100%;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ux-main-image-wrapper:hover .ux-main-image {
    transform: scale(1.05);
}

.ux-content-card {
    background: rgb(255 255 255 / 68%);
    backdrop-filter: blur(10px);
    margin-top: -100px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(111, 78, 55, 0.1);
}

.ux-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #BA9976;
    font-weight: 600;
}

.ux-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ux-meta-divider {
    width: 40px;
    height: 1px;
    background: #BA9976;
    opacity: 0.3;
}

.ux-heading-primary {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2d241e;
}

.ux-blog-details {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    column-count: 1;
}

@media (min-width: 992px) {
    .ux-blog-details {
        /* column-count: 2;
                column-gap: 40px; */
    }
}

.ux-floating-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #BA9976;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(111, 78, 55, 0.3);
}

/* Fancybox Customization */
.fancybox-content {
    border-radius: 15px;
}

.blog-details-section h3 {

    color: var(--theme_color1);
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;

}

/* blog details - end */


/* residential projects - start */

.c-card-ribbon {
    position: absolute;
    top: 12px;
    right: -32px;
    transform: rotate(45deg);
    background: var(--theme_color1);
    color: white;
    padding: 5px 35px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.residential-projects-section .construction-card-inner {

    position: relative;
    overflow: hidden;

}

/* residential projects - end */


/* project details - start */

/* Heading Styles */
.pr-ov-tagline {
    color: #BA9976;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pr-ov-tagline::after {
    content: "";
    height: 1px;
    width: 50px;
    background: #BA9976;
}

.pr-ov-section .row.ov-amn-cards {

    margin-bottom: 48px;

}

/* Enhanced Icon Grid */
.pr-ov-spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.pr-ov-spec-item:hover {
    border-color: #BA9976;
    box-shadow: 0 10px 20px rgba(111, 78, 55, 0.08);
    /* transform: translateY(-3px); */
}

.pr-ov-spec-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(111, 78, 55, 0.1);
    color: #BA9976;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    background: #fff
}

.pr-ov-spec-text h6 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.pr-ov-spec-text span {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Premium Button */
.pr-ov-btn {
    background: #BA9976;
    color: white;
    padding: 9px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.2s ease;
    border: 2px solid #BA9976;
}

.pr-ov-btn:hover {
    background: transparent;
    color: #BA9976;
}

@media (max-width: 991px) {
    .pr-ov-main-img {
        height: 450px;
    }

}

.pr-ov-section .p-detail-para {

    font-size: 17px;

}

.project-ov-icon {

    width: 24px;
    height: 23px;
    object-fit: cover;
    filter: invert(74%) sepia(21%) saturate(1048%) hue-rotate(344deg) brightness(91%) contrast(87%);

}

.project-amn-icon {

    width: 40px;
    height: 40px;
    object-fit: cover;
    filter: invert(74%) sepia(21%) saturate(1048%) hue-rotate(344deg) brightness(91%) contrast(87%);

}

.project-price-pln-icon {

    width: 28px;
    height: 28px;
    object-fit: cover;
    filter: invert(74%) sepia(21%) saturate(1048%) hue-rotate(344deg) brightness(91%) contrast(87%);

}

.project-banner .hero-address { 

    color: #fff;
    font-weight: 500;

 }

/* project details - end */


/* location map - start */

.location-map-section {
    position: relative;
    background: #fff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.location-map-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(111, 78, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Subtle dot-grid texture overlay */
.lc-map-bg-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(111, 78, 55, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.location-map-inner {
    position: relative;
    z-index: 1;
}

/* ─── Section Heading ─────────────────────────────── */
.lc-map-section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #BA9976;
    background: rgba(111, 78, 55, 0.09);
    border: 1px solid rgba(111, 78, 55, 0.18);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.lc-map-section-title span {
    color: #BA9976;
}

.lc-map-heading-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 10px;
}

.lc-map-heading-divider .lc-map-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, #BA9976, transparent);
    border-radius: 2px;
}

.lc-map-heading-divider .lc-map-diamond {
    width: 8px;
    height: 8px;
    background: #BA9976;
    transform: rotate(45deg);
    border-radius: 1px;
    flex-shrink: 0;
}

.lc-map-heading-divider .lc-map-line-right {
    height: 2px;
    width: 60px;
    background: linear-gradient(270deg, #BA9976, transparent);
    border-radius: 2px;
}

.lc-map-section-subtitle {
    font-size: 16px;
    color: #7A5C48;
    font-weight: 400;
    line-height: 1.7;
    max-width: 426px;
}

/* ─── Map Wrapper ─────────────────────────────────── */
.location-map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(111, 78, 55, 0.13), 0 2px 0 rgba(111, 78, 55, 0.08);
    cursor: pointer;
    transition: transform 0.38s cubic-bezier(.4, 0, .2, 1), box-shadow 0.38s cubic-bezier(.4, 0, .2, 1);
    background: #F5EDE3;
}

.location-map-wrapper:hover {
    transform: translateY(-6px) scale(1.012);
    box-shadow: 0 24px 64px rgba(111, 78, 55, 0.22), 0 2px 0 rgba(111, 78, 55, 0.1);
}

.location-map-wrapper img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    display: block;
    transition: transform 0.38s cubic-bezier(.4, 0, .2, 1);
    filter: saturate(0.9) contrast(1.04);
}

/* .location-map-wrapper:hover img {
                transform: scale(1.04);
            } */

/* Map overlay gradient */
.location-map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 55%,
            rgba(78, 53, 38, 0.55) 100%);
    pointer-events: none;
    transition: opacity 0.38s cubic-bezier(.4, 0, .2, 1);
}

/* Zoom hint badge */
.location-map-zoom-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 8px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: background 0.38s cubic-bezier(.4, 0, .2, 1), transform 0.38s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.location-map-wrapper:hover .location-map-zoom-hint {
    background: rgba(111, 78, 55, 0.72);
    transform: translateX(-50%) translateY(-3px);
}

/* Map corner badge */
.location-map-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #fff;
    color: #BA9976;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(111, 78, 55, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-map-badge i {
    font-size: 0.8rem;
    color: #BA9976;
}

/* ─── Cards Column ────────────────────────────────── */
.lc-map-cards-col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: start;
}

/* ─── Location Card ───────────────────────────────── */
.location-map-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 4px 24px rgba(111, 78, 55, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    cursor: default;
    transition:
        transform 0.38s cubic-bezier(.4, 0, .2, 1),
        box-shadow 0.38s cubic-bezier(.4, 0, .2, 1),
        border-color 0.38s cubic-bezier(.4, 0, .2, 1),
        background 0.38s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    width: 49%;
}

/* Shimmer line on left */
.location-map-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 3px;
    background: linear-gradient(180deg, #BA9976, #EDD9C5);
    border-radius: 0 3px 3px 0;
    /* opacity: 0; */
    transition: opacity 0.38s cubic-bezier(.4, 0, .2, 1);
}

.location-map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(111, 78, 55, 0.16), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border-color: rgba(111, 78, 55, 0.22);
    background: rgba(255, 255, 255, 0.92);
}



/* Icon bubble */
.lc-map-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F5EDE3 0%, #EDD9C5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #BA9976;
    box-shadow: 0 4px 14px rgba(111, 78, 55, 0.12);
    transition: transform 0.2s cubic-bezier(.4, 0, .2, 1), box-shadow 0.38s cubic-bezier(.4, 0, .2, 1), background 0.38s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

/* Card text */
.lc-map-card-body {
    flex: 1;
    min-width: 0;
}

.lc-map-card-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #BA9976;
    opacity: 0.7;
    margin-bottom: 3px;
}

.lc-map-card-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2C1A0E;
    line-height: 1.45;
    margin: 0;
}

/* Arrow indicator */
.lc-map-card-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F5EDE3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BA9976;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.38s cubic-bezier(.4, 0, .2, 1), transform 0.38s cubic-bezier(.4, 0, .2, 1);
}

.location-map-card:hover .lc-map-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ─── Stats Row ───────────────────────────────────── */
.lc-map-stats-row {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(111, 78, 55, 0.08);
    margin-top: 6px;
}

.lc-map-stat-item {
    flex: 1;
    text-align: center;
    padding: 18px 10px;
    position: relative;
}

.lc-map-stat-item+.lc-map-stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(111, 78, 55, 0.15);
}

.lc-map-stat-num {
    font-size: 1.7rem;
    font-weight: 700;
    color: #BA9976;
    line-height: 1;
    margin-bottom: 4px;
}

.lc-map-stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7A5C48;
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 991) {


    .location-map-wrapper img {
        height: auto;
    }
}

@media (max-width: 767) {


    .location-map-wrapper img {
        height: auto;
    }

    .location-map-card {
        padding: 15px 16px;
        gap: 14px;
    }

    .lc-map-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 11px;
    }

    .lc-map-card-text {
        font-size: 0.85rem;
    }

    .lc-map-stat-num {
        font-size: 1.4rem;
    }
}

@media (max-width: 479) {
    .lc-map-section-title {
        font-size: 2rem;
    }

    .location-map-wrapper img {
        height: auto;
    }
}

.location-map-section .lc-map-cards-col {

    padding-left: 40px;

}

/* location map - end */


/* profile layout - start */

.ux-map-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 8px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease;
}

.ux-map-wrapper:hover {
    transform: scale(1.01);
}

.ux-map-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
}

/* Floating Interactive Elements */
.ux-location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #BA9976;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.ux-status-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.profile-layout-section .main_heading {

    margin-bottom: 24px;

}


/* profile layout - end */


/* Luxury Amenities - start */

.l-amenities-section {
    background: #fff;
}

/* HEADING */
.l-amenities-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.l-amenities-sub {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    color: #000;
}

/* GRID */
.l-amenities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* CARD */
.l-amenities-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    width: 227px;
    height: 100%;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    border-top: 4px solid var(--theme_color1);
}

.l-amenities-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.l-amenities-icon {
    font-size: 40px;
    color: var(--theme_color1);
    margin-bottom: 14px;
}

/* .l-amenities-card:hover .l-amenities-icon{
color:#d63736;
} */

/* TEXT */
.l-amenities-text {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
}

/* INSIGHT BLOCK */
.l-amenities-insight {
    margin-top: 60px;
    background: var(--theme_color1);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* MOBILE */
@media(max-width:767px) {

    .l-amenities-heading {
        font-size: 1.7rem;
    }

}

/* Luxury Amenities - end */


/* price plan - start */

.price-plan-section {

    background-color: rgb(239, 232, 221);
    color: #2d2d2d;
    position: relative;
}

/* Section Header */
.price-plan-title-wrapper {
    margin-bottom: 40px;
    text-align: center;
}

.price-plan-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #BA9976;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.price-plan-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30%;
    width: 40%;
    height: 3px;
    background: #BA9976;
}

/* Premium Panels */
.price-plan-panel-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-plan-luxury-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(111, 78, 55, 0.15);
    padding: 45px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: center;
    box-shadow: 0 10px 30px rgba(111, 78, 55, 0.05);
    border-radius: 50px;

    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.price-plan-luxury-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed #BA9976;
    box-shadow: 0 30px 60px rgba(111, 78, 55, 0.12);
}

/* Typography & Content */
.price-plan-bhk-title {
    font-size: 1.6rem;
    color: #BA9976;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-plan-icon-main {
    font-size: 1.8rem;
    opacity: 0.8;
}

.price-plan-data-block {
    padding: 0 30px;
    border-left: 1px solid rgba(111, 78, 55, 0.1);
}

.price-plan-label-sm {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #8a7b6f;
    display: block;
    margin-bottom: 8px;
}

.price-plan-value-md {
    font-weight: 600;
    font-size: 1.15rem;
    color: #2d2d2d;
}

.price-plan-price-tag {
    text-align: right;
    padding-left: 30px;
    border-left: 1px solid rgba(111, 78, 55, 0.1);
}

.price-plan-price-final {
    font-size: 2rem;
    font-weight: 700;
    color: #BA9976;
    font-family: 'Playfair Display', serif
}


/* Responsive UI */
@media (max-width: 991px) {
    .price-plan-luxury-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }

    .price-plan-bhk-title {
        justify-content: center;
        flex-direction: column;
    }

    .price-plan-data-block,
    .price-plan-price-tag {
        border-left: none;
        border-top: 1px solid rgba(111, 78, 55, 0.1);
        padding: 20px 0 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .price-plan-price-tag {
        text-align: center;
    }
}

/* price plan - end */


/* floor plans - start */

.lux-floorplan-section {
    background: #fff;
    position: relative;
}

.fp-section-header {
    margin-bottom: 40px;
}

.fp-section-header .subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: #BA9976;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.fp-section-header .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2D241E;
    font-weight: 700;
}

/* --- Carousel Card Styling --- */
.fp-card-wrapper {
    padding: 0 10px 2px;
}

.fp-card {
    background: #fff;
    border-radius: 0px;
    /* Sophisticated sharp edges or very slight rounding */
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(111, 78, 55, 0.1);
}

.fp-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 25px 50px rgba(111, 78, 55, 0.15);
}

.fp-image-box {
    position: relative;
    overflow: hidden;
    background: #fff;
    /* aspect-ratio: 4/5; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.fp-image-box img {
    width: 100%;
    height: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: unset;
}

.fp-card:hover .fp-image-box img {
    /* transform: scale(1.08); */

}

/* Hover Overlay */
.fp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0; */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* backdrop-filter: blur(4px); */
}

/* .fp-card:hover .fp-overlay {
            opacity: 1;
        } */

.btn-view-plans {
    background: var(--theme_color1);
    /* border: 1px solid #fff; */
    color: #fff;
    padding: 8px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-plans:hover {
    background: #fff;
    color: #BA9976;
}

/* Details Area */
.fp-details {
    padding: 25px;
    background: #fff;
    border-top: 1px solid #eee;
}

.fp-type {
    font-size: 1.4rem;
    color: #2D241E;
    margin-bottom: 5px;
    display: block;
}

.fp-meta {
    display: flex;
    gap: 15px;
    color: #888;
    font-size: 0.85rem;
}

.fp-meta span i {
    color: #BA9976;
    margin-right: 5px;
}

/* --- Custom Navigation --- */
.fp-nav-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.fp-custom-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #BA9976;
    background: transparent;
    color: #BA9976;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-custom-nav-btn:hover {
    background: #BA9976;
    color: #fff;
}

/* --- Responsive Tweaks --- */
@media (max-width: 767px) {
    .fp-section-header .main-title {
        font-size: 2.5rem;
    }

    /* .lux-floorplan-section { padding: 60px 0; } */
}

/* floor plans - ends */


/* Specifications - start */

.spf-section h2,
.spf-section h3 {
    font-family: 'Playfair Display', serif;
}

.spf-section {
    background-color: #efe8dd;
    /* color: #2d241e; */
    overflow-x: hidden;
    position: relative;
}

/* --- Section Header --- */
.spf-section-header {
    margin-bottom: 60px;
}

.spf-section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #BA9976;
    margin-bottom: 15px;
}

.custom-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #BA9976 0%, #a67c52 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Hero Block & Blob --- */
.hero-block {
    margin-bottom: 80px;
    align-items: center;
}

.blob-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
}

.contact-form-map-section .blob-container iframe {
    box-shadow: 0 20px 40px rgba(111, 78, 55, 0.2);
}

.blob-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;

}

/* @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        } */

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, #BA9976 0%, #a67c52 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* --- Specification Cards --- */
.spf-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 40px 30px;
    margin: 15px;
    height: 380px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.spf-card:hover {
    transform: translateY(-15px);
    background: white;
    box-shadow: 0 30px 60px rgba(111, 78, 55, 0.15);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #BA9976;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.spf-card:hover .icon-box {
    background: linear-gradient(135deg, #BA9976 0%, #a67c52 100%);
    color: white;
    transform: rotateY(180deg);
}

.spf-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #BA9976;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.spf-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* --- Owl Carousel Customization --- */
.spf-section .owl-stage-outer {
    padding: 40px 0;
}

.spf-section .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
}

.spf-section .owl-nav button.owl-prev,
.spf-section .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    margin-left: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    color: #BA9976 !important;
    font-size: 1.2rem !important;
    transition: 0.3s !important;
}

.spf-section .owl-nav button:hover {
    background: #BA9976 !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(111, 78, 55, 0.3) !important;
}

/* Ensure dots are visible and have a base size */

.spf-section .owl-dots {

    text-align: center;

}

.spf-section .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: inline-block;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Style for the active dot */
.spf-section .owl-dots .owl-dot.active span {
    background: #BA9976 !important;
    width: 30px !important;
}

/* --- Background Decoration --- */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    z-index: -1;
}

/* --- Responsive Tweaks --- */
@media (max-width: 767px) {
    .spf-section-header h2 {
        font-size: 2.5rem;
    }

    .hero-block {
        text-align: center;
    }

    .owl-nav {
        position: static;
        margin-top: 20px;
        text-align: center;
    }

    .spf-card {
        height: auto;
        min-height: 320px;
    }
}

.spf-section .spf-features {

    font-family: 'Plus Jakarta Sans', sans-serif !important;

}

.spf-section .spf-features p {

    font-size: 24px;

}

.spf-section .lead {

    font-size: 18px;

}

.spf-section .modern-head {

    font-size: 49px;

}

/* Specifications - end */


/* our events - start */

.our-events-section .cu-img-heading-wrapper p {

    margin-top: 20px;

}

/* our events - end */


/* event detail - start */

.event-gallery-section .cu-img-gallery-item:hover {

    border: none;

}

.event-gallery-section .cu-img-gallery-item {

    border: none;
    border-radius: 10px;

}

.event-gallery-section .cu-img-gallery-item {

    flex: 1 1 calc(33% - 20px);
    max-width: 419px;

}

/* event detail - end */


/* our legacy - start */

.nw-f-foundation-section {
    background-color: #fff;
    position: relative;
}

/* Creative Image Composition */
.nw-f-image-wrapper {
    position: relative;
    padding: 20px;
}

.nw-f-main-img {
    width: 85%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.nw-f-floating-card {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #BA9976;
    color: white;
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 10px 10px 30px rgba(111, 78, 55, 0.3);
}

.nw-f-floating-card span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1;
}

/* Text Styling */
.nw-f-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.nw-f-title {
    margin-bottom: 20px !important;
}

.nw-f-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    text-align: justify;
}

/* Pillars of Trust */
.nw-f-trust-pillar {
    padding: 20px;
    border-left: 2px solid #eee;
    transition: all 0.4s ease;
}

.nw-f-trust-pillar:hover {
    border-left: 2px solid #BA9976;
    background: rgba(111, 78, 55, 0.03);
    transform: translateX(10px);
}

.nw-f-pillar-icon {
    font-size: 1.5rem;
    color: #BA9976;
    margin-bottom: 10px;
}

.nw-f-pillar-title {
    font-weight: 700;
    font-size: 1rem;
    color: #2d241e;
}

@media (max-width: 991px) {
    .nw-f-title {
        font-size: 2.2rem;
    }

    .nw-f-main-img {
        width: 100%;
        height: 350px;
    }

    .nw-f-floating-card {
        padding: 20px;
    }

    .nw-f-floating-card span {
        font-size: 2rem;
    }
}

/* our legacy - end */


/* milestone - start */

.milestone-sec {
    position: relative;
    line-height: 1.5;
}

/* Animated Background Blobs */
.milestone-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #FAEDCD;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
    animation: milestone-float 10s infinite alternate;
}

@keyframes milestone-float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 100px);
    }
}

/* Header Styling */
.m-badge-premium {
    background: #BA9976;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* Interactive Stats Cards */
.ml-stat-card {

    border: 1px solid #dadada;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 4px 6px rgba(0, 0, 0, 0.08);

    background: rgba(255, 255, 255, 0.9);
    padding: 40px 25px;
    border-radius: 24px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.ml-stat-card:hover {
    transform: translateY(-15px);
    background: white;
    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
}

.ml-icon-box {
    width: 60px;
    height: 60px;
    background: #FAEDCD;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #BA9976;
    margin-bottom: 20px;
    transition: 0.3s;
}

.ml-stat-card:hover .ml-icon-box {
    background: #BA9976;
    color: white;
}

.ml-stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #28190E;
    display: block;
}

/* Timeline Minimalist */
.ml-timeline-wrapper {
    margin-top: 80px;
    border-top: 2px dashed #ddd;
    padding-top: 40px;
}

.ml-tl-item {
    position: relative;
    padding: 20px;
    text-align: center;
}

.ml-tl-item::before {
    content: '';
    position: absolute;
    top: -49px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #BA9976;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    box-shadow: 0 0 0 4px #FAEDCD;
}

/* Trust Banner */
.ml-trust-banner {
    background: linear-gradient(135deg, #4a3425, #BA9976);
    border-radius: 30px;
    padding: 50px;
    color: white;
    margin-top: 80px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.ml-trust-banner::after {
    content: '';
    position: absolute;
    bottom: -66px;
    left: -36px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.ml-trust-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    z-index: -1;
}

.ml-trust-img {
    border-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}


.milestone-sec .ml-stat-card h6 {

    font-family: 'Inter', sans-serif;
}

.milestone-sec .ml-timeline-wrapper h5 {

    font-family: 'Inter', sans-serif;

}

.milestone-sec .ml-trust-banner h3 {

    font-size: 31px;

}

.milestone-sec .ml-head h1 {

    color: #000;

}

.milestone-sec .ml-head h1 span {

    color: #BA9976;

}

.milestone-sec .ml-head .main_heading {

    margin-bottom: 8px;

}

/* milestone - end */


/* leaders - start */

.visionary-section {
    background: #fdfdfd;
    color: #1a252f;
    overflow: hidden;
}

/* ── Header ── */
.visionary-section-tag {
    color: #c5a059;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.visionary-section .main_heading {

    color: #1a252f;


}

.visionary-section .main_heading span {

    color: #c5a059;

}


.visionary-header-line {
    width: 80px;
    height: 4px;
    background: #c5a059;
    margin: 0 auto;
    border-radius: 2px;
}

/* ── visionary Card ── */
.visionary-leader-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    margin: 15px;
    /* Added for Owl Carousel spacing */
}

.visionary-leader-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.visionary-leader-img-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    position: relative;
}

.visionary-leader-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    padding: 8px;
    border: 2px solid #c5a059;
    background: #fff;
}

.visionary-leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 5px;
}

.visionary-leader-role {
    color: #c5a059;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.visionary-leader-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 25px;
}

/* ── Controls ── */
.v-custom-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #1a252f;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-custom-nav-btn:hover {
    background: #c5a059;
    color: #fff;
}

@media (max-width: 767px) {
    .visionary-leader-card {
        padding: 30px 20px;
    }
}

/* leaders - end */


/* disclaimer - start */

.disclaimer-section .nw-f-description {

    margin-bottom: 28px;
    font-size: 16px;
}

.disclaimer-section {

    overflow-x: unset;

}

/* disclaimer - end */


/* site office - start */

.site-office-section {

    background: #efe8dd;

}

/* site office - end */


/* site map - start */

iframe.site-office-map {

    height: 425px !important;

}

/* site map - end */


/* header dropdown - start */

.mobile-menu-section button {

    font-family: poppins !important;
    font-size: 17px;
    font-weight: 500;

}

.mobile-menu-section button:focus {

    box-shadow: none;

}

.mobile-menu-section .accordion-button:not(.collapsed) {

    background: transparent;
    box-shadow: none;
    color: #000;

}

.mobile-menu-section .accordion-button {

    padding-top: 10px !important;
    padding-left: 0;

    &:hover {

        color: #BA9976;

    }

}

.mobile-menu-section .accordion-body,
.inner-pages {

    padding-left: 0;

}

.mobile-menu-section .inner-pages {

    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 17px;
    font-weight: 500;
}

.mobile-menu-section .accordion-body {

    padding-top: 4px !important;

}

.mobile-menu-section .accordion {

    --bs-accordion-border-color: none !important;

}

.mobile-menu-section .mobile_menu {

    overflow: auto;
    height: 79%;
    padding-top: 30px;

}

.logo-and-close {

    padding-bottom: 30px;

}

/* header dropdown - end */

.enquiry-popup-content .text-danger {
    font-size: 12px;
    line-height: 1;
    position: absolute;
    left: 0;
    bottom: -15px;
}

.enquiry-popup-content .input-group-custom textarea+.text-danger {
    bottom: -7px;
}


/* whatsapp - start */

.whats_div {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 100;
}

.whats_div a {
    color: rgb(255, 255, 255);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px 0px;
    background: rgb(76, 175, 80);
    border-radius: 50%;
    transition: 0.5s;
}

/* whatsapp - end */


/* responsive - start */

@media (max-width:767px) {

    .blog_section .owl-nav {

        margin-top: 0 !important;

    }

}

/* responsive - start */