@font-face {
    font-family: 'Louis-George-Cafe';
    src: url('fonts/fonnts.com-Louis-George-Cafe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Louis-George-Cafe', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Fix modal body scrollbar issue */
body.modal-open {
    padding-right: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
}

.modal {
    padding-right: 0 !important;
}

.modal.show {
    display: block !important;
}

/* Header Styles */
.header {
    padding: 0px 76px;
    width: 100vw;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.header.transparent {
    background-color: transparent;
    color: #ffffff;
}

.header.solid {
    background-color: #050c1f !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure solid background on desktop after scroll */
@media (min-width: 769px) {
    .header.solid {
        background-color: #050c1f !important;
    }
}

/* Logo positioning - fixed to always be centered */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    width: 200px;
    height: auto;
    transition: all 0.4s ease;
}

.header.solid .logo img {
    filter: brightness(1);
}

.hamburger-menu {
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #ffffff;
}

.header.transparent .hamburger-menu {
    color: white;
}


.enquiry-btn {
    font-size: 14px;
    height: 40px;
    border-radius: 6px;
    padding: 9px 20px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff !important;
    border: 1px solid #ffffff;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    min-width: 190px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: color 1s ease;
}

.enquiry-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 6px;
    border: 1px solid transparent;
    background-color: #906d2d;
    transition: width 1s ease, border-color 1s ease;
    z-index: -1;
}

.enquiry-btn:hover {
    color: #ffffff;
    border-color: transparent;
}

.enquiry-btn:hover::after {
    width: 100%;
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.bottom-enquiry-section {
    width: 100vw;
    background-color: #050c1f;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    padding: 10px 0px;
    z-index: 10001;
    transition: height 0.3s ease;
}

/* Style placeholder for inputs in the bottom enquiry section */
.bottom-enquiry-section .form-control::placeholder {
    color: #ffffff;
    /* White color for better contrast */
    opacity: 0.7;
    /* Slightly higher opacity for better readability */
}

/* Regular state */
.bottom-enquiry-section .form-control {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    opacity: 0.7;
}

.enquiry-check-text {
    font-size: 14px;
}

.interested-btn {
    background-color: #c99c5e;
    padding: 10px 20px;
    border-radius: 6px;
    border-color: #c99c5e;
    color: #ffffff;
}

.contact-note-section {
    background: linear-gradient(to right, #BF994D, #C8A659);
    color: #000000;
    font-size: 20px;
    padding: 20px 60px;
    font-weight: 600;
}

.brouchure-btn {
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    color: #000000;
}

.brouchure-btn:hover {
    background-color: #000000;
    padding: 10px 20px;
    border-radius: 6px;
    color: #ffffff;
}


.about-logo img {
    margin-top: 120px;
    padding: 10px;
    width: 200px;
    height: auto;
    transition: all 0.4s ease;
    background: linear-gradient(to right, #BF994D, #C8A659);
}

.image-container {
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.zoom-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.zoom-img:hover {
    transform: scale(1.1);
}

.about-title {
    background: linear-gradient(180deg, #BF994D, #C8A659, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* color: transparent; */
    font-weight: bold;
    font-size: 44px;
}

/* Amenities Section */

/* Custom bounce for fade-left */
[data-aos="fade-left"].aos-animate {
    animation: fadeLeftBounce 1s forwards;
}

@keyframes fadeLeftBounce {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    60% {
        opacity: 1;
        transform: translateX(10px);
        /* overshoot a bit */
    }

    80% {
        transform: translateX(-5px);
        /* bounce back slightly */
    }

    100% {
        transform: translateX(0);
        /* final position */
    }
}

/* Custom bounce for fade-right */
[data-aos="fade-right"].aos-animate {
    animation: fadeRightBounce 1s forwards;
}

@keyframes fadeRightBounce {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    60% {
        opacity: 1;
        transform: translateX(-10px);
        /* overshoot a bit */
    }

    80% {
        transform: translateX(5px);
        /* bounce back slightly */
    }

    100% {
        transform: translateX(0);
        /* final position */
    }
}

/* Fade-down with bounce */
[data-aos="fade-down"].aos-animate {
    animation: fadeDownBounce 1s forwards;
}

@keyframes fadeDownBounce {
    0% {
        opacity: 0;
        transform: translateY(-50px);
        /* start above */
    }

    60% {
        opacity: 1;
        transform: translateY(10px);
        /* overshoot downward */
    }

    80% {
        transform: translateY(-5px);
        /* bounce up slightly */
    }

    100% {
        transform: translateY(0);
        /* final position */
    }
}

/* Fade-up with bounce */
[data-aos="fade-up"].aos-animate {
    animation: fadeUpBounce 1s forwards;
}

@keyframes fadeUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px);
        /* start below */
    }

    60% {
        opacity: 1;
        transform: translateY(-10px);
        /* overshoot upward */
    }

    80% {
        transform: translateY(5px);
        /* bounce down slightly */
    }

    100% {
        transform: translateY(0);
        /* final position */
    }
}



/* Parallax Background */
.amenities-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: rgb(5, 12, 31);
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/New-Project.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;

}

.amenities-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Content Styling */
.amenities-section .row {
    position: relative;
    z-index: 1;
}

.amenities-title {
    color: rgb(247, 195, 73);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.amenities-description {
    color: #fff;
    font-weight: 500;
    font-size: 16.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Carousel Container */
.carousel-container {
    position: relative;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.spaces-carousel {
    margin: 0 auto;
}

.space-slide {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 10px;
    transition: all 0.5s ease;
    height: 500px;
    transform: scale(0.85);
    opacity: 0.7;
}

.space-slide.slick-center {
    transform: scale(1);
    opacity: 1;
    z-index: 1;
}

.space-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

/* Hover zoom effect */
.space-slide:hover img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    color: white;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.slick-center .slide-overlay {
    transform: translateY(0);
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #BF994D, #C8A659);
    padding: 10px 20px;
    width: 30%;
    opacity: 1;
}

/* Slick overrides - Hover-only arrows */
.slick-prev,
.slick-next {
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.carousel-container:hover .slick-prev,
.carousel-container:hover .slick-next {
    opacity: 1;
    visibility: visible;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 30px;
    line-height: 1;
    opacity: 1;
    color: white;
}

.slick-prev:before {
    content: '←';
}

.slick-next:before {
    content: '→';
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: white;
}

.about-section {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.img-container {
    width: 400px;
    height: 600px;
    /* fixed container height */
    overflow: hidden;
    /* zoom stays inside */
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    /* fill container width */
    height: 100%;
    /* maintain aspect ratio */
    transition: transform 0.4s ease-in-out;
    transform-origin: center center;
    display: block;
    object-fit: cover;
}

/* Responsive styles for mobile */
@media (max-width: 991.98px) {
    .about-section {
        height: auto !important;
        min-height: auto !important;
        padding: 20px 0;
    }
    
    .about-section .container-fluid {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-section .row {
        margin: 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-section .col-12 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .about-section .col-12.px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .img-container {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        overflow: visible !important;
        margin: 0;
        box-sizing: border-box;
        display: block;
    }
    
    .img-wrapper {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box;
        position: relative;
    }
    
    .about-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
        box-sizing: border-box;
        position: relative;
    }
}

.img-container:hover .about-img {
    transform: scale(1.1);
    /* zoom inside container */
}


.quality-section {
    position: relative;
    width: 100%;
    overflow: visible;
    min-height: 400px;
    padding: 40px 0;
    display: block;
    visibility: visible;
}

.quality-section .row {
    margin: 0;
}

/* Responsive width for quality section cards */
@media (min-width: 768px) {
    .w-md-50 {
        width: 50% !important;
    }
}

.quality-section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.quality-section-title {
    background: linear-gradient(180deg, #BF994D, #C8A659, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.floor-map {
    height: 300px;
}

.floor-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.price-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #BF994D;
    color: #BF994D;
    /* background: linear-gradient(to right, #BF994D, #C8A659); */
}

.price-btn:hover {
    background-color: #BF994D;
    color: #ffffff;
}

.location-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    position: relative;
}

.location-header {
    margin-bottom: 30px;
}

.location-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f7c349;
}

.location-sub-title {
    font-size: 1.2rem;
    color: #ccc;
}

.accordion {
    position: relative;
    width: 100%;
}

.accordion-item {
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none !important;
    background-color: transparent !important;
    color: #ffffff !important;
}

.accordion-item:not(:last-child) {
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.accordion-title {
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 15px 0;
    width: 100%;
}

.accordion-title:hover {
    background-color: transparent;
}

.accordion-title.active {
    background-color: transparent;
}

.accordion-title span {
    font-size: 1.1rem;
    text-decoration: none;
}

.toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.accordion-title.active .toggle {
    transform: rotate(180deg);
}

.accordion-inner {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: transparent;
}

.accordion-inner.show {
    max-height: 500px;
}

.location-list {
    list-style: none;
}

.location-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-name {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    /* Important for text truncation */
}

.location-name i {
    color: #f7c349;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.location-distance {
    color: #f7c349;
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-left: 10px;
}

.map-btn {
    padding: 10px 20px;
    color: #b89446;
    background-color: transparent;
    border: 1px solid #b89446;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.map-btn:hover {
    background-color: #b89446;
    color: #ffffff;
}

.project-gallery-section {
    width: 100%;
    padding: 50px 0;
}

.project-gallery-content {
    width: 100%;
}

/* Title Styling */
.project-gallery-title {
    text-align: center;
    font-size: 41px;
    background: linear-gradient(180deg, #BF994D, #C8A659, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Image Defaults */
.project-gallery-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: .4s ease;
}

/* Floorplan Container */
.floorplan-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.floorplan-img {
    filter: blur(4px) brightness(0.8);
    transform: scale(1.05);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Center Button */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-gallery-enquiry-btn {
    color: #a28134;
    border: 2px solid #a28134;
    padding: 10px 20px;
    font-weight: 600;
    transition: .3s;
    background: transparent;
}

.project-gallery-enquiry-btn:hover {
    background: #a28134;
    color: white;
}

.project-gallery-section img {
    width: 100%;
    height: 100%;
}


/* Side Image */
.image-container img.zoom-img:hover {
    transform: scale(1.05);
}


.equal-height-row {
    display: flex;
}

.equal-height-row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.equal-height-row {
    display: flex;
}

.equal-height-row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.floorplan-container,
.image-container {
    height: 580px;
    /* match the image height */
}



/* Developer Section */
.developer {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    padding: 100px 0px;
}

.developer .container {
    width: 100%;
}

.developer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.developer-logo img {
    max-width: 260px;
}

.MahaRERA-img {
    width: 110px;
    height: 110px;
}

/* Bootstrap Grid for Developer Info */
.info-column {
    position: relative;
}

.info-column::after {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    right: 0;
    width: 1px;
    background: rgba(164, 134, 53, 0.343);
}

.info-column:last-child::after {
    display: none;
}

.info-card {
    display: flex;
    gap: 15px;
    position: relative;
    padding: 20px 15px;
    height: 100%;
}

.info-icon {
    width: 60px;
    flex-shrink: 0;
}

.info-icon img {
    max-width: 100%;
}

.info-text h3 {
    color: #a28134;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-text p {
    color: #fff;
    margin-bottom: 15px;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    color: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-button:hover {
    background-color: #f0f0f0;
    color: #050c1f;
}

.phone-button i {
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: start;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Facebook */
.social-icon.facebook {
    background-color: #1877F2;
}

.social-icon.facebook:hover {
    background-color: #166FE5;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(24, 119, 242, 0.4);
}

/* Instagram */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(220, 39, 67, 0.4);
}

/* Twitter/X */
.social-icon.twitter {
    background-color: #000000;
    color: #ffffff;
}

.social-icon.twitter:hover {
    background-color: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
}

/* Center alignment for MahaRERA card on all screen sizes */
.maharera-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.developer-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* .developer-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: transparent;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 0px 20px;
}


.stat-item {
    text-align: center;
    max-width: 200px;
    padding: 20px 20px;
    position: relative;
    flex: 1;
} */

.developer-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: transparent;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 0px 20px;
}

.stat-item {
    text-align: center;
    max-width: 200px;
    padding: 20px 20px;
    position: relative;
    flex: 1;
}

.stat-icon img {
    max-width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.stat-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* Custom styling for better appearance */
.stats-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #333;
}

/* Separator lines - applied to columns */
.stat-column {
    position: relative;
}

.stat-column::before,
.stat-column::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(164, 134, 53, 0.343);
}

.stat-column::before {
    left: 0;
}

.stat-column::after {
    right: 0;
}

/* Hide first and last separators */
.stat-column:first-child::before {
    display: none;
}

.stat-column:last-child::after {
    display: none;
}


.divider {
    max-width: 100%;
    height: 1px;
    margin-bottom: 10px;
    background-color: rgba(164, 134, 53, 0.343);
}

.offcanvas-divider {
    max-width: 98%;
    height: 4px;
    margin-bottom: 10px;
    background-color: #94712e;
}

/* Enquiry Modal*/
.modal-content {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgb(5, 12, 31);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.grecaptcha-badge{
    z-index: 111111;
}

/* Responsive modal on mobile */
@media (max-width: 767.98px) {
    .modal {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .modal-dialog,
    .modal-dialog-centered {
        margin: 1rem !important;
        max-width: calc(100% - 2rem) !important;
        width: calc(100% - 2rem) !important;
        max-height: calc(100vh - 2rem) !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        max-height: calc(100vh - 2rem) !important;
        margin: 0 !important;
        border-radius: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    
    .modal-header {
        flex-shrink: 0;
        padding: 1rem;
        min-height: auto;
    }
    
    .modal-body {
        padding: 1rem !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        flex: 1 1 auto;
        min-height: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-body form {
        width: 100%;
    }
    
    .modal-footer {
        flex-shrink: 0;
    }
    
    .btn-submit {
        width: 100% !important;
        margin-top: 0.5rem;
    }
}

.modal-content .form-control {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    opacity: 1;
}

/* Style placeholder for inputs in the bottom enquiry section */
.modal-content .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
}

.form-control {
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    border-color: #80bdff;
}

.checkbox-label {
    margin-left: 8px;
    font-size: 14px;
}

.btn-submit {
    background-color: #c99c5e;
    border: none;
    color: white;
    padding: 12px;
    font-weight: bold;
    border-radius: 5px;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #c99c5e;
    opacity: 0.8;
}

.btn-launch {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 30px;
    font-size: 18px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-launch:hover {
    background-color: #0069d9;
}

/* Custom close button with FontAwesome icon */
.btn-close-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-close-custom:hover {
    color: #f8f9fa;
}

/* End Enquiry Modal styles */

/* OffCanvas */
.sidenav-offcanvas {
    max-width: 320px;
    background-color: #050c1f !important;
}

.enquiry-offcanvas {
    max-width: 500px;
    background-color: #050c1f !important;
    z-index: 9999999;
}

.poddar-logo {
    padding: 10px;
    width: 200px;
    height: auto;
    transition: all 0.4s ease;
    background: linear-gradient(to right, #BF994D, #C8A659);
    display: inline-block;
}

.poddar-logo img {
    width: 120px;
    height: auto;
    transition: all 0.4s ease;
    display: block;
}

/* Left SideNav */
.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
}

.menu-name {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    color: inherit;
    cursor: pointer;
    min-width: 0;
    color: #ffffff;
    font-size: 20px;
}

.menu-name:hover {
    color: #a07f33 !important
}


.menu-name i {
    color: #f7c349;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.call-btn {
    padding: 10px 20px;
    background-color: #a07f33 !important;
    color: #ffffff;
    border-radius: 10px;
}

.enquiry-left-icon {
    color: #a07f33 !important;
}

.enquiry-title {
    font-size: 26px;
    font-weight: 700;
    color: #a28134;
}

.rightoffcanvas-enquiry-form .divider {
    margin: 10px 0px;
    height: 3px;
    background-color: #ffffff;
    width: 15%;
}


.rightoffcanvas-enquiry-form .form-control {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    opacity: 1;
}

/* Style placeholder for inputs in the bottom enquiry section */
.rightoffcanvas-enquiry-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.rightoffcanvas-enquiry-form .btn-submit {
    background-color: #906d2d;
    ;
}

.rightoffcanvas-enquiry-form .btn-submit:hover {
    opacity: 0.8;
}

.wepromise p {
    font-size: 17px;
    font-weight: 600;
}

.fs14 {
    font-size: 14px;
}



/* Responsive adjustments */

/* Desktop styles */
@media (min-width: 992px) {
    .location-section {
        height: 100vh;
        overflow: hidden;
    }

    .location-map img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .location-content {
        position: relative;
        width: 25%;
        margin-left: 200px;
    }
}

/* Mobile styles */
@media (max-width: 991px) {
    .location-section {
        padding: 30px 0;
        height: auto;
    }

    .location-map {
        margin-bottom: 30px;
    }

    .location-map img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .location-content {
        width: 100%;
        margin-left: 0;
    }

    .location-title {
        font-size: 2rem;
    }

    .location-sub-title {
        font-size: 1rem;
    }
}


@media (max-width: 1200px) {
    .space-slide {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .space-slide {
        height: 400px;
    }

    .slide-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
    }

    .hero-image {
        height: auto;
    }

    .slide-title {
        font-size: 1.6rem;
    }

    .space-slide {
        height: 350px;
    }

    .slick-prev,
    .slick-next {
        width: 50px;
        height: 50px;
    }

    .slick-prev {
        left: 15px;
    }

    .slick-next {
        right: 15px;
    }

    .stat-column:nth-child(odd)::after {
        display: block;
    }

    .stat-column:nth-child(even)::before {
        display: none;
    }

    .stat-column:nth-child(even)::after {
        display: none;
    }

    .stat-column:nth-child(odd)::before {
        display: none;
    }

    .info-column::after {
        display: none;
    }

    .info-column {
        margin-bottom: 30px;
    }

    .info-card {
        padding: 0px;
    }

    .info-card p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 20px 20px;
        background-color: #050c1f !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        height: 90px;
    }

    .hero-section {
        margin-top: 90px;
        height: auto;
    }

    .hero-image {
        height: auto;
    }

    .contact-note-section {
        font-size: 15px;
        padding: 20px 10px;
    }

    .about-section {
        position: relative;
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .about-title {
        background: linear-gradient(180deg, #BF994D, #C8A659, #000000);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        font-weight: bold;
        font-size: 26px;
    }

    .about-content {
        margin: 0 !important;
    }

    .about-content .title {
        margin: 0 !important;
    }


    .amenities-section {
        padding: 20px 0px 60px 0px !important;
    }

    .amenities-title {
        margin: 10px 5px !important;
    }

    .amenities-description {
        margin: 10px 5px !important;
    }

    .slide-title {
        font-size: 17px;
        width: 60%;
    }

    .space-slide {
        height: 300px;
    }

    /* Always show arrows on mobile for better UX */
    .slick-prev,
    .slick-next {
        opacity: 1;
        visibility: visible;
    }

    .info-card:first-child::after,
    .info-card:nth-child(2)::after,
    .info-card:nth-child(3)::after {
        display: none;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        margin: 10px auto;
    }

    .footer-links {
        margin: 20px;
    }
}

/* Error message styling */
.error-message {
    display: none;
    color: red !important;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.2;
}

.error-message.show {
    display: block !important;
}

/* Add spacing for error messages in bottom enquiry form */
.bottom-enquiry-section .col-auto {
    position: relative;
}

.bottom-enquiry-section .error-message {
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    font-size: 11px;
    margin: 0px 20px;
    color: red !important;
}

/* Removed: Form control error state - no red border on inputs */
/* .form-control.is-invalid {
    border-color: red;
} */