/* General Body Styles */
:root {
    --header-height: 40px; /* Approximate height of the sticky header - Updated to 65px */
    --sidebar-width: 280px; /* Width of the new sidebar */
    --sidebar-width-medium: 265px; /* Sidebar width for medium screens */
}

.popup-form-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.popup-form-content {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.popup-form-content h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #004A99;
}

.popup-form-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-form-content button {
    padding: 10px 20px;
    background: #004A99;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #888;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95em;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding-top: var(--header-height); /* Add padding to the top equal to header height */
}

/* Page Wrapper to handle main content and sidebar layout */
.page-wrapper {
    display: flex;
    position: relative;
}

/* Main Content Area */
.main-content {
    flex-grow: 1;
    padding-right: var(--sidebar-width); /* Space for the sidebar */
    transition: padding-right 0.3s ease-in-out;
    min-width: 0; /* Allows content to shrink */
}

/* Header Styles */
header {
    background: #004A99;
    color: #fff;
    padding: 0.5rem 0;
    position: fixed; /* Make header sticky */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Ensure header is on top */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: var(--header-height); /* Use the updated header height */
    display: flex;
    align-items: center;
}

/* Navigation Bar Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%; 
}

/* Logo Styles */
nav .logo {
    display: flex;
    align-items: center;
}

nav .logo img {
    height: 58px; /* Adjust as needed for your design */
    width: auto;
    display: block;
	padding-left: 5px; /* Added left padding */
}


/* Hamburger toggle button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger {
    display: block; position: relative; width: 25px; height: 3px;
    background: #fff; border-radius: 3px; transition: all 0.3s ease-in-out;
}
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; width: 25px; height: 3px;
    background: #fff; border-radius: 3px; left: 0; transition: all 0.3s ease-in-out;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }
.nav-toggle.active .hamburger { background: transparent; } /* Hide middle bar when active */
.nav-toggle.active .hamburger::before { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg) translate(5px, -6px); }

