@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Cinzel:wght@400..900&family=Comfortaa:wght@300..700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Cinzel:wght@400..900&family=Comfortaa:wght@300..700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}



::-webkit-scrollbar {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {

    font-family: "Cinzel", serif !important;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    letter-spacing: .5px;
    line-height: 1.5;
}

body {
    font-family: "Montserrat", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.navbar {
    transition: all 0.3s ease;
}

/* Scroll ke baad apply hoga */
.navbar.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    background: #ffffff; /* ya jo color chahiye */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.fixed-nav .navbar-brand{
    filter: none;
}

.fixed-nav .navbar-toggler-icon{
    filter: invert(1);
}

.fixed-nav .contact_btn a{
    color: #000;
}

.body-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

.header-sec {
    position: absolute;
    top: 9px;
    z-index: 2;
    width: 100%;
}

.banner-img {
    position: relative;
}

.banner-img::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background-color: #0000008f; */
    background: linear-gradient(to right, #000000e0, transparent);
    z-index: 0;
}

.banner-img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    background-position: unset;
    object-position: top;
}

.navbar-brand img {
    width: 85px;
}

.navbar-brand {
    filter: invert(1) brightness(200);
    /* background-color: #fff; */
    padding: 10px;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(212, 175, 55, 0.3); */
    /* border: 1px solid #D4AF37; */
}

.nav-item a {
    font-size: 14px;
    color: #000000 !important;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s ease-in-out;
    letter-spacing: 1px;
    line-height: 1.5;
}

.nav-item a:hover {
    color: #D4AF37;
}

.contact_btn a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #D4AF37;
    padding: 8px 16px;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-weight: 500;

    /* Base Look */
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(212, 175, 55, 0.3);

    /* Smooth animation */
    transition: all 0.4s ease;
}

/* 🔥 Hover Lift Effect */
.contact_btn a:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(212, 175, 55, 0.6);
    color: #D4AF37;
}

/* ✨ Shine Animation */
.contact_btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.6s;
}

/* Shine on hover */
.contact_btn a:hover::before {
    left: 100%;
}

/* 🧊 Glassy active click effect */
.contact_btn a:active {
    transform: scale(0.96);
}

.content-abs {
    position: absolute;
    bottom: 50px;
    left: 50px;
    transform: unset;
    z-index: 1;
}

.content-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(212, 175, 55, 0.5);
    padding: 30px 25px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    width: 406px;
}

.content-box .top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.content-box .eoi-abs .content-box p {
    color: #fff;
}

.eoi-abs {
    position: absolute;
    top: -12px;
    right: -10px;
    background: #D4AF37;
    color: #000;
    font-weight: 800;
    font-size: 0.65rem;
    padding: 6px 12px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    letter-spacing: 0.05em;


}

.nav-link:focus {
    color: #FFC107;
}

