:root {
            --primary-color: #c9a96e;
            --dark-bg: #0a0a0a;
            --dark-section: #121212;
            --medium-dark: #1a1a1a;
            --text-light: #e0e0e0;
            --text-gray: #aaaaaa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #fff;
            color: #000;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            color: #00984a;
        }
        
        
        

        .container {
   /* width: 95%;*/  /* 95% width */
    max-width: 1600px;  /* Maximum 1400px */
    margin: 0 auto;  /* Center में */
}
        
        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            z-index: 2;
            position: relative;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin-bottom: 2rem;
        }
        
        /* Section Styling */
        .section-dark {
            background-color: #fff;
            padding: 40px 0;
        }
        
        .section-medium {
            background-color: #ededec8c;
            padding: 40px 0;
        }
        
        /* Center Aligned Section Titles */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: #00984a;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            color: var(--text-gray);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        /* Image Zoom Effect */
        .zoom-container {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .zoom-container:hover {
            transform: translateY(-10px);
        }
        
        .zoom-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .zoom-container:hover .zoom-img {
            transform: scale(1.1);
        }
        
        /* Box with Icon */
        .icon-box {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.3s;
            border: 1px solid rgb(67 172 87);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
        }
        
        .icon-box:hover {
            transform: translateY(-10px);
            border-color: rgba(201, 169, 110, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .icon-box .icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            border: 1px solid rgba(201, 169, 110, 0.2);
            color: #00984a;
            font-size: 2rem;
        }
        
        /* Two Column Content Box */
        .two-col-box {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 40px;
            height: 100%;
            border-left: 4px solid #00984a;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .two-col-box h4 {
            margin-bottom: 20px;
            color: #00984a;
        }
        
        .two-col-box ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .two-col-box ul li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .two-col-box ul li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00984a;
            font-weight: bold;
        }
        
        /* Project Cards */
        /* Card Main Container */
.project-card {
    background-color: #ffffff !important; /* Pure White Background */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0 !important; /* Light border */
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Text Colors inside White Box */
.project-card h4 {
    color: #1a1a1a !important; /* Title color dark */
}

.project-card .text-white-50, 
.project-card .text-muted,
.project-card span {
    color: #444 !important; /* All text inside box dark grey */
}

.project-card strong {
    color: #000 !important; /* Strong labels black */
}

/* Green Accents */
.gold-icon {
    color: #00984a !important; /* Icons Green */
}

.btn-enquire {
    background-color: #00984a !important; /* Button Green */
    color: #ffffff !important;
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

/* Gap and Alignment */
.row.g-4 {
    row-gap: 1.5rem !important; /* Yeh upar aur neeche ke boxes mein gap layega */
}


/* FAQ Section */
        .faq-section {
            padding: 40px 0;
            background-color: #fff;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            border-left: 3px solid #00984a;
        }
        
        .faq-question {
            padding: 10px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .faq-question h4 {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        
        .faq-answer.active {
            padding: 20px 30px;
            max-height: 500px;
        }
        
        .faq-toggle {
            color: #00984a;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .faq-toggle.active {
            transform: rotate(45deg);
        }
        
        /* FAQ Section with Building Background */
.faq-section {
    padding: 80px 0;
    /* Image URL yahan badlein */
    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=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect ke liye */
    color: #ffffff; /* Section ka text white karne ke liye */
}

/* Header text ko white rakhein background par */
.faq-section .section-title, 
.faq-section .section-subtitle {
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
}

/* FAQ Items ko alag dikhane ke liye styling */
.faq-item {
    background-color: rgba(255, 255, 255, 0.95); /* Halki transparent white background */
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 5px solid #00984a; /* Prateek Group Green */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #333; /* Boxes ke andar ka text dark rakhein */
}

.faq-question h4 {
    color: #222;
    font-weight: 600;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
}


        /* Footer */
        .footer {
            background-color: #080808;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            color: #00984a;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #00984a;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: var(--text-gray);
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #00984a;
            color: var(--dark-bg);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            margin-top: 40px;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Button Styling */
        .btn-gold {
            background-color: #00984a;
            color: var(--dark-bg);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-gold:hover {
            background-color: #d8b871;
            color: var(--dark-bg);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(201, 169, 110, 0.3);
        }
        
        .btn-outline-gold {
            background-color: transparent;
            color: #00984a;
            border: 2px solid #00984a;
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-outline-gold:hover {
            background-color: #00984a;
            color: var(--dark-bg);
            transform: translateY(-3px);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
                text-align: center;
            }
            
            .hero-subtitle {
                text-align: center;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .hero-section {
                height: 85vh;
            }
            
            .section-dark, .section-medium, .faq-section {
                padding: 5px 0;
            }
            
            .two-col-box {
                padding: 30px 20px;
                margin-top: 15px;
            }
            
            .icon-box, .location-box {
                padding: 30px 20px;
            }
            
            .project-img {
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero-section {
                height: 80vh;
            }
        }





/* TEXT JUSTIFICATION - Add यहाँ */

/* सभी Main Text Elements */
p, 
.two-col-box p,
.icon-box p,
.location-box p,
.content-text p,
.faq-answer p,
.project-card p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
}

/* Specific Sections */
#overview .content-text p,
#highlights .two-col-box p,
#why-choose .two-col-box p,
#approach .two-col-box p,
#locations .location-box p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
}

/* Hero Section के Text को Center रखें */
.hero-section p,
.section-subtitle,
.hero-subtitle {
    text-align: center !important;
    text-justify: auto !important;
}

/* Project Cards के Description */
.project-card p.text-gray,
.project-card p.mb-3 {
    text-align: justify;
    text-justify: inter-word;
}

/* Footer Text को Left रखें */
.footer p,
.footer-links p {
    text-align: left !important;
}

/* Lists को भी Justify करें */
.two-col-box ul li {
    text-align: justify;
    text-justify: inter-word;
}

/* Small Text और Labels को Exclude करें */
small, 
.detail-label,
.project-status,
.text-gray.mb-2 {
    text-align: left !important;
    text-justify: auto !important;
}    

/* Quick Fix: सिर्फ यह CSS Add करें */
#projects .row {
    margin-bottom: -1.5rem !important;
}

#projects .row > div {
    margin-bottom: 1.5rem !important;
}

/* Equal Height Cards */
#projects .project-card {
    height: 100%;
    margin-bottom: 0;
}
/* TEXT JUSTIFICATION - Add यहाँ */



/*left side popup css start  */  
:root {
        --gold-primary: #00984a;
        --gold-light: #d4b885;
        --whatsapp-color: #25D366;
        --call-color: #0072FF;
    }

    .colorful-sidebar {
        position: fixed;
        left: 15px;
        top: 80%;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .n-item { text-decoration: none; position: relative; display: flex; align-items: center; }

    .icon-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 22px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Floating & Pulse Animation */
    .wa .icon-circle { background: var(--whatsapp-color); animation: pulse-wa 2s infinite; }
    .cl .icon-circle { background: var(--call-color); animation: pulse-cl 2s infinite; }
    .ct .icon-circle { background: #00984a; }

    .n-item:hover .icon-circle { transform: scale(1.15) rotate(5deg); }

    .n-tooltip {
        position: absolute;
        left: 65px;
        background: #333;
        color: #fff;
        padding: 6px 15px;
        border-radius: 20px;
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .n-item:hover .n-tooltip { opacity: 1; visibility: visible; transform: translateX(10px); }

    /* Form Styles */
    .form-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(8px);
        display: flex; justify-content: center; align-items: center;
        z-index: 10000; opacity: 0; visibility: hidden; transition: 0.4s;
    }

    .form-overlay.active { opacity: 1; visibility: visible; }

    .form-container {
        background: #fff;
        width: 90%;
        max-width: 380px;
        padding: 35px 25px;
        border-radius: 24px;
        position: relative;
        font-family: 'Poppins', sans-serif;
        box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    }

    .form-container h3 { color: #00984a; text-align: center; margin-bottom: 10px; font-weight: 800; }

    .input-group { position: relative; margin-bottom: 15px; }
    .input-group i { position: absolute; left: 15px; top: 15px; color: var(--gold-primary); font-size: 14px; }
    
    .form-control {
        width: 100%;
        padding: 12px 15px 12px 40px;
        border: 1.5px solid #eee;
        border-radius: 12px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        box-sizing: border-box;
        transition: 0.3s;
        background: #fdfdfd;
    }

    .form-control:focus { outline: none; border-color: var(--gold-primary); background: #fff; }

    .gold-gradient-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #00984a, #00984a);
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(198, 164, 110, 0.3);
    }

    .gold-gradient-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(198, 164, 110, 0.4); }

    .close-btn { position: absolute; top: 15px; right: 20px; font-size: 28px; border: none; background: none; cursor: pointer; color: #ccc; }

    /* Animations */
    @keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
    @keyframes pulse-cl { 0% { box-shadow: 0 0 0 0 rgba(0, 114, 255, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(0, 114, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 114, 255, 0); } }

    @media (max-width: 768px) {
        .colorful-sidebar { left: 10px; bottom: 50px; top: auto; transform: none; }
        .icon-circle { width: 45px; height: 45px; font-size: 20px; }
        .n-tooltip { display: none; }
    }
    
/*left side popup css end  */  





/* contact form right side state */
  .form-box {
    display: none; 
  }

  /* Sirf Desktop (768px and above) par show hoga */
  @media (min-width: 768px) {
    .form-box {
      display: block;
      background: #fff; /* Pure Black */
      border: 1.5px solid #00984a; /* Gold Border */
      border-radius: 12px 12px 0 0;
      width: 320px;
      position: fixed;
      bottom: 0;
      right: 30px;
      z-index: 9999;
      box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
      transition: all 0.4s ease-in-out;
    }

    /* Header Styling */
    .top_form {
      background: linear-gradient(-45deg, #009688, #4CAF50, #009688, #4CAF50); /* Black Header */
      border-bottom: 1px solid #333;
      padding: 15px;
      border-radius: 12px 12px 0 0;
      cursor: pointer;
    }

    .top_form h2 {
      color: #fff; /* Gold Text */
      font-size: 16px;
      font-weight: 700;
      margin: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .mybtn {
      color: #000;
      font-size: 20px;
      transition: 0.3s;
    }

    .form_content {
      padding: 20px;
      background: #fff;
    }

    /* Input Field Styling */
    .form-box .form-control {
      background: #fff;
      border: 1px solid #333;
      color: #fff;
      margin-bottom: 15px;
      border-radius: 5px;
      padding: 10px 12px;
      font-size: 14px;
    }

    .form-box .form-control:focus {
      border-color: #00984a;
      box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
      background: #111;
      color: #fff;
    }

    /* Gold Button */
    .form-box .enquire-btn {
      background: #00984a;
      color: #fff;
      border: none;
      font-weight: 700;
      width: 100%;
      padding: 12px;
      border-radius: 5px;
      text-transform: uppercase;
      transition: 0.3s;
      margin-top: 5px;
    }

    .form-box .enquire-btn:hover {
      background: #000;
      color: #fff !important;
      transform: translateY(-2px);
    }

    /* Minimize Animation Class */
    .form-minimized {
      transform: translateY(calc(100% - 54px));
    }
  }
 /* contact form right side end */ 
 
 
 
 
/*popup form css start*/

#myModal-8 .modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fff8 100%) !important;
    border-radius: 25px;
    border: none;
    box-shadow: 0 25px 80px rgba(0,152,74,0.25), 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    animation: modalSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#myModal-8 .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

#myModal-8 .modal-body {
    padding: 45px 35px 40px !important;
    position: relative;
}

/* Header - Super Attractive */
#myModal-8 .top_modal_content {
    text-align: center;
    margin-bottom: 35px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(40,167,69,0.05) 0%, rgba(32,201,151,0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0,152,74,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#myModal-8 .top_modal_content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,152,74,0.15);
    border-color: #28a745;
}

#myModal-8 .projectName_heading {
    color: #155724;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 5px rgba(40,167,69,0.5)); }
    to { filter: drop-shadow(0 0 15px rgba(40,167,69,0.8)); }
}

#myModal-8 .luxury_text {
    color: #28a745;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    text-shadow: 0 2px 4px rgba(40,167,69,0.2);
}

#myModal-8 .enquire_text {
    color: #6c757d;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

/* Premium Input Fields */
#myModal-8 .form-control {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0,152,74,0.2);
    color: #2d4a2d;
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#myModal-8 .form-control::placeholder {
    color: #9eb8a0;
    font-weight: 400;
}

#myModal-8 .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40,167,69,0.15), 0 10px 30px rgba(40,167,69,0.2);
    outline: none;
    transform: translateY(-2px);
    background: rgba(255,255,255,1);
}

/* Stunning Button */
#myModal-8 .enquire-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff !important;
    font-weight: 800;
    font-size: 16px;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(40,167,69,0.4);
}

#myModal-8 .enquire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

#myModal-8 .enquire-btn:hover::before {
    left: 100%;
}

#myModal-8 .enquire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(40,167,69,0.5);
}

#myModal-8 .enquire-btn:active {
    transform: translateY(-1px);
}

/* ✅ FIXED Close Button - 100% Working */
#myModal-8 .close-btn {
    position: absolute !important;
    right: 20px !important;
    top: 20px !important;
    z-index: 9999 !important;
    background: rgba(255,255,255,0.95) !important;
    border: 2px solid rgba(0,152,74,0.3) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    font-weight: bold !important;
    color: #28a745 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    border: none !important;
}