nav ul.nav-links { list-style: none; padding: 0; margin: 0; display: flex; height: 100%; align-items: center; } /* Center nav links vertically */
nav ul.nav-links li { margin-left: 20px; }
nav ul.nav-links li a {
    color: #fff; text-decoration: none; font-weight: 500;
    font-size: 0.95em; transition: color 0.3s ease; padding: 5px 0;
}
nav ul.nav-links li a:hover,
nav ul.nav-links li a.active { color: #FFD700; border-bottom: 2px solid #FFD700; }

/* Sidebar Contact Section */
.sidebar-contact {
    width: var(--sidebar-width);
    position: fixed; /* Keep sidebar fixed */
    top: var(--header-height); /* Position below the header */
    right: 0;
    height: calc(100vh - var(--header-height)); /* Full height minus header */
    background-color: #ffffff;
    padding: 20px;
    box-shadow: -4px 0 10px rgba(0,0,0,0.15);
    z-index: 990; /* Below header, above main content */
    overflow-y: auto; /* Enable scrolling if content overflows */
    color: #333;
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
    box-sizing: border-box; /* Include padding in width */
}
.sidebar-contact h2 {
    font-size: 1.4em; color: #004A99; margin-top: 0; margin-bottom: 15px;
    text-align: center; border-bottom: 2px solid #FFD700; padding-bottom: 10px;
}
.sidebar-contact .form-group { margin-bottom: 10px; }
.sidebar-contact .form-group label { display: block; margin-bottom: 5px; font-size: 0.9em; color: #555; }
.sidebar-contact .contact-form input,
.sidebar-contact .contact-form textarea {
    width: 100%; padding: 8px; border: 1px solid #ccc;
    border-radius: 5px; font-size: 0.95em; box-sizing: border-box;
}
.sidebar-contact .contact-form textarea { resize: vertical; min-height: 80px; }
.sidebar-contact .contact-form button {
    width: 100%; background: #FFD700; color: #000; padding: 12px 20px;
    border: none; border-radius: 5px; font-size: 1.05em; cursor: pointer;
    transition: background-color 0.3s ease; font-weight: bold;
}
.sidebar-contact .contact-form button:hover { background: #e6c200; }

.sidebar-buttons { margin-top: 15px; display: flex; flex-direction: column; gap: 10px; }
.sidebar-buttons a {
    display: flex; align-items: center; justify-content: center;
    padding: 10px 15px; border-radius: 5px; text-decoration: none;
    font-size: 1em; font-weight: 500; transition: background-color 0.3s ease, color 0.3s ease;
    color: white;
}
.sidebar-buttons a i { margin-right: 8px; font-size: 1.1em; }
.sidebar-buttons .call-btn { background-color: #007bff; }
.sidebar-buttons .call-btn:hover { background-color: #0056b3; }
.sidebar-buttons .whatsapp-btn { background-color: #25D366; }
.sidebar-buttons .whatsapp-btn:hover { background-color: #1EAE50; }
.sidebar-info { font-size: 0.85em; color: #555; margin-top: 20px; text-align: center; }
.sidebar-info i { color: #004A99; margin-right: 5px; }

.sidebar-close-btn {
    display: none; /* Hidden by default on larger screens */
    position: absolute; top: 10px; right: 15px;
    background: none; border: none; font-size: 2em; color: #777; cursor: pointer;
}



/* General Section Styles */
.section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 20px auto; /* Add margin top and bottom */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
/* Adjust margin for the first section after the carousel container */
.carousel-container + .section {
    margin-top: 20px;
}

.section h2 {
    text-align: center; margin-bottom: 35px; font-size: 2.3em;
    color: #004A99; position: relative;
}
.section h2::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: #FFD700; margin: 10px auto 0;
}

/* Container for Carousel and Overlay Banner */
.carousel-container {
    position: relative; /* Needed for absolute positioning of the overlay banner */
    width: 100%;
    margin: 0; /* Remove margin to align with banner */
}


/* Mobile Only Section for Contact Trigger - Keep this as a fallback/alternative */
.mobile-only-section {
    display: none; /* Hidden by default */
    text-align: center;
    padding: 30px 20px; /* More padding for emphasis */
    background-color: #e9f5ff; /* Light blue background */
    border-top: 1px solid #cce0ff;
    border-bottom: 1px solid #cce0ff;
    margin: 0 auto 20px auto; /* Remove default section bottom margin if it's the last one before footer */
}
.mobile-only-section h2 {
    font-size: 1.8em; /* Slightly smaller h2 */
    margin-bottom: 15px;
}
.mobile-only-section p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #333;
}
.btn-primary-mobile-contact {
    background: #004A99; /* Dark blue button */
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-decoration: none;
    display: inline-block; /* To allow margin auto if needed or just center via parent */
}
.btn-primary-mobile-contact:hover { background: #003f7f; }


.highlight-grid, .amenities-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px;
}
.highlight-item, .amenity-item {
    background: #f9f9f9; padding: 20px; border-radius: 8px; text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; border-left: 4px solid #004A99;
}
.highlight-item:hover, .amenity-item:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.08); }
.highlight-item h3, .amenity-item h3 { margin-top: 0; color: #004A99; font-size: 1.3em; }
.highlight-item i, .amenity-item i { font-size: 1.5em; margin-bottom: 10px; color: #004A99; }

.floor-plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.floor-plan-item { border: 1px solid #ddd; padding: 20px; border-radius: 8px; background-color: #fdfdfd; }
.floor-plan-item h4 { color: #004A99; margin-top: 0; border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 10px; }

.location-map iframe { width: 100%; height: 400px; border: 0; border-radius: 8px; }
.contact-form { display: grid; grid-template-columns: 1fr; gap: 15px; }

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 25px 20px;
    font-size: 0.9em;
    margin-top: 20px;
}
footer p { margin: 8px 0; }
footer a { color: #FFD700; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Floating buttons are now handled by the new .floating-contact-button */
/* .floating-buttons { display: none !important; } */

/* Image Carousel Styles */
.image-carousel {
  position: relative;
  width: 100%;
  height: 766px; /* Set fixed height for the carousel container - Updated to 766px */
  margin: 0; /* Remove auto margin to ensure it aligns with banner */
  overflow: hidden; /* Hide overflow from fade transition and images */
}

/* Ensure Slick track and list take up full height */
.image-carousel .slick-list,
.image-carousel .slick-track {
    height: 100%;
}

.image-carousel .slick-slide {
  text-align: center;
  height: 100%; /* Ensure slide takes up full height */
}

.image-carousel .slick-slide div {
    height: 100%; /* Ensure the div wrapping the image also takes full height */
}

.image-carousel .slick-slide img {
  width: 100%; /* Make image take full width of its container */
  height: 100%; /* Make image take full height of its container */
  display: block; /* Remove extra space below image */
  border-radius: 0; /* No border radius on carousel images */
  object-fit: cover; /* Scale the image to cover the container while maintaining aspect ratio */
  object-position: center; /* Center the image within the container */
}

/* Slick Carousel Navigation Arrows */
.image-carousel .slick-prev,
.image-carousel .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 0; /* Hide default text */
  line-height: 0;
  color: transparent; /* Hide default text color */
  cursor: pointer;
  border: none;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 15px; /* Increased padding for larger clickable area */
  border-radius: 50%; /* Make arrows round */
  outline: none;
  transition: background-color 0.3s ease;
}

.image-carousel .slick-prev:hover,
.image-carousel .slick-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.image-carousel .slick-prev:before,
.image-carousel .slick-next:before {
  font-family: "Font Awesome 5 Free"; /* Use Font Awesome for icons */
  font-weight: 900;
  font-size: 20px; /* Icon size */
  color: #fff; /* Icon color */
  line-height: 1;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.image-carousel .slick-prev:before {
  content: "\f053"; /* Font Awesome left arrow icon */
}

.image-carousel .slick-next:before {
  content: "\f054"; /* Font Awesome right arrow icon */
}


.image-carousel .slick-prev {
  left: 20px; /* Position from left */
}

.image-carousel .slick-next {
  right: 20px; /* Position from right */
}

/* Slick Carousel Navigation Dots */
.image-carousel .slick-dots {
  position: absolute;
  bottom: 20px; /* Position from bottom */
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important; /* Ensure dots are displayed */
  justify-content: center;
}

.image-carousel .slick-dots li {
  margin: 0 5px;
  width: 12px; /* Dot size */
  height: 12px; /* Dot size */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
  cursor: pointer;
  transition: background 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.3); /* Add a subtle border */
}

.image-carousel .slick-dots li.slick-active {
  background: #FFD700; /* Active dot color */
  border-color: #FFD700; /* Active dot border color */
}

.image-carousel .slick-dots li button {
  display: none; /* Hide default button */
}

/* Overlay Banner Styles */
.overlay-banner {
    position: absolute; /* Position over the carousel */
    top: 20px; /* Adjust top position as needed */
    left: 15px; /* Position from the left */
    width: 300px; /* Set the desired width - Updated to 300px */
    height: 710px; /* Set height to match carousel height - (766 - 20px top - 20px bottom padding) */
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 8px;
    z-index: 50; /* Ensure it's above the carousel but below the header/sidebar */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex; /* Use flexbox for internal layout */
    flex-direction: column; /* Stack segments vertically */
    gap: 10px; /* Space between segments */
    color: #333;
    font-family: 'Poppins', sans-serif; /* Use the same font */
    box-sizing: border-box; /* Include padding in height */
    line-height: 1.3; /* Reduced line height */
}

.overlay-banner .banner-segment {
    padding: 5px;
    border-radius: 5px;
}

.overlay-banner .banner-segment.new-launch {
    background-color: #004A99; /* Dark blue background */
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    padding: 8px 8px;
}

.overlay-banner .banner-segment.main-title {
    background-color: #f9f9f9; /* Light background */
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.overlay-banner .main-title h2 {
    margin: 0;
    font-size: 1.8em;
    color: #004A99;
    line-height: 1.2;
}

.overlay-banner .main-title p {
    margin: 5px 0 0 0;
    font-size: 1em;
    color: #555;
}

.overlay-banner .main-title .by-godrej {
    font-size: 1em;
    color: #005278;
    margin-top: 10px;
    font-weight: 500;
}

.overlay-banner .banner-segment.details {
    background-color: #e9f5ff; /* Light blue background */
    padding: 10px;
}

.overlay-banner .details .detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    font-size: 0.85em;
}

.overlay-banner .details .detail-item span:first-child {
    font-weight: 500;
    color: #004A99;
}

.overlay-banner .banner-segment.features {
    background-color: #004A99; /* Dark blue background */
    color: #fff;
    padding: 7px;
}

.overlay-banner .features ul {
    list-style-type: disc; /* or use custom icons */
    padding-left: 20px;
    color: #fff; /* adjust for your background */
    font-size: 0.90em;
    line-height: 1.40;
}

.overlay-banner .features li {
    margin-bottom: 5px;
}

/* Pricing styles within the overlay banner */
.overlay-banner .banner-segment.pricing-overlay {
    background-color: #f9f9f9; /* Light background */
    text-align: center;
    padding: 15px;
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 10px; /* Space between items */
}

.overlay-banner .pricing-overlay .pricing-text {
    margin: 0;
    font-size: 1em;
}

.overlay-banner .pricing-overlay .price {
    font-size: 1.5em; /* Reduced font size */
    font-weight: bold;
    color: #004A99;
    margin: 0; /* Remove default margin */
}

/* Enquire Text Button within Overlay Banner */
.overlay-banner .enquire-btn {
    background: #FFD700; /* Yellow button */
    color: #000;
    padding: 8px 15px; /* Reduced padding */
    border: none;
    border-radius: 5px;
    font-size: 1em; /* Reduced font size */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-decoration: none;
    display: inline-block; /* Make it behave like a button */
    width: auto; /* Auto width to fit content */
    box-sizing: border-box;
}

.overlay-banner .enquire-btn:hover {
    background: #e6c200; /* Darker yellow on hover */
}


/* Enquire Icon Button within Overlay Banner (Hidden) */
.overlay-banner .enquire-icon-btn {
    display: none; /* Always hidden */
}


.overlay-banner .banner-segment.rera {
    background-color: #e9f5ff; /* Light blue background */
    text-align: center;
    font-size: 0.85em;
    color: #555;
    padding: 10px;
}

/* Floating Contact Button Styles (Hidden on Mobile) */
.floating-contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Above everything else */
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Floating Enquire Icon Button (Hidden) */
.floating-contact-button .contact-trigger-btn {
    display: none; /* Always hidden */
}


.floating-contact-button .floating-contact-links {
    /* These styles will be overridden in mobile media queries to hide the links */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-contact-button .floating-contact-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px; /* Square button - Adjusted to match trigger button */
    height: 50px; /* Square button - Adjusted to match trigger button */
    border-radius: 50%; /* Round buttons */
    color: #fff;
    font-size: 1.5em; /* Icon size - Adjusted to match trigger button */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    /* Ensure flex properties are applied to the link itself */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Add overflow hidden to clip content outside the border-radius */
    overflow: hidden;
    /* Add line-height and text-align for potential centering fixes */
    line-height: 1;
    text-align: center;
    /* Ensure the link itself is a block-level flex container */
    display: flex;
}

.floating-contact-button .floating-contact-links a:hover {
    transform: scale(1.1);
}

.floating-contact-button .floating-call-btn {
    background-color: #007bff; /* Blue */
}

.floating-contact-button .floating-whatsapp-btn {
    background-color: #25D366; /* Green */
}

/* Ensure Font Awesome is applied and centered within the floating buttons */
.floating-contact-button .floating-contact-links a i {
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Use the solid icon style */
    font-size: 1em; /* Ensure icon size is relative to parent link */
    line-height: 1; /* Standard line height */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
    display: inline-block; /* Treat as inline block for centering */
    vertical-align: middle; /* Vertically align */
    /* Add properties to help centering within the flex container */
    flex-shrink: 0; /* Prevent shrinking */
    /* Ensure the icon itself is centered if it's a block/inline-block element */
    text-align: center;
    width: 100%; /* Make the icon take the full width of its container */
}


/* Responsive Design - Media Queries */
@media (max-width: 1200px) {
    .main-content { padding-right: var(--sidebar-width-medium); }
    .sidebar-contact { width: var(--sidebar-width-medium); }
    .hero h1 { font-size: 2.5em; }
    .hero p { font-size: 1.2em; }
    .section h2 { font-size: 2em; }
}

@media (max-width: 850px) {
    .main-content { padding-right: 0; }
    .sidebar-contact {
        transform: translateX(100%); /* Hide sidebar off-screen */
        box-shadow: none;
    }
    .sidebar-contact.visible-mobile {
        transform: translateX(0); /* Show sidebar */
        width: 280px; /* Adjust width for mobile */
        z-index: 1005;
        box-shadow: -4px 0 10px rgba(0,0,0,0.15);
    }
    .sidebar-close-btn { display: block; } /* Show close button on mobile */

    .mobile-only-section { display: block; } /* Show mobile contact trigger */

   .nav-toggle {
    display: block; /* Show hamburger toggle */
}

nav ul.nav-links {
    display: none; /* Hide nav links by default on mobile */
    flex-direction: column;
    position: absolute;
    top: var(--header-height); /* Position below header */
    left: 0;
    width: 100%;
    background: #003f7f; /* Background for the menu container */
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
}

nav ul.nav-links.visible {
    display: flex;
}

nav ul.nav-links li {
    margin: 0;
    width: 100%;
    background-color: #003f7f; /* Ensure each list item has background */
}

nav ul.nav-links li a {
    padding: 15px 20px;
    width: 100%;
    display: block;
    text-align: left;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid transparent;
    color: white;
    text-decoration: none;
}

nav ul.nav-links li:last-child a {
    border-bottom: none;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border-left-color: #FFD700;
}

    .hero h1 { font-size: 2em; }
    .hero p { font-size: 1em; }
    .section { padding: 40px 15px; }
    .section h2 { font-size: 1.8em; }
    .highlight-grid, .amenities-grid, .floor-plan-grid { grid-template-columns: 1fr; }
    div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .location-map iframe { height: 300px; }

    /* Adjust carousel height for smaller screens */
    .image-carousel {
        height: 766px; /* Reduced height on smaller screens */
    }

    /* Overlay banner remains fixed size on mobile */
   .overlay-banner {
    position: absolute; /* Position over the carousel */
    top: 20px; /* Adjust top position as needed */
    left: 15px; /* Position from the left */
    width: 275px; /* Set the desired width - Updated to 300px */
    height: 700px; /* Set height to match carousel height - (766 - 20px top - 20px bottom padding) */
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 8px;
    z-index: 50; /* Ensure it's above the carousel but below the header/sidebar */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex; /* Use flexbox for internal layout */
    flex-direction: column; /* Stack segments vertically */
    gap: 10px; /* Space between segments */
    color: #333;
    font-family: 'Poppins', sans-serif; /* Use the same font */
    box-sizing: border-box; /* Include padding in height */
    line-height: 1.3; /* Reduced line height */
}

.overlay-banner .banner-segment {
    padding: 5px;
    border-radius: 5px;
}

.overlay-banner .banner-segment.new-launch {
    background-color: #004A99; /* Dark blue background */
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    padding: 8px 8px;
}

.overlay-banner .banner-segment.main-title {
    background-color: #f9f9f9; /* Light background */
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.overlay-banner .main-title h2 {
    margin: 0;
    font-size: 1.8em;
    color: #004A99;
    line-height: 1.2;
}

.overlay-banner .main-title p {
    margin: 5px 0 0 0;
    font-size: 1em;
    color: #555;
}

.overlay-banner .main-title .by-godrej {
    font-size: 1em;
    color: #005278;
    margin-top: 10px;
    font-weight: 500;
}

.overlay-banner .banner-segment.details {
    background-color: #e9f5ff; /* Light blue background */
    padding: 10px;
}

.overlay-banner .details .detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.overlay-banner .details .detail-item span:first-child {
    font-weight: 500;
    color: #004A99;
}

.overlay-banner .banner-segment.features {
    background-color: #004A99; /* Dark blue background */
    color: #fff;
    padding: 10px;
}

.overlay-banner .features p {
    margin: 5px 0;
    font-size: 0.95em;
    text-align: center;
}

/* Pricing styles within the overlay banner */
.overlay-banner .banner-segment.pricing-overlay {
    background-color: #f9f9f9; /* Light background */
    text-align: center;
    padding: 15px;
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 10px; /* Space between items */
}

.overlay-banner .pricing-overlay .pricing-text {
    margin: 0;
    font-size: 1em;
}

.overlay-banner .pricing-overlay .price {
    font-size: 1.5em; /* Reduced font size */
    font-weight: bold;
    color: #004A99;
    margin: 0; /* Remove default margin */
}

/* Enquire Text Button within Overlay Banner */
.overlay-banner .enquire-btn {
    background: #FFD700; /* Yellow button */
    color: #000;
    padding: 8px 15px; /* Reduced padding */
    border: none;
    border-radius: 5px;
    font-size: 1em; /* Reduced font size */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-decoration: none;
    display: inline-block; /* Make it behave like a button */
    width: auto; /* Auto width to fit content */
    box-sizing: border-box;
}

.overlay-banner .enquire-btn:hover {
    background: #e6c200; /* Darker yellow on hover */
}


/* Enquire Icon Button within Overlay Banner (Hidden) */
.overlay-banner .enquire-icon-btn {
    display: none; /* Always hidden */
}


.overlay-banner .banner-segment.rera {
    background-color: #e9f5ff; /* Light blue background */
    text-align: center;
    font-size: 0.85em;
    color: #555;
    padding: 10px;
}
    /* Hide floating contact button on very small screens */
    .floating-contact-button {
        display: none; /* Hide floating buttons on very small mobile */
    }

    .floating-contact-button .contact-trigger-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }

    .floating-contact-button .floating-contact-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

     /* Hide the enquire icon button within the overlay banner on very small screens */
    .overlay-banner .enquire-icon-btn {
        display: none; /* Hide the icon button on very small mobile */
    }

    /* Show the enquire text button within the overlay banner on very small mobile */
    .overlay-banner .enquire-btn {
        display: inline-block; /* Show the text button on very small mobile */
        padding: 10px 20px; /* Adjust padding */
        font-size: 1em; /* Adjust font size */
    }

     /* Hide the floating contact links on very small mobile */
    .floating-contact-button .floating-contact-links {
        display: none; /* Hide the links container */
    }
    /* Hide the floating contact trigger button on very small mobile */
    .floating-contact-button .contact-trigger-btn {
        display: none; /* Hide the trigger button */
    }
}

/* Hide elements on larger screens */
@media (min-width: 993px) {
    .overlay-banner .enquire-icon-btn {
        display: none !important; /* Ensure it's hidden on larger screens */
    }
    .floating-contact-button {
        display: none !important; /* Ensure floating buttons are hidden on larger screens */
    }
     /* Show the enquire text button within the overlay banner on larger screens */
    .overlay-banner .enquire-btn {
        display: inline-block !important; /* Ensure the text button is shown on larger screens */
    }
}