.content-box .text-color {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #D4AF37;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.content-box h1 {
    font-size: 39px;
    line-height: 1.1;
    margin-bottom: 12px;
    margin-top: 12px;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.content-box .text-white {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.top-price-card h4 {
    font-size: .88rem;
    color: #D4AF37;
    margin-bottom: 4px;
    font-weight: 600;
}

.top-price-card p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-weight: 600;
}

.top-price-card button {
    width: 100%;
    margin-top: 15px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid #D4AF37;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.top-price-card button:hover {
    background: #D4AF37;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);

}

.typology-catrd h5 {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    padding: 10px 0;
    background: rgb(0 0 0 / 57%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    transform: translateY(10px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
    border-color: #D4AF37;
}

.bottom-content-abs {
    position: unset;
    bottom: 40px;
    left: 50%;
    transform: unset;
    width: 150%;
    z-index: 1;
    /* display: flex; */
    flex-direction: column;
    gap: 15px;
}

.line-card {
    display: flex;
    gap: 30px;
    align-items: center;
    display: flex;  ;
    justify-content: center;
    
}

.miiii{
    display: none;
}

.bottom-content-abs .line1 {
    background: #D4AF37;
    box-shadow: 0 0 12px #D4AF37;
    height: 3px;
    border-radius: 3px;
    width: 80px;
}

.bottom-content-abs .line2 {
    background: #5CC8FF;
    box-shadow: 0 0 12px #5CC8FF;
    height: 3px;
    border-radius: 3px;
    width: 80px;
}

.bottom-content-abs .line3 {
    background: #FF6B6B;
    box-shadow: 0 0 12px #FF6B6B;
    height: 3px;
    border-radius: 3px;
    width: 80px;
}

.bottom-content-abs .line4 {
    background: #fff;
    box-shadow: 0 0 12px #fff;
    height: 3px;
    border-radius: 3px;
    width: 80px;
}

.bottom-content-abs .line5 {
    background: #9C6BFF;
    box-shadow: 0 0 12px #9C6BFF;
    height: 3px;
    border-radius: 3px;
    width: 80px;
}

.bottom-content-abs .bottom-card {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #D4AF37;
    padding: 15px 18px;
    border-radius: 6px;
    transform: translateY(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.bottom-content-abs .bottom-card h4 {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    letter-spacing: 0.05em;
}

.bottom-content-abs .bottom-card {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

.bottom-content-abs .bottom-card:hover {
    background: rgba(0, 0, 0, 0.65);
    border-left: 3px solid #fff;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.about-section {
    background-image: radial-gradient(circle at 50% 50%, #ffffff 0%, #FAF7F2 80%);
}

.padding {
    padding: 100px 5vw;
}

.about-header p {
    color: #D4AF37;
    font-weight: 600;
    font-family: "Cinzel", serif !important;
    position: relative;
    padding-left: 33px;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    /* word-spacing: 1px; */
}

.about-header h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.15;
}

.about-header p::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #D4AF37;
    position: absolute;
    left: 0;
    top: 50%;
}

.text-color {
    color: #D4AF37;
    font-weight: 500;
}

.about-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 3px solid #D4AF37;
    padding: 18px 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);

}

.about-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-btn {
    padding: 16px 36px;
    background: #D4AF37;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 40px;
    display: block;
    border: none;
    transition: .5s ease-in-out;
}

.about-btn:hover {
    background: #1A1F24;
    color: #D4AF37;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

}

.about_img {
    /* padding: 0px 40px; */
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.about_img img {
    height: 600px;
    transition: .5s ease-in-out;
    object-fit: cover;
}

.about_img img:hover {
    transform: scale(1.04);
}

.about-card-abs {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #fff;
    /* width: 300px; */
}

.location-advantage {
    background-image: url(../images/location-bg.jpg);
    width: 100%;
    height: 100%;
    min-height: 800px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.location-advantage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(10, 10, 15, 0.75) 0%, rgba(0, 0, 0, 0.95) 70%, #000 100%);
    /* z-index: 1; */
}

.location-header :nth-child(1) {
    gap: 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-advantage h2 {
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.location-advantage-img {
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    padding: 20px;
    position: relative;
}

.location-advantage-img img {
    border-radius: 4px;
    transition: .5s ease-in-out;
    height: 418px;
    width: 100%;
    object-fit: cover;
}

.location-advantage-img img:hover {
    transform: scale(1.01);
}

.map-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.8);
    border-left: 3px solid #D4AF37;
    padding: 8px 15px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.location-advantage-img::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #D4AF37;
    pointer-events: none;
    transition: all 0.4s ease;
}

.location-advantage-img::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    box-shadow: inset 5px 5px 15px rgba(212, 175, 55, 0.2);
}

.location-advantage-img::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #D4AF37;
    pointer-events: none;
    transition: all 0.4s ease;
}

.location-advantage-img::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    box-shadow: inset -5px -5px 15px rgba(212, 175, 55, 0.2);
}

.location-advantage-points {
    /* background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent); */
    padding: 22px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: .2s ease-in-out;
}

.location-advantage-points:hover {
    border-bottom-color: rgba(212, 175, 55, 0.8);
    transform: translateX(8px);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
}

.location-advantage-points .dot {
    width: 5px;
    height: 5px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 10px #D4AF37;
    margin-right: 15px;
    flex-shrink: 0;
}

.location-advantage-points p {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.location-advantage-points h5 {
    color: #D4AF37;
    font-size: 1.05rem;
    font-weight: 600;
}

.price-section {
    background-image: radial-gradient(circle at 50% 50%, #ffffff 0%, #FAF7F2 80%);
}


.price-heading .hubheading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    position: relative;
    display: inline-block;
}

.price-heading .hubheading::after {
    content: "";
    background-color: #D4AF37;
    width: 20px;
    height: 1px;
    opacity: 0.6;
    position: absolute;
    left: -30px;
    top: 50%;
}

.price-heading .hubheading::before {
    content: "";
    background-color: #D4AF37;
    width: 20px;
    height: 1px;
    opacity: 0.6;
    position: absolute;
    right: -30px;
    top: 50%;
}

.price-heading h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    margin: 0 0 5px;
    line-height: 1.2;
}

.price-heading .para {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: .75px;
    word-spacing: 1px;
    margin: 0 auto 50px;
    max-width: 800px;
    color: #6D757F;
}

.dot {
    width: 5px;
    height: 5px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 10px #D4AF37;
    margin-right: 15px;
    flex-shrink: 0;
}

.price-card-box {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #ccc;
    transition: .5s ease-in;
}

.price-card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.price-card-box img {
    transition: .5s ease-in-out;
    filter: blur(3px);
    height: 220px;
}

.price-card-box img:hover {
    transform: scale(1.02);
}

.price-card-box .price-card-typo {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #D4AF37;
}

.price-card-box h5 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 10px;
    text-align: center;
}

