 /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        section {
            /*padding: 80px 0;*/
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #c6a46e;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: #d4af37;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background-color: #c6a46e;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #c6a46e;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: transparent;
            color: #c6a46e;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(198, 164, 110, 0.2);
        }
        
        .btn-gold {
            background-color: #d4af37;
            border-color: #d4af37;
        }
        
        .btn-gold:hover {
            background-color: transparent;
            color: #d4af37;
        }
        
        /* Hero Section */
        #hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 0;
        }
        
        #hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease;
        }
        
        #hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        #hero .btn {
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        /* Builder Overview Section */
        #overview {
            background-color: white;
        }
        
        .overview-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .overview-text {
            flex: 1;
        }
        
        .overview-text h3 {
            color: #c6a46e;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .overview-text p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
        .overview-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 8s ease;
        }
        
        .overview-image:hover img {
            transform: scale(1.1);
        }
        
        /* ENHANCED: Builder Highlights Section */
        #highlights {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            position: relative;
            overflow: hidden;
        }
        
        #highlights::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(198, 164, 110, 0.05);
            top: -150px;
            right: -150px;
        }
        
        #highlights::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(198, 164, 110, 0.05);
            bottom: -100px;
            left: -100px;
        }
        
        .highlights-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .highlight-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border-top: 3px solid transparent;
            position: relative;
        }
        
        .highlight-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-top-color: #c6a46e;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .highlight-icon {
            background: linear-gradient(135deg, #c6a46e 0%, #d4af37 100%);
            color: white;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .highlight-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: skewX(-30deg) translateX(-150%);
            transition: transform 0.8s ease;
        }
        
        .highlight-card:hover .highlight-icon::before {
            transform: skewX(-30deg) translateX(150%);
        }
        
        .highlight-content {
            padding: 30px;
        }
        
        .highlight-content h3 {
            color: #c6a46e;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        /* Projects Section */
        #projects {
            background-color: white;
        }
        
        .project-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            padding: 10px 25px;
            background-color: #e9ecef;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: linear-gradient(135deg, #c6a46e 0%, #d4af37 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(198, 164, 110, 0.3);
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .project-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 8s ease;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.15);
        }
        
        .project-info {
            padding: 25px;
        }
        
        .project-info h3 {
            color: #c6a46e;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .project-location {
            color: #d4af37;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }
        
        .project-details {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .project-details li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .project-details i {
            color: #d4af37;
            margin-right: 10px;
            width: 20px;
        }
        
        .project-status {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .status-completed {
            background-color: #d4edda;
            color: #155724;
        }
        
        .status-construction {
            background-color: #fff3cd;
            color: #856404;
        }
        
        /* ENHANCED: Locations Covered Section */
        #locations {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                        url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }
        
        #locations::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
            z-index: 0;
        }
        
        #locations .container,
        #locations .section-title,
        #locations .location-cards {
            position: relative;
            z-index: 1;
        }
        
        .location-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .location-card {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-top: 5px solid #c6a46e;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, #c6a46e, #d4af37);
            transition: height 0.6s ease;
        }
        
        .location-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .location-card:hover::before {
            height: 100%;
        }
        
        .location-card h3 {
            color: #c6a46e;
            margin-bottom: 15px;
            font-size: 1.6rem;
            position: relative;
            padding-left: 15px;
        }
        
        .location-card h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: #d4af37;
            border-radius: 50%;
        }
        
        .location-card p {
            margin-bottom: 15px;
            position: relative;
        }
        
        /* Why Choose Section */
        #why-choose {
            background-color: #f0f4f8;
        }
        
        .why-choose-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .why-choose-text {
            flex: 1;
        }
        
        .why-choose-text h3 {
            color: #c6a46e;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .why-choose-list {
            list-style: none;
        }
        
        .why-choose-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .why-choose-list i {
            color: #d4af37;
            margin-right: 15px;
            font-size: 1.3rem;
            margin-top: 5px;
        }
        
        .why-choose-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .why-choose-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 8s ease;
        }
        
        .why-choose-image:hover img {
            transform: scale(1.1);
        }
        
        /* ENHANCED: Project Selection Approach Section */
        #approach {
            background: linear-gradient(135deg, #1a3a5f 0%, #2a4a6f 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        #approach::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(198, 164, 110, 0.1);
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }
        
        #approach::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(198, 164, 110, 0.1);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
        }
        
        #approach .section-title h2 {
            color: white;
        }
        
        #approach .section-title h2::after {
            background: #d4af37;
        }
        
        #approach .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .approach-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            counter-reset: step-counter;
            position: relative;
            z-index: 1;
        }
        
        .step {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 10px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            padding-top: 60px;
            transition: all 0.4s ease;
        }
        
        .step:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .step::before {
            counter-increment: step-counter;
            content: "0" counter(step-counter);
            position: absolute;
            top: -20px;
            left: 30px;
            background: linear-gradient(135deg, #c6a46e 0%, #d4af37 100%);
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }
        
        .step:hover::before {
            transform: scale(1.1) rotate(5deg);
        }
        
        .step h3 {
            color: #d4af37;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .step p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* ENHANCED: FAQs Section */
        #faqs {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }
        
        #faqs .section-title h2 {
            color: #c6a46e;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 5px solid transparent;
        }
        
        .faq-item:hover {
            border-left-color: #c6a46e;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .faq-item.active {
            border-left-color: #d4af37;
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
        }
        
        .faq-question {
            background-color: white;
            padding: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #1a3a5f;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-question {
            background: linear-gradient(135deg, #c6a46e 0%, #d4af37 100%);
            color: white;
        }
        
        .faq-question i {
            transition: all 0.4s ease;
            font-size: 1.2rem;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: white;
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            background-color: white;
            line-height: 1.7;
        }
        
        .faq-item.active .faq-answer {
            padding: 25px;
            max-height: 500px;
            border-top: 1px solid #f0f0f0;
        }
        
        .faq-answer p {
            color: #555;
            font-size: 1.05rem;
        }
        
        /* Contact CTA */
        #contact-cta {
            background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 50px 0;
        }
        
        #contact-cta h2 {
            font-size: 1.9rem;
            margin-bottom: 20px;
        }
        
        #contact-cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .overview-content, .why-choose-content {
                flex-direction: column;
            }
            
            #hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 0px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
                margin: 20px;
            }
            
            #hero h1 {
                font-size: 2.2rem;
                
            }
            
            #hero p {
                font-size: 1.1rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            /*.location-card, .highlight-card, .step {
                padding: 25px;
            }*/
            
            .faq-question {
                padding: 20px;
                font-size: 1rem;
            }
            
            
