:root {
    --navy: #0a192f;
    --gold: #c6a969;
    --light-gold: #e8d8b1;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --soft-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --button-gradient: linear-gradient(to right, #b09163, #d4be8a);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 30px 0 !important;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--button-gradient);
}

/* Header & Navigation */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    z-index: 1000;
    background: #000;
    /* solid black background */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.logo-link {
    display: block;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

/* ========== NAVIGATION MENU (Desktop) ========== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    /* White text for visibility on black */
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a i {
    color: #b09163;
    /* Gold icons for contrast */
    font-size: 1.1em;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #b09163;
    /* Gold hover text */
}

.nav-links a:hover i {
    color: #b09163;
    transform: scale(1.1);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #b09163;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

/* CTA Button */
.contact-button {
    display: inline-block;
    background: linear-gradient(to right, #b09163, #d4be8a);
    color: #000;
    /* Black text for contrast */
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid #b09163;
    font-size: 1rem;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.contact-button:hover {
    background: linear-gradient(to left, #b09163, #d4be8a);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    /* White hamburger on black */
    z-index: 1002;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: #b09163;
}

/* ========== MOBILE NAVIGATION ========== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100% - 75px);
        background: #000 !important;
        /* Dark overlay for full-screen menu */
        padding-left: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 99;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        color: #fff;
        font-size: 1.2rem;
        padding: 10px 0;
        width: 100%;
    }

    .nav-links a:hover {
        color: #b09163;
    }

    .contact-button {
        margin-top: 20px;
        width: 80%;
        text-align: center;
        color: #000;
    }
}


#hero {
    position: relative;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    bottom: 20%;
    color: #fff;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    min-width: 160px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    margin: 5px;
}

.btn-primary {
    background: #c6a969;
    color: #fff;
    border: 1px solid #c6a969;
}

.btn-primary:hover {
    background: #b48c3c;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #0a192f;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: auto;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .mobile-hero img {
        width: 100%;
        max-width: 1600px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}

.cta-button {
    display: inline-block;
    min-width: 200px;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.cta-button.btn-primary {
    background: var(--button-gradient);
    /* Updated to use gradient */
    color: var(--white);
    border: 1px solid var(--gold);
}

.cta-button.btn-primary:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.cta-button.btn-primary:hover:after {
    left: 100%;
}

.cta-button.btn-primary:hover {
    background: linear-gradient(to left, #b09163, #d4be8a);
    /* Updated hover effect */
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.cta-button.btn-outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    margin-left: 20px;
}

.cta-button.btn-outline:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.about p {
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    position: relative;
}

.about-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 25, 47, 0.15));
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    position: relative;
}

.feature:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--button-gradient);
    /* Updated to use gradient */
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature:hover:before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature i {
    font-size: 2.8rem;
    color: #b09163;
    /* Updated color for consistency */
    margin-bottom: 25px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature p {
    font-weight: 300;
    opacity: 0.9;
}

/* Pricing Section - Redesigned */
/* Price Plan Section */
.price-plan-section {
    padding: 40px 0;
    background-color: #ffffff; /* Light gray background */
}

/* Section Title Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}


/* Main Content Layout */
.price-plan-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

/* Price Plan Table Styling (MODIFIED) */
.price-plan-table-container {
    flex: 1;
    min-width: 400px; /* Reduced the minimum width */
    max-width: 500px; /* Added a max width to keep it from getting too wide */
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(180, 165, 124, 0.1);
}

.price-plan-table {
    width: 100%;
    border-collapse: collapse;
}

.price-plan-table th, .price-plan-table td {
    padding: 5px; /* Reduced vertical padding */
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    color: #333;
}

.price-plan-table th {
    background-color: #f0f0f0;
    font-weight: 600;
}

.price-plan-table tr:last-child td {
    border-bottom: none;
}

.on-request-link {
    display: inline-block;
    padding: 8px 16px;
   
    color: #b09163;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.on-request-link:hover {
    background-color: #dbb79c;
    color: #ffffff;
}

/* Image Section Styling with PDF look (MODIFIED) */
.price-plan-image-container {
    width: 350px;
    height: 200px; /* Reduced the height */
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #f7f7f7;
    border-radius: 8px;
    border: 1px solid #b09163;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-plan-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    z-index: 1;
}

.button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2; 
    height: 40px; /* Set the desired height */
    line-height: 40px; /* Vertically centers the text within the height */
    text-align: center;
    background-color: #b09163;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    transition: background-color 0.3s ease;
    box-sizing: border-box; 
}