.price-card-box span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #1A1F24;
}

.price-card-box button {
    width: 100%;
    padding: 14px;
    background: #D4AF37;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    margin-top: 10px;
}

.ameneties-heading .dot-point {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 700;
}

.ameneties-heading h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #1A1F24;
}

.ameneties-heading .sub-head {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.6;
    color: #5A6069;
}

.amenities-section {
    position: relative;
    background-image: url(../images/amenities-bg.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.amenities-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(250, 247, 242, 0.85) 0%, rgba(250, 247, 242, 0.98) 70%, #FAF7F2 100%);
    backdrop-filter: blur(4px);
    /* z-index: 1; */
}

.amenities-card {
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: .5s ease-in-out;
    height: 100%;
    text-align: center;
}

.amenities-card img {
    width: 50px;
    display: flex;
    margin: 0 auto;
}

.amenities-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #1A1F24;
    margin-bottom: 10px;
    line-height: 1.3;
    margin-top: 10px;
    transition: .5s ease-in-out;
}

.amenities-card p {
    font-size: 0.8rem;
    line-height: 1.6;
    letter-spacing: .75px;
    white-space: 1px;
    color: #5A6069;
    flex-grow: 1;
}

.amenities-card:hover {
    /* transform: translateY(-8px); */
    border-color: #D4AF37;
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.12);

}

.amenities-card:hover h4 {
    color: #D4AF37;
}



.gallery-slider-abs h3 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.gallery-slider-abs p {
    font-size: 12px;
    color: #ffffff;
}

.gallery-slider1 .item,
.gallery-slider2 .item {
    position: relative;
    z-index: 1;
}

.gallery-slider1 .item::after,
.gallery-slider2 .item::after {
    content: "";
    background: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
    display: none;
}

.gallery-slider1 .item::after{
    background:transparent !important;
}

.gallery-slider-abs {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 99;
}


.gallery-slider2 .owl-item img {
    height: 513px !important;
    background-position: center;
    object-fit: cover;
}

.gallery-slider1 .owl-item img {
    object-fit: cover;
    background-position: center;
    height: 513px !important;
}


.gallery-slider1 .gallery-slider-abs h3 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.gallery-slider1 .gallery-slider-abs p {
    font-size: 18px;
    color: #ffffff;
}



/* Base button (tera custom nav-btn) */
.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 18px;

    transition: all 0.3s ease;
}

/* Hover effect */
.nav-btn:hover {
    background: #ff4d4d;
    transform: scale(1.1);
}


.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-prev {
    position: absolute;
    left: 15px;
}

.owl-next {
    position: absolute;
    right: 15px;
}

.nav-btn {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-close-white {
    filter: none !important;
}



.offcanvas {
    z-index: 9999 !important;
}

.modal-backdrop {
    z-index: 1 !important;
}

.footer-section {
    background: linear-gradient(#000000a8, #000000a8), url(../images/footer-bg.webp);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.form-sec label {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    color: #fff;

}

.form-sec input {
    width: 100%;
    padding: 6px 10px;
    border-radius: 3px;
    margin-top: 6px;
    border: #D4AF37 1px solid;
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.12);
}

.form-sec  input:focus {
    outline: none;
}

.form-sec  input::placeholder {
    font-family: "Cinzel", serif !important;
    font-size: 13px;
}

.rera-details p {
    background-color: #1A1F24;
    display: flex;
    display: inline-block;
    text-align: center;
    justify-content: center;
    padding: 10px 20px;
    margin: 0 auto;
    color: #D4AF37;
    font-weight: 600;
    border-radius: 10px;
    border: #D4AF37 1px solid;
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.12);
    margin-bottom: 20px;
}

.chat-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    text-align: center;
    background-color: #1A1F24;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px #D4AF37;

}

.chat-box img {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 auto;

}

.chat-box p {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.footer-bottom a{
    text-decoration: none;
    color: #D4AF37 !important;
    font-weight: 600;
    font-size: 15px;
}


.btn-whatsapp-pulse {
	background: #25d366;
	color: white !important;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 9999;
}

.btn-whatsapp-pulse1 {
	background: #25d366;
	color: white !important;
	position: fixed;
	bottom: 20px;
	left: 20px;
	font-size: 19px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 18px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 9999;
}
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}


.moreless-button{
    background-color: #1A1F24;
    color: #D4AF37;
    display: inline-block;
    padding: 6px 10px;
    font-weight: 600;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
}


#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px;
}

.prev { left: 20px; }
.next { right: 20px; }


.qr-open-image{
    width: 59px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 12px;
}

.qr-modal-box{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.qr-modal-image{
    width: 130px;
    max-width: 90%;
    border-radius: 10px;
}

.qr-modal-close{
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
}

.modal-content img{
    width: 100px;
}