/*footer contact section*/            
.box {
  max-width: 350px;
  border: 1px solid #ddd;
  padding: 15px;
  font-family: Arial, sans-serif;
}

.inner-qr h2 {
  margin-bottom: 12px;
  font-size: 18px;
}

.inner-qr p {
  margin: 10px 0;
  cursor: pointer;
}

.inner-qr p a {
  color: #333;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.inner-qr p i {
  margin-right: 8px;
  color: #333;
  transition: color 0.3s ease;
}

/* ðŸ”¥ HOVER EFFECT */
.inner-qr p:hover a,
.inner-qr p:hover i {
  color: #0d6efd; /* Blue on hover */
}


/*footer contact section*/             

/* Default (mobile & tablet) – NO black background */
.black-bg{
  background: transparent;
}

/* Desktop view only */
@media (min-width: 992px){
  .black-bg{
    background-color: #000;
    padding: 40px 0;
  }

  .black-bg h1,
  .black-bg h2,
  .black-bg h4,
  .black-bg i{
    color: #fff;
  }

  .white-hr{
    background: #fff;
  }
}

        
    }
        
        
        
/*strat Locations Covered css  */      
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }



        .container1 {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .card {
            width: 270px;
            /* Light gradient background using your theme */
            background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
            border-radius: 25px;
            border: 1px solid #e0d5c1;
            text-align: center;
            padding: 30px 20px;
            position: relative;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(198, 164, 110, 0.2);
            border-color: #c6a46e;
        }

        /* Fixed Pin Styling */
        .pin-container {
            display: flex;
            justify-content: center;
            margin-bottom: 25px;
        }

        .pin {
            width: 55px;
            height: 55px;
            background-color: #c62828; /* Original Red Pin */
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 10px rgba(198, 40, 40, 0.3);
        }

        /* Icon fix: rotate wapas karke center karna */
        .pin i {
            color: white;
            font-size: 22px;
            transform: rotate(45deg); 
            display: block;
        }

        h3 {
            color: #333;
            font-size: 1.2rem;
            margin-bottom: 12px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

/*        p {
            font-size: 0.7rem;
            color: #777;
            line-height: 1.5;
            margin-bottom: 25px;
            padding: 0 10px;
            font-weight: 600;
        }*/

        .illustration img {
            width: 100%;
            height: 120px;
            object-fit: contain;
            margin-bottom: 25px;
        }

        /* Button using your color #c6a46e */
        .explore-btn {
            text-decoration: none;
            color: #c6a46e; 
            font-weight: bold;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .explore-btn:hover {
            color: #9c7e52;
        }

        /* Custom Gradients for each card top */
        .card-noida { border-top: 5px solid #c6a46e; }
        .card-siddharth { border-top: 5px solid #c6a46e; }
        .card-ghaziabad { border-top: 5px solid #c6a46e; }
        .card-noida-ext { border-top: 5px solid #c6a46e; }
/*End Locations Covered css  */           
        
        
/*strat Floor Plans & Sizes inner page css   */          
:root {
            --primary-gold: #c6a46e;
            --dark-gold: #a38555;
            --soft-gold: rgba(198, 164, 110, 0.15);
            --text-dark: #1a1a1a;
            --white: #ffffff;
            --border-color: #e0e0e0;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fcfcfc;
        }


        .header-section {
            text-align: center;
            margin-bottom: 50px;
        }

        .header-section h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .gold-divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            margin: 15px auto;
        }

        /* --- DESKTOP TABLE STYLE --- */
        .table-container {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .floor-plan-table {
            width: 100%;
            border-collapse: collapse;
        }

        .floor-plan-table thead {
            background-color: var(--text-dark);
            color: var(--white);
        }

        .floor-plan-table th {
            padding: 22px;
            text-align: left;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .floor-plan-table tbody tr {
            border-bottom: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .floor-plan-table tbody tr:hover {
            background-color: var(--soft-gold);
            transform: scale(1.01);
            box-shadow: 0 10px 30px rgba(198, 164, 110, 0.25);
            position: relative;
            z-index: 1;
        }

        .floor-plan-table td {
            padding: 22px;
            font-size: 1rem;
            color: var(--text-dark);
            border-right: 1px solid var(--border-color);
        }

        .floor-plan-table td:last-child { border-right: none; }

        .config-highlight {
            color: var(--dark-gold);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .btn-enquire {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: white;
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(198, 164, 110, 0.3);
            transition: 0.3s;
        }

        /* --- MOBILE BOX STYLE WITH BORDER & SHADOW --- */
        @media (max-width: 850px) {
            /*body { padding: 20px 10px; }*/
            /*.header-section h2 { font-size: 1.8rem; }*/
            
            .floor-plan-table thead { display: none; }
            .table-container { border: none; background: transparent; box-shadow: none; overflow: visible; }
            
            .floor-plan-table, .floor-plan-table tbody, .floor-plan-table tr, .floor-plan-table td {
                display: block;
                width: 100%;
            }

            .floor-plan-table tbody tr {
                background: white;
                margin-bottom: 30px;
                border-radius: 15px;
                padding: 20px;
                border: 1px solid var(--primary-gold); 
                box-shadow: 0 12px 24px rgba(198, 164, 110, 0.2);
            }

            .floor-plan-table td {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 15px 0;
                border: none;
                border-bottom: 1px solid #f0f0f0;
            }

            .floor-plan-table td::before {
                content: attr(data-label);
                font-weight: 600;
                color: #888;
                font-size: 0.8rem;
            }

            .floor-plan-table td.config-highlight {
                justify-content: center;
                font-size: 1.25rem;
                background-color: var(--soft-gold);
                margin: -20px -20px 15px -20px;
                padding: 15px;
                border-radius: 15px 15px 0 0;
                border-bottom: 2px solid var(--primary-gold);
            }
            .floor-plan-table td.config-highlight::before { content: ""; }

            .floor-plan-table td:last-child { border: none; justify-content: center; padding-top: 20px; }
            .btn-enquire { width: 100%; padding: 16px; border-radius: 12px; }
        }

        /* --- PERFECTLY CENTERED MODAL --- */
        .modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            padding: 20px;
            
            /* Center logic */
            align-items: center;
            justify-content: center;
        }

        /* Class to show modal with flex centering */
        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            width: 100%;
            max-width: 450px;
            border-radius: 20px;
            padding: 40px;
            position: relative;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            animation: popCenter 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        @keyframes popCenter {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .close-btn { position: absolute; right: 25px; top: 20px; font-size: 30px; cursor: pointer; color: #bbb; }

        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
        .form-group input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            outline: none;
        }
        .form-group input:focus { border-color: var(--primary-gold); box-shadow: 0 0 8px var(--soft-gold); }

        .btn-submit {
            width: 100%;
            padding: 16px;
            background: var(--text-dark);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-submit:hover { background: var(--primary-gold); }

        @media (max-width: 500px) {
            .modal-content { padding: 30px 20px; }
        }
/*End Floor Plans & Sizes inner page css   */   
        

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .location-section {
            background: linear-gradient(135deg, #c6a46e 0%, #d4b885 100%);
            padding: 80px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .location-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .location-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .section-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        /* EQUAL HEIGHT COLUMNS */
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: stretch; /* SAME HEIGHT */
            height: 580px; /* FIXED HEIGHT FOR BOTH */
        }

        /* Features Column */
        .features-column {
            display: flex;
            flex-direction: column;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            height: 100%; /* Full height match */
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            flex-grow: 1;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(15px);
            border-radius: 18px;
            padding: 22px 10px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 145px; /* Fixed card height */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            transition: left 0.6s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 45px rgba(0,0,0,0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 12px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: #fff;
            transform: scale(1.1);
        }

        .feature-time {
            font-size: 1.6rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 6px;
            display: block;
            text-align: center;
        }

        .feature-text {
            font-size: 0.95rem;
            font-weight: 500;
            text-align: center;
            opacity: 0.95;
            margin: 0;
            color:#000;
        }

        /* Map Column - SAME HEIGHT */
        .map-column {
            height: 100%; /* Matches features column */
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
            background: #1a1a1a;
        }

        #locationMap {
            width: 100%;
            height: 100%;
            border-radius: 25px;
            min-height: 520px;
        }

        .map-placeholder {
            height: 100%;
            background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #c6a46e;
            font-size: 1.4rem;
            font-weight: 600;
            text-align: center;
            gap: 20px;
            padding: 40px;
        }

        .map-placeholder::before {
            content: '📍';
            font-size: 5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.15); opacity: 1; }
        }

        @media (max-width: 992px) {
            .location-content {
                grid-template-columns: 1fr;
                height: auto;
                gap: 40px;
            }
            
            .features-column {
                padding: 5px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            
            .map-column, #locationMap {
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .location-section {
                padding: 50px 15px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .location-content {
                gap: 30px;
            }
            
            .feature-card {
                height: 130px;
                padding: 18px 15px;
            }
        }




/*Amenities css for inner page Start*/

        .amenities-section {
            background: linear-gradient(135deg, #f8f5f0 0%, #fffaf5 100%);
            padding: 60px 20px;
            color: #2c1810;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .amenities-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.8" fill="%23c6a46e"/><circle cx="75" cy="75" r="1.2" fill="%23d4b885"/><circle cx="50" cy="10" r="0.6" fill="%23c6a46e"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)" opacity="0.05"/></svg>');
        }

        .amenities-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(198, 164, 110, 0.2);
            color: #2c1810;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #3a2a1a;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .amenity-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px 20px;
            border: 2px solid rgba(198, 164, 110, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(198, 164, 110, 0.15);
        }

        .amenity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #c6a46e, transparent);
            transition: left 0.6s;
        }

        .amenity-card:hover::before {
            left: 100%;
        }

        .amenity-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 45px rgba(198, 164, 110, 0.3);
            border-color: #c6a46e;
        }

        .amenity-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #c6a46e, #d4b885);
            border-radius: 18px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 8px 20px rgba(198, 164, 110, 0.4);
        }

        .amenity-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2c1810;
            margin: 0 0 12px 0;
            line-height: 1.4;
        }

        @media (max-width: 1100px) {
            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 22px;
            }
        }

        @media (max-width: 768px) {
            .amenities-section {
                padding: 45px 15px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .amenity-card {
                padding: 25px 18px;
            }
            
            .amenity-icon {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .amenities-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
        }

/*Amenities css for inner page End*/



/*Gallery inner page css Start*/

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .gallery-section {
            background: linear-gradient(135deg, #f8f5f0 0%, #fffaf5 100%);
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .gallery-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.8" fill="%23c6a46e"/><circle cx="75" cy="75" r="1.2" fill="%23d4b885"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)" opacity="0.03"/></svg>');
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .gallery-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c1810;
            margin-bottom: 12px;
            text-shadow: 0 2px 4px rgba(198, 164, 110, 0.2);
        }

        .gallery-subtitle {
            font-size: 1.2rem;
            color: #3a2a1a;
            /*max-width: 600px;*/
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(1, 280px);
            gap: 18px;
            padding: 10px 0;
        }

        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #ddd;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(198, 164, 110, 0.15);
            border: 3px solid transparent;
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 45px rgba(198, 164, 110, 0.35);
            border-color: #c6a46e;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Lightbox Modal - Conflict Free */
        #galleryLightbox {
            display: none;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0,0,0,0.95) !important;
            z-index: 999999 !important;
        }

        #lightboxImg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
            border-radius: 12px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.8);
        }

        .lightbox-close {
            position: fixed !important;
            top: 20px !important;
            right: 30px !important;
            color: white !important;
            font-size: 40px !important;
            font-weight: bold !important;
            cursor: pointer !important;
            z-index: 1000000 !important;
            transition: 0.3s;
        }

        .lightbox-close:hover {
            color: #c6a46e !important;
        }

        .lightbox-prev, .lightbox-next {
            position: fixed !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            background: rgba(198,164,110,0.9) !important;
            color: white !important;
            border: none !important;
            width: 50px !important;
            height: 50px !important;
            border-radius: 50% !important;
            font-size: 20px !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
        }

        .lightbox-prev { left: 20px !important; }
        .lightbox-next { right: 20px !important; }

        .lightbox-prev:hover, .lightbox-next:hover {
            background: #c6a46e !important;
            transform: translateY(-50%) scale(1.1) !important;
        }

        @media (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(3, 260px);
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .gallery-section {
                padding: 40px 15px;
            }
            .gallery-title {
                font-size: 2rem;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 240px);
                gap: 14px;
            }
            .lightbox-close {
                top: 15px !important;
                right: 20px !important;
                font-size: 30px !important;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 220px);
                gap: 12px;
            }
            
        }  

/*Gallery inner page css End*/



/*Floor Plan css Start*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .floorplan-section {
            background: linear-gradient(135deg, #f8f5f0 0%, #fffaf5 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .floorplan-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.8" fill="%23c6a46e"/><circle cx="75" cy="75" r="1.2" fill="%23d4b885"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)" opacity="0.03"/></svg>');
        }

        .floorplan-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c1810;
            margin-bottom: 15px;
            text-shadow: 0 2px 8px rgba(198, 164, 110, 0.3);
        }

        /* PERFECT CENTER ALIGN - FLEX */
        .floorplan-grid {
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            gap: 25px !important;
            margin-bottom: 20px !important;
            flex-wrap: wrap !important;
            max-width: 1200px !important;
            margin-left: auto !important;
            margin-right: auto !important;
            padding: 0 20px !important;
        }

        .floorplan-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            background: #f9f9f9;
            flex: 0 0 calc(33.333% - 17px);
            max-width: 380px;
        }

        .floorplan-item:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(198, 164, 110, 0.4);
        }

        /* CLEAR SHARP IMAGES */
        .floorplan-image {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .floorplan-item:hover .floorplan-image {
            transform: scale(1.08);
        }

        .floorplan-label {
            background: linear-gradient(135deg, #c6a46e, #d4b885);
            color: white;
            padding: 18px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: all 0.3s ease;
        }

        .floorplan-item:hover .floorplan-label {
            background: linear-gradient(135deg, #d4b885, #c6a46e);
            transform: scale(1.02);
        }

        @media (max-width: 992px) {
            .floorplan-grid {
                gap: 20px !important;
            }
            .floorplan-item {
                flex: 0 0 calc(50% - 10px);
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            .floorplan-section {
                padding: 50px 15px;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .floorplan-grid {
                gap: 18px !important;
            }
            .floorplan-item {
                flex: 0 0 100%;
                max-width: none;
            }
            .floorplan-image {
                height: 280px;
            }
        }

/*Floor Plan css End*/ 


/*Price Button Added Here Start*/

  .price-container { text-align: center; margin-top: 25px; padding: 0 15px; }
  
  .price-btn {
    background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    color: #fff;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255,215,0,0.3);
    transition: 0.3s;
    width: 100%;
    max-width: 350px; /* Desktop size */
  }

  .price-btn:hover { transform: scale(1.02); }
  .amt { color: #fff; font-size: 20px; display: inline-block; }
  .onwards { font-size: 11px; color: #fff; opacity: 0.8; }

  /* Tablet & Mobile Responsive */
  @media (max-width: 768px) {
    .price-btn { font-size: 16px; padding: 14px 15px; max-width: 300px; }
    .amt { font-size: 18px; }
  }

  @media (max-width: 480px) {
    .price-btn { font-size: 14px; max-width: 280px; }
    .amt { font-size: 23px; }
  }
/*Price Button Added Here End*/  


        