#myModal-8 .close-btn i {
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#myModal-8 .close-btn:hover {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    transform: rotate(90deg) scale(1.1) !important;
    box-shadow: 0 15px 40px rgba(40,167,69,0.4) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

#myModal-8 .close-btn:active {
    transform: rotate(90deg) scale(0.95) !important;
}

#myModal-8 .close-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(40,167,69,0.3), 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Responsive */
@media (max-width: 480px) {
    #myModal-8 .modal-dialog {
        margin: 20px;
    }
    
    #myModal-8 .modal-body {
        padding: 35px 10px 30px !important;
    }
    
    #myModal-8 .projectName_heading {
        font-size: 22px;
    }
    
    #myModal-8 .close-btn {
        width: 45px !important;
        height: 45px !important;
        right: 15px !important;
        top: 15px !important;
        font-size: 20px !important;
    }
}

 /*popup form css start*/  
 
 
 
 
 
 
/*Price List Start*/ 

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.price-section {
  background: #fff;
  color: #fff;
  padding: 30px 15px;
  text-align: center; /* MAIN CENTER */
}

.section-title {
  font-size: 30px;
  color: #00984a;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

.section-subtitle {
  color: #000;
  margin-bottom: 50px;
  font-size: 18px;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.price-card {
  /*background: linear-gradient(145deg, #00984a, #fff);*/
  border: 1px solid #00984a;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center; /* CARD TEXT CENTER */
  transition: all 0.4s ease;
}

.price-card h3 {
  font-size: 28px;
  color: #00984a;
  margin-bottom: 15px;
}

.size,
.price {
  text-align: center;
  color: #000;
}

.price {
  font-size: 22px;
  margin-bottom: 25px;
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.enquire-btn {
  display: inline-block;
  margin: auto;
  background: linear-gradient(-45deg, #009688, #4CAF50, #009688, #4CAF50);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.enquire-btn:hover {
  background: #000;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 600px) {
  .section-title {
    font-size: 32px;
    margin-top: 5px;
  }
}

/*End Price List*/


/*gallery css start*/

.gallery-box {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-box:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.4s ease;
}

/*.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}*/

@keyframes zoomIn {
    from {transform: scale(0.7);}
    to {transform: scale(1);}
}

@media (max-width: 767px) {
    .gallery-box {
        margin-bottom: 12px;
    }
}

@media (max-width: 767px) {
    .gallery-box img {
        height: 180px;
        border-radius: 10px;
    }
}

/*gallery css end*/



/*Location Advantages css start*/
.location-box {

    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.loc-item i {
    font-size: 22px;
    color: #c9a24d;
    min-width: 24px;
    margin-top: 3px;
}

.loc-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Map Box */
.map-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile gap adjustment */
@media (max-width: 767px) {
    #location-advantages .col-lg-6 {
        margin-bottom: 12px;   /* thoda sa clean gap */
    }

    #location-advantages .map-box {
        margin-top: 6px;       /* extra smooth spacing */
    }
}
/*Location Advantages css end*/



/*Start Amenities Css*/ 

/* Amenities Box Styling */
.amenity-box {
    border: 2px solid #009688; /* Golden border */
    border-radius: 14px;
    box-shadow: 0 8px 20px #4CAF50; /* Subtle golden shadow */
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.amenity-box i {
    color: #c9a24d; /* Golden icon */
    margin-bottom: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.amenity-box p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Hover Effect */
.amenity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px #009688;
    border-color: #00984a;
}

.amenity-box:hover i {
    transform: rotate(10deg);
    color: #00984a;
}

/* Row gap for desktop/tablet */
.row.amenities-row {
    row-gap: 40px;
    column-gap: 30px;
}

/* Mobile view: full width boxes, no horizontal gap */
@media (max-width: 767px) {
    .amenity-box {
        width: 100%;
        margin: 0 0 20px 0;
        padding: 20px;
    }

    .row.amenities-row {
        row-gap: 20px;
        column-gap: 0;
        justify-content: center;
    }
}

/*End Amenities Css*/ 


/*popup contact form css start*/

/* Popup Style Update - As per Image */
    .popup-overlay {
        display: none; 
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        justify-content: center;
        align-items: center;
        z-index: 9999;
        padding: 20px;
    }

    .popup-box {
        background: #fff;
        width: 100%;
        max-width: 400px;
        padding: 45px 25px 35px;
        border-radius: 40px; /* High rounding as per image */
        position: relative;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }

    /* Green Header Box */
    .brand-header {
        background: #f1faf5;
        border: 1px solid #d8ede2;
        border-radius: 25px;
        padding: 20px 10px;
        margin-bottom: 30px;
    }

    .brand-header h2 {
        color: #2eb878;
        font-size: 26px;
        font-weight: 700;
        margin: 0;
        letter-spacing: 1px;
    }

    .brand-header p {
        color: #2eb878;
        font-size: 13px;
        font-weight: 500;
        margin-top: 5px;
    }

    /* Close Button - Round White Circle */
    .close-btn {
        position: absolute;
        right: -10px;
        top: -10px;
        background: #fff;
        color: #2fb979;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        font-weight: bold;
        border: none;
    }

    /* Input Fields Style */
    .input-group { position: relative; margin-bottom: 15px; }

    .input-group input {
        width: 100%;
        padding: 16px 20px;
        background: #fff;
        border: 1.5px solid #e0f2e9;
        border-radius: 18px;
        color: #333;
        font-size: 15px;
        outline: none;
        transition: 0.3s;
    }

    .input-group input::placeholder { color: #abc4b8; }
    .input-group input:focus { border-color: #2eb878; }

    /* Green Submit Button */
    .submit-btn {
        width: 100%;
        padding: 18px;
        background: linear-gradient(to right, #2db975, #35ce8d);
        border: none;
        border-radius: 18px;
        font-size: 16px;
        font-weight: 800;
        cursor: pointer;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 8px 20px rgba(45, 185, 117, 0.3);
        margin-top: 10px;
    }

    /* Sidebar Fixes */
    .colorful-sidebar { position: fixed; left: 10px; top: 75%; transform: translateY(-50%); z-index: 1000; }
    .n-item { display: flex; align-items: center; margin-bottom: 10px; cursor: pointer; text-decoration: none; }
    .icon-circle { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
    .wa .icon-circle { background: #25d366; }
    .cl .icon-circle { background: #007bff; }
    .ct .icon-circle { background: #2eb878; }

/*popup contact form css end*/




/* Overview Section with Dark Image Background */
.overview-section {
    position: relative;
    /* Image path check karlein, testing ke liye maine Unsplash link dala hai */
    background: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?q=80&w=1920') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect ke liye */
    /*padding: 100px 0 !important;*/
    color: #ffffff; /* Default text color white */
}

/* Dark Overlay - Jo image ke upar layer banayega */
.overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 58, 24, 0.85) 100%);
    z-index: 1;
}

/* Container and Content positioning */
.overview-section .container {
    position: relative;
    z-index: 2; /* Text ko overlay ke upar lane ke liye */
}

.overview-title {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #00984a;
    margin-top: 15px;
}

/* Text Container */
.overview-content-full {
    max-width: 1550px; /* Full width mein readability ke liye limit zaroori hai */
    margin: 40px auto 0;
}

.overview-p {
    color: rgba(255, 255, 255, 0.9); /* Pure white se thoda kam taaki aankhon ko chubhe nahi */
    font-size: 16.3px;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: center; /* Center alignment dark theme par better lagti hai */
}

/* Stylish Highlight Box */
.highlight-box {
    background: rgba(0, 152, 74, 0.15); /* Transparent green tint */
    padding: 40px;
    border: 1px solid rgba(0, 152, 74, 0.4);
    border-radius: 15px;
    margin-top: 40px;
    backdrop-filter: blur(5px); /* Glassmorphism effect */
}

.highlight-box .overview-p {
    color: #00ff7b; /* Bright green highlight for important text */
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overview-section {
        padding: 60px 0 !important;
        background-attachment: scroll; /* Mobile par parallax band */
    }
    .overview-title {
        font-size: 32px;
    }
    .overview-p {
        font-size: 16px;
        text-align: left;
    }
}



/*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;
            margin-bottom: 40px;
        }

        .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: #00984a;
        }

        /* 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 #00984a */
        .explore-btn {
            text-decoration: none;
            color: #00984a; 
            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 #00984a; }
        .card-siddharth { border-top: 5px solid #00984a; }
        .card-ghaziabad { border-top: 5px solid #00984a; }
        .card-noida-ext { border-top: 5px solid #00984a; }
/*End Locations Covered css  */




/* Start Footer Css */

/* --- Global Reset for Footer (Box Cut hone se rokne ke liye) --- */
.footer-section, 
.footer-section *, 
.footer-section *::before, 
.footer-section *::after {
    box-sizing: border-box; /* Isse padding aur border width ke andar hi rehte hain */
}

.footer-section {
    background-color: #000;
    color: #fff;
    padding: 60px 0; /* Top/Bottom padding */
    font-family: 'Poppins', sans-serif;
    width: 100%;
    overflow-x: hidden; /* Kisi bhi tarah ka horizontal scroll khatam karne ke liye */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 0px; /* Container ke sides mein gap taaki box screen se na chipke */
}

/* Base Box Styling */
.footer-box {
    border: 1px solid #333;
    padding: 30px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    background-color: #000;
}

.footer-box:hover {
    border-color: #d4af37;
}

/* --- Desktop Layout (80% / 20% Ratio) --- */
@media (min-width: 992px) {
    .about-builder {
        flex: 4; /* Wide Box */
        min-width: 0; 
    }
    .cta-column {
        flex: 1; /* Small Box */
        min-width: 300px;
    }
}

/* Typography & Content */
.about-builder h3, .cta-column h3 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.about-builder p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    text-align: justify;
    margin: 0;
}

.cta-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-info li {
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #eee;
}

.cta-info li i {
    color: #d4af37;
    font-size: 18px;
    margin-top: 3px;
}

.cta-info li a {
    color: #eee;
    text-decoration: none;
    transition: 0.3s;
}

.cta-info li a:hover {
    color: #d4af37;
}

/* --- Footer Bottom --- */
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    text-align: center;
    border-top: 1px solid #222;
    padding: 30px 15px 0;
}

.disclaimer-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.copyright-text {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* --- Responsive Fixes (Mobile & Tablet) --- */
@media (max-width: 991px) {
    .footer-section {
        padding: 40px 0;
        
    }

    .footer-container {
        flex-direction: column; /* Stack boxes vertically */
        gap: 20px;
        
    }

    .footer-box {
        width: 100%; /* Box poori width lega */
        min-width: 100%;
        padding: 20px; /* Mobile par padding thodi kam */
        
    }

    .about-builder p {
        text-align: left; /* Mobile par justify gaps create karta hai */
         text-align:justify;
    }

    .about-builder h3, .cta-column h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .footer-box {
        padding: 15px; /* Bahut chote phones ke liye padding aur kam */
    }
    .copyright-text {
        font-size: 11px;
    }
}
    
/*End Footer Css*/  


/* --- FAQ Section Full CSS --- */

.faq-premium-wrap {
    padding: 80px 6%;
    /* Subtle Real Estate Background with White Overlay */
    background: linear-gradient(rgba(244, 244, 244, 0.92), rgba(244, 244, 244, 0.92)), 
                url('https://images.unsplash.com/photo-1464938050520-ef2270bb8ce8?q=80&w=2074&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #333333;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 36px);
    color: #1a1a1a;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Accordion Item Styling */
.faq-accordion-item {
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Hover effect on closed items */
.faq-accordion-item:not(.active):hover {
    transform: translateY(-2px);
    border-color: #00984a;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Question Button Base Styling */
.faq-question-btn {
    width: 100%;
    padding: 12px 30px;
    background: #FFFFFF;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #333333;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question-btn i {
    font-size: 14px;
    transition: transform 0.4s ease;
    color: #999;
}

/* --- ACTIVE STATE (When Question is Open) --- */

.faq-accordion-item.active {
    border-color: #00984a;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.faq-accordion-item.active .faq-question-btn {
    background-color: #00984a; /* Green Background */
    color: #FFFFFF;            /* White Text */
}

.faq-accordion-item.active .faq-question-btn i {
    transform: rotate(180deg);
    color: #FFFFFF;            /* White Icon */
}

/* Answer Content Area */
.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
}

.faq-answer-content p {
    padding: 25px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
    border-top: 1px solid rgba(0,0,0,0.05); /* Separator between green header and answer */
}

/* Active Answer Display */
.faq-accordion-item.active .faq-answer-content {
    max-height: 600px; /* High enough to contain long answers */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .faq-premium-wrap { padding: 50px 4%; }
    .faq-question-btn { padding: 18px 20px; font-size: 16px; }
    .faq-answer-content p { padding: 20px; }
}

/* --- FAQ Section End --- */