.button:hover {
    background-color: #b09163;
    color: #ffffff;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .price-plan-content {
        flex-direction: column;
        align-items: center;
    }
    .price-plan-table-container,
    .price-plan-image-container {
        width: 100%;
        min-width: auto;
    }
}

/* Floor Plan Images ke liye ek consistent size set karna */
/* Default Tab Button (inactive) */

.tab-button {
    font-weight: 500;
    color: #000000;
    border: none;
    /* No border for inactive */
    background: transparent;
    padding: 0.5rem 1.5rem;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease-in-out;
}

/* Hover Effect (same as pehle) */
.tab-button:hover {
    color: #fff;
}

.tab-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #c39d6b;
    transition: height 0.4s ease-in-out;
    z-index: -1;
}

.tab-button:hover::before {
    height: 100%;
}

/* ✅ Active Tab */
.tab-button.active {
    background: transparent !important;
    color: #c39d6b;
    font-weight: 600;
    border-top: 2px solid #c39d6b;
    /* Top border */
    border-left: 2px solid #c39d6b;
    /* Left border */
    border-right: 2px solid #c39d6b;
    /* Right border */
    border-bottom: none;
    /* Bottom open */
    border-radius: 5px 5px 0 0;
}


.tab-button.active::before {
    height: 0 !important;
}


  .floorSwiper {
    width: 100%;
    max-width: 900px; /* container width */
    margin: auto;
  }

  .floorSwiper img {
    /*width: 100%;*/
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
  }

  @media (max-width: 768px) {
    .floorSwiper img {
      max-height: 300px;
    }
  }

/* Amenities Section */
.highlights {
    background: linear-gradient(rgba(239, 241, 241, 0.589), rgba(10, 25, 47, 0.85)), url('../img/external/banner.png') no-repeat center center/cover;
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.amenity-category {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--soft-shadow);
}

.amenity-category h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.amenity-category h3 i {
    color: #b09163;
    /* Updated color for consistency */
    font-size: 1.8rem;
}

.amenity-list {
    list-style: none;
}

.amenity-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
    transition: var(--transition);
}

.amenity-list li:hover {
    transform: translateX(5px);
    background-color: rgba(198, 169, 105, 0.05);
    padding-left: 10px;
}

.amenity-list li:hover i {
    transform: scale(1.1);
}

.amenity-list li:last-child {
    border-bottom: none;
}

.amenity-list li i {
    color: #b09163;
    /* Updated color for consistency */
    width: 25px;
    text-align: center;
    transition: var(--transition);
}
/* Styling specific to the floor-plan card's Swiper */
.floor-plan-card .swiper-slide {
    height: auto;
}

.floor-plan-card .swiper-slide img {
    
    object-fit: contain;
    display: block;
    /* border-radius: 10px; */
}

/* Styling for the navigation buttons within the floor-plan card */
.floor-plan-card .swiper-button-next,
.floor-plan-card .swiper-button-prev {
    color: #b8aa7d;
    /* background-color: rgba(0, 0, 0, 0.5); */
   
    width: 5px;
    height: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: background-color 0.3s ease; */
}


.bank-partners {
    background-color: var(--light-gray);
}

.bank-partners p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Swiper container for bank logos */
.swiper {
    width: 100%;
    padding: 30px 0 50px;
}

/* Individual slide for each bank logo */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    /* Use min-height for flexibility */
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    /* padding: 10px; */
    /* Add padding for spacing */
}

.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Bank logo images within the slides */
.swiper-slide img {
    max-width: 100%;



    object-fit: cover;
}

/* Location Section */
.location {
    background-color: var(--white);
}

.location-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-map {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.location-map:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(198, 169, 105, 0.15));
    pointer-events: none;
}

.location-img {
    height: auto;
    width: 100%;
    object-fit: contain;
    display: block;
}

.connectivity {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.connect-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(198, 169, 105, 0.05);
    border-radius: var(--radius);
    border-left: 3px solid #b09163;
    /* Updated color for consistency */
    transition: var(--transition);
}

.connect-item:hover {
    background: rgba(198, 169, 105, 0.1);
    transform: translateX(5px);
}

.connect-item i {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b09163;
    /* Updated color for consistency */
    font-size: 1.2rem;
}

.connect-item h3 {
    font-size: 1rem;
}

.connect-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.faq-flex-container {
    display: flex;
    gap: 50px;
}

.faq-accordion-container {
    flex: 1;
    padding: 30px;
    background-color: var(--light-gray);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
}

.faq-form-container {
    flex: 1;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #274737;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.form-logo {
    max-width: 150px;
    height: auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius);
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.faq-item.active {
    background-color: #f7f7f7;
    box-shadow: var(--soft-shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-top: 0;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* A value larger than the content's height */
    padding-top: 15px;
}

 

/* Footer Styles */
.footer {
    padding: 30px 0;
    background-color: #111; /* Changed background to a very dark gray/black */
    color: #999;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}

.footer-info {
    max-width: 90%;
    margin-bottom: 20px;
}

.footer-info p {
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

/* Link color for all links within the footer */
.footer a {
    color: #fff; /* Changed link color to white */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #d4a762; /* A subtle golden brown on hover */
}

/* Custom Modal Styling for Inquiry Form */
.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 30px 40px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow);
    position: relative;
    animation: slideIn 0.5s ease-out;
}

.modal-header {
    border-bottom: 2px solid var(--gold);
    background-color: var(--light-gold); /* Added a light brown color to the header background */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px 40px; /* Added padding to make it look cleaner */
}

.modal-title {
    text-align: center;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    width: 100%;
}

.btn-close {
    position: absolute;
    top: 10px; /* Adjusted position */
    right: 15px; /* Adjusted position */
    background: none;
    border: none;
    font-size: 1.5rem; /* Made the cross button smaller */
    color: var(--white); /* Changed cross button color to white */
    opacity: 1;
    transition: var(--transition);
}

.btn-close:hover {
    color: #b09163;
}

/* The rest of the CSS for the modal body remains the same */
.modal-body {
    padding: 30px;
}

.form-group-inline {
    display: flex;
    gap: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

.half-width {
    flex: 1 1 50%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    color: var(--dark-gray);
}

.form-group input::placeholder {
    color: var(--dark-gray);
    opacity: 0.6;
}

.checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.modal-body button.cta-button {
    padding: 12px 25px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 40px;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .contact-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: block;
    }

    .about-content {
        flex-direction: column;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .floorplan-container {
        flex-direction: column;
    }

    .floorplan-tabs {
        flex: 1;
        width: 100%;
        order: 2;
        max-height: none;
        overflow-y: unset;
        border: #af8a51;
    }

    .floorplan-image-display {
        order: 1;
        width: 100%;
    }

    .floorplan-slider {
        display: block;
    }

    .floorplan-tabs {
        display: none;
    }

    .amenities-container {
        grid-template-columns: 1fr;
    }

   

    .location-content {
        flex-direction: column;
    }

    .footer-content {
        text-align: center;
    }

    .faq-flex-container {
        flex-direction: column;
    }

    .faq-form-container {
        order: 1;
    }

    .faq-accordion-container {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        min-width: unset;
    }

    .cta-button.btn-outline {
        margin-left: 10px;
    }

    .section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .pricing-container {
        gap: 20px;
    }
}


.insightsSwiper {
    max-width: 1200px; 
    height: 400px;   
    margin-left: auto;
    margin-right: auto;
}

.insightsSwiper .swiper-slide {
    height: auto;
}

.insightsSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.insightsSwiper .swiper-button-next,
.insightsSwiper .swiper-button-prev {
    color: #fff; 
    border-radius: 50%;
    width: 30px; 
    height: 30px; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}


@media (max-width: 768px) {

    .section-title h1,
    .section-title h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-title p {
        font-size: 0.9rem;
        text-align: center;
    }



    .about-content .about-text h3 {
        font-size: 1.5rem;
    }

    .about-content .about-text p {
        font-size: 0.9rem;
    }
}
/* Walkthrough Video Section */
.walkthrough .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;        /* desktop pe max width */
    aspect-ratio: 16 / 9;    /* video ka fixed ratio (responsive) */
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #000;        /* background black */
}

/* Video Element */
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* fill karega container ko */
    display: block;
    border-radius: 12px;
}
/* Align the developer image to the right */
@media (min-width: 768px) {
    .developer-right-image {
        display: block;
        flex-direction: row-reverse;
        justify-self: center;
        align-items: center;
        
    }
}
.developer {
    background-color: #f7f7f7;
}

   /* Custom Sticky Mobile Footer */
@media (max-width: 767px) {
    body {
        /* Add padding to prevent content from being hidden behind the fixed footer */
        padding-bottom: 55px;
    }

    .custom-mobile-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #000; /* Dark background for the footer bar */
        z-index: 1030;
    }
    
    .custom-mobile-footer .btn {
        background-color: #d4a762; /* Button color */
        border: 1px solid #725a35;
    }
    
    .custom-mobile-footer .btn:hover {
        background-color: #000;
    }
}