/* ===== Preloader Style ===== */
  /* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
  } */
  .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  /* Hide page content until loaded */
  /* body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
  } */
  .iti {
    width: 100%;
  }




/*about section css start*/

/* Sirf is section ke liye reset */
.gulshan-about-wrapper {
    position: relative;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
}

.gulshan-about-wrapper .ga-container {
    width: 80%; /* Aapki requirement ke hisaab se 80% */
    max-width: 1550px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

.gulshan-about-wrapper .ga-content-box {
    flex: 1.2;
    text-align: left; /* Align left explicitly */
}

.gulshan-about-wrapper .ga-tagline {
    color: #b89146;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.gulshan-about-wrapper .ga-title {
    font-size: 2rem;
    color: #111;
    margin: 0 0 15px 0;
    line-height: 1.2;
    border: none; /* Purani borders hatane ke liye */
}

.gulshan-about-wrapper .ga-text {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.gulshan-about-wrapper .ga-btn {
    padding: 10px 25px;
    background-color: #b89146;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.gulshan-about-wrapper .ga-image-box {
    flex: 0.8;
}

.gulshan-about-wrapper .ga-image-box img {
    width: 100%;
    height: 320px; /* Height kam rakhi hai */
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 12px 12px 0px #b89146;
}

/* Responsive */
@media (max-width: 768px) {
    .gulshan-about-wrapper .ga-container {
        width: 90%;
        flex-direction: column;
    }
    .gulshan-about-wrapper .ga-content-box {
        text-align: center;
    }
}

/*about section css end*/






/*highlights-section css*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Clean font */
}

/* Section Wrapper */
.gulshan-highlights-section {
    padding: 20px 0;
    background-color: #f9f9f9; /* Subtle light background */
}

/* Container */
.gulshan-highlights-section .gh-container {
    width: 80%; /* Width as per requirement */
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

/* Main Title */
.gulshan-highlights-section .gh-main-title {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Grid Layout (4*4 mean 4 in first row, 4 in second) */
.gulshan-highlights-section .gh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 Columns */
    gap: 25px; /* Space between boxes */
}

/* Individual Box Style */
.gulshan-highlights-section .gh-box {
    background: #ffffff;
    padding: 20px 5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* initial State Effects */
    border: 1px solid #eee; /* Light border initially */
    box-shadow: 0 4px 6px rgb(184 145 70); /* Light shadow initially */
    
    /* Motion (Transition) */
    transition: all 0.4s ease-in-out; /* Smooth hover effect */
}

/* Icon Wrap Style */
.gulshan-highlights-section .gh-icon-wrap {
    font-size: 2.5rem; /* Icon size */
    color: #b89146; /* Golden/Premium color */
    margin-bottom: 20px;
    transition: transform 0.3s ease; /* Icon motion on hover */
}

/* Box Text Style */
.gulshan-highlights-section .gh-box p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

/* --- Hover Effects --- */
.gulshan-highlights-section .gh-box:hover {
    transform: translateY(-8px); /* Motion up */
    border: 1px solid #b89146; /* Gold Border Effect */
    box-shadow: 0 12px 24px rgba(184, 145, 70, 0.2); /* Deeper Gold Shadow Effect */
    background-color: #fff;
}

/* Icon Motion on Box Hover */
.gulshan-highlights-section .gh-box:hover .gh-icon-wrap {
    transform: scale(1.1) rotate(5deg); /* Scale and slight rotate */
}

/* --- Responsive Design --- */

/* Tablet View (Max 1024px) - 2 Boxes per row */
@media (max-width: 1024px) {
    .gulshan-highlights-section .gh-container {
        width: 90%;
    }
    .gulshan-highlights-section .gh-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns */
        gap: 20px;
    }
}

/* Mobile View (Max 600px) - 1 Box per row */
@media (max-width: 600px) {
    .gulshan-highlights-section .gh-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .gulshan-highlights-section .gh-grid {
        grid-template-columns: 1fr; /* Single Column */
        gap: 15px;
    }
    .gulshan-highlights-section .gh-box {
        padding: 25px 15px;
    }
    /* Mobile hover simpler motion */
    .gulshan-highlights-section .gh-box:hover {
        transform: translateY(-4px); 
    }
}

/* --- Matching Header Styling --- */
.gh-header-match {
    text-align: center;
    margin-bottom: 50px; /* Space before grid */
}

.gh-tagline-match {
    color: #b89146; /* Premium Golden */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 10px;
}

.gh-main-title-match {
    font-size: 2.8rem;
    color: #111; /* Black for White Background */
    margin-bottom: 15px;
    font-weight: 800;
}

/* Gradient line under heading */
.gh-title-line-match {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, rgba(184,145,70,0.1), #b89146, rgba(184,145,70,0.1));
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gh-main-title-match {
        font-size: 2rem;
    }
}
/*highlights-section css*/







/* --- why-gulshan-section --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern Font */
}

/* --- Section Styling --- */
.why-gulshan-section {
    position: relative;
    padding: 80px 0;
    /* --- Dark Real Estate Background Image Effect --- */
    background: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax style effect */
    overflow: hidden;
    color: #fff; /* Default text color to white for dark bg */
}

/* Dark Overlay to make text readable */
.why-gulshan-section .wgc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Dark transparent layer */
    z-index: 1;
}

/* --- Container Styling --- */
.why-gulshan-section .wgc-container {
    width: 80%; /* Match requirement */
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Position content above overlay */
}

/* --- Header Styling --- */
.why-gulshan-section .wgc-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-gulshan-section .wgc-tagline {
    color: #b89146; /* Golden accent */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 10px;
}

.why-gulshan-section .wgc-main-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
}

.why-gulshan-section .wgc-title-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, rgba(184,145,70,0.1), #b89146, rgba(184,145,70,0.1));
    margin: 0 auto;
}

/* --- Grid Layout Styling --- */
.why-gulshan-section .wgc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 30px; /* Space between boxes */
}

/* --- Individual Box Styling --- */
.why-gulshan-section .wgc-box {
    position: relative;
    background-color: rgba(255, 255, 255, 0.04); /* Subtle transparent background */
    border-radius: 12px;
    overflow: hidden;
    /* Initial state for hover animation */
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Very faint border */
    display: flex; /* Flex to handle content height */
}

.why-gulshan-section .wgc-box-content {
    padding: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    z-index: 3; /* Position above bg effect */
}

/* --- Icon Styling --- */
.why-gulshan-section .wgc-icon-wrap {
    font-size: 2.5rem;
    color: #b89146; /* Golden accent */
    flex-shrink: 0; /* Prevents icon from shrinking */
    transition: all 0.4s ease;
}

/* --- Text Styling inside Box --- */
.why-gulshan-section .wgc-text-wrap {
    text-align: left;
}

.why-gulshan-section .wgc-box h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
    transition: color 0.4s ease;
}

.why-gulshan-section .wgc-box p {
    font-size: 1rem;
    color: #ccc; /* Slightly dimmed white */
    line-height: 1.6;
}

/* --- Box Hover Effects --- */
.why-gulshan-section .wgc-box:hover {
    transform: translateY(-8px); /* Elevates box */
    border-color: #b89146; /* Golden border appears */
    background-color: rgba(184, 145, 70, 0.03); /* Faint golden bg hue */
}

/* Icon & Title Motion on Hover */
.why-gulshan-section .wgc-box:hover .wgc-icon-wrap {
    transform: scale(1.1) rotate(-5deg); /* Scaled and rotated icon */
    color: #fff; /* Icon turns white */
}

.why-gulshan-section .wgc-box:hover h3 {
    color: #b89146; /* Title turns golden */
}

/* --- Responsive Design --- */

/* Tablet and Smaller Desktops (Max 1024px) */
@media (max-width: 1024px) {
    .why-gulshan-section .wgc-container {
        width: 90%;
    }
    .why-gulshan-section .wgc-main-title {
        font-size: 2.5rem;
    }
    .why-gulshan-section .wgc-grid {
        grid-template-columns: repeat(2, 1fr); /* Still 2 columns */
    }
}

/* Mobile Devices (Max 768px) */
@media (max-width: 768px) {
    .why-gulshan-section {
        padding: 60px 0;
    }
    .why-gulshan-section .wgc-main-title {
        font-size: 2rem;
    }
    .why-gulshan-section .wgc-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }
    .why-gulshan-section .wgc-box-content {
        padding: 5px;
        flex-direction: column; /* Stack icon and text */
        align-items: center;
        text-align: center;
    }
    .why-gulshan-section .wgc-text-wrap {
        text-align: center;
    }
    .why-gulshan-section .wgc-icon-wrap {
        margin-bottom: 15px;
    }
    
    /* Mobile hover motion simpler */
    .why-gulshan-section .wgc-box:hover {
        transform: translateY(-4px); 
    }
}
/* --- why-gulshan-section --- */







/*Project Selection Approach Css*/

/* --- Section Base Styling --- */
.gh-white-estate-section {
    position: relative;
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* Background Watermark Effect */
.gh-white-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.07;
    z-index: 1;
}

/* Container Fix - Width increased for better desktop view */
.gh-container1 {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Content Box Styling */
.gh-content-box {
    flex: 1.2;
    text-align: left;
}

/* Global Heading Style Integration */
.gh-header-match {
    margin-bottom: 25px;
}

.gh-tagline-match {
    color: #b89146;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 8px;
}

.gh-main-title-match {
    font-size: 2.8rem;
    color: #111;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.gh-title-line-match {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b89146, rgba(184,145,70,0.1));
}

/* Paragraph Styling */
.gh-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.gh-text strong {
    color: #000;
}

/* Highlight Box */
.gh-bottom-highlight {
    background: rgba(184, 145, 70, 0.05);
    border-left: 5px solid #b89146;
    padding: 20px;
    margin-top: 30px;
}

.gh-bottom-highlight p {
    font-weight: 600;
    color: #222;
    margin: 0;
}

/* Image Side Styling */
.gh-image-side {
    flex: 0.8;
}

.gh-image-side img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 20px 20px 0px -5px rgba(184, 145, 70, 0.15);
    transition: transform 0.4s ease;
}

/* --- MOBILE RESPONSIVE FIX --- */

@media (max-width: 991px) {
    .gh-white-estate-section {
        padding: 50px 0;
    }

    /* Flex direction ko 'column' karne se HTML ka order follow hoga (Text then Image) */
    .gh-container1 {
        flex-direction: column !important; 
        width: 92%;
        gap: 30px;
        text-align: center;
    }

    .gh-content-box {
        width: 100%;
        text-align: center;
        order: 1; /* Force Text to be first */
    }

    /* Heading Alignment for Mobile */
    .gh-header-match {
        text-align: center !important;
    }

    .gh-tagline-match {
        margin: 0 auto !important;
    }

    .gh-title-line-match {
        margin: 0 auto !important;
        background: linear-gradient(90deg, rgba(184,145,70,0.1), #b89146, rgba(184,145,70,0.1)) !important;
    }

    .gh-main-title-match {
        font-size: 1.8rem;
    }

    .gh-text {
        text-align: center;
    }

    .gh-bottom-highlight {
        border-left: none;
        border-top: 5px solid #b89146;
        text-align: center;
    }

    /* Image Side Alignment */
    .gh-image-side {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        order: 2; /* Force Image to be second */
    }
    
    .gh-image-side img {
        box-shadow: 10px 10px 0px rgba(184, 145, 70, 0.1);
    }
}

/*Project Selection Approach Css*/







/*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: 320px;
            /* 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: 5px 5px;
            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: #9e7a2c;
        }

        /* 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 #9e7a2c */
        .explore-btn {
            text-decoration: none;
            color: #9e7a2c; 
            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 #9e7a2c; }
        .card-siddharth { border-top: 5px solid #9e7a2c; }
        .card-ghaziabad { border-top: 5px solid #9e7a2c; }
        .card-noida-ext { border-top: 5px solid #9e7a2c; }

/*End Locations Covered css  */ 






/* FAQ Section Main Wrapper */

.gh-faq-section {
    position: relative;
    padding: 100px 0;
    background-color: #51A2FF !important; /* Base color black */
    overflow: hidden;
    z-index: 1;
}

/* Real Estate Background Effect (Visible & Fixed) */
.gh-faq-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    opacity: 0.3; /* Adjusted for better visibility */
    filter: grayscale(100%) brightness(0.5); /* Building effect look */
    z-index: -2;
}

/* Gradient Mask - To make the image blend with the black edges */
.gh-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.6) 30%, 
        rgba(0,0,0,0.6) 70%, 
        rgba(0,0,0,1) 100%);
    z-index: -1;
    pointer-events: none;
}

.gh-faq-container {
    width: 85%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Accordion Grid */
.gh-faq-grid {
    margin-top: 50px;
}

.gh-faq-item {
    background: rgba(255, 255, 255, 0.05); /* Semi-transparent Glass effect */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gh-faq-item:hover {
    border-color: #b89146;
    background: rgba(255, 255, 255, 0.08);
}

.gh-faq-question {
    width: 100%;
    padding: 22px 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.gh-faq-question i {
    color: #b89146;
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Answer Slide Animation */
.gh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    padding: 0 30px;
    background: rgba(0, 0, 0, 0.2);
}

.gh-faq-answer p {
    color: #bbb;
    line-height: 1.8;
    font-size: 15px;
    padding-bottom: 1px;
}

/* Active State Styles */
.gh-faq-item.active {
    border-color: #b89146;
    background: rgba(184, 145, 70, 0.1);
}

.gh-faq-item.active .gh-faq-answer {
    max-height: 250px; /* Adjust if answer is very long */
}

.gh-faq-item.active .gh-faq-question {
    color: #b89146;
}

/* Responsive Design */
@media (max-width: 991px) {
    .gh-faq-container {
        width: 92%;
    }
    .gh-faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gh-faq-section {
        padding: 60px 0;
    }
    .gh-main-title-match {
        font-size: 1.8rem;
    }
}

/* FAQ Section Main Wrapper */




/*left side popup Css start*/
/* --- Desktop Styles (Default) --- */
    .colorful-sidebar {
      position: fixed;
      left: 15px;
      top: 85%;
      transform: translateY(-50%);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .n-item {
      text-decoration: none;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .icon-circle {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 24px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      animation: float 3s ease-in-out infinite;
    }

    /* Colors */
    .wa .icon-circle {
      background: linear-gradient(45deg, #25D366, #128C7E);
    }

    .cl .icon-circle {
      background: linear-gradient(45deg, #00C6FF, #0072FF);
    }

    .ct .icon-circle {
      background: linear-gradient(145deg, #aa8b4e, #000000);
    }

    .n-tooltip {
      position: absolute;
      left: 65px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      padding: 5px 12px;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      opacity: 0;
      white-space: nowrap;
      pointer-events: none;
      transition: 0.3s;
    }

    .n-item:hover .n-tooltip {
      opacity: 1;
      transform: translateX(5px);
    }

    /* --- Mobile View Optimization --- */
    @media (max-width: 768px) {
      .colorful-sidebar {
        left: 5px;
        gap: 10px;
      }

      .icon-circle {
        width: 42px;
        height: 42px;
        font-size: 18px;
      }

      .n-tooltip {
        display: none;
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-5px);
      }
    }

    /* --- Modified Form Styles with #c6a46e Gold Theme --- */
    .form-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(5px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }

    .form-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .form-container {
      background: #fff;
      width: 85%;
      max-width: 350px;
      padding: 25px;
      border-radius: 20px;
      position: relative;
      font-family: 'Poppins', sans-serif;
      box-shadow: 0 20px 40px rgba(198, 164, 110, 0.15);
      border: 1px solid rgba(198, 164, 110, 0.1);
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 25px;
      border: none;
      background: none;
      cursor: pointer;
      color: #c6a46e;
      font-weight: 600;
      transition: 0.3s;
    }

    .close-btn:hover {
      color: #d4b885;
      transform: scale(1.1);
    }

    .form-container h3 {
      color: #333;
      margin-bottom: 20px;
      text-align: center;
      font-weight: 600;
      color: #c6a46e;
    }

    .form-control {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 15px;
      border: 2px solid #e8e8e8;
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      box-sizing: border-box;
      transition: all 0.3s ease;
      background: #faf9f7;
    }

    .form-control:focus {
      outline: none;
      border-color: #c6a46e;
      box-shadow: 0 0 0 3px rgba(198, 164, 110, 0.1);
      background: #fff;
    }

    /* Gold Gradient Button */
    .gold-gradient {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #c6a46e 0%, #d4b885 50%, #c6a46e 100%);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 8px 25px rgba(198, 164, 110, 0.3);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .gold-gradient:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(198, 164, 110, 0.4);
      background: linear-gradient(135deg, #d4b885 0%, #c6a46e 50%, #b89a5e 100%);
    }

    .gold-gradient:active {
      transform: translateY(0);
      box-shadow: 0 5px 15px rgba(198, 164, 110, 0.3);
    }

    /* Mobile Form Adjustments */
    @media (max-width: 480px) {
      .form-container {
        width: 90%;
        padding: 20px;
      }

      .form-control {
        padding: 12px;
        font-size: 16px;
      }

      .gold-gradient {
        padding: 16px;
        font-size: 16px;
      }
    }
/*left side popup Css end*/








/*Project Selection Approach Start*/
.gx-text {
    position: relative;
    padding: 12px 15px 12px 35px;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid rgb(184 145 70);
    color: #282828;
    transition: all 0.3s ease;
}

/* icon */
.gx-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #b89146;
    font-size: 13px;
    transition: 0.3s ease;
}

/* hover effect */
.gx-text:hover {
    background: #b89146;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* icon hover */
.gx-text:hover .gx-icon {
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}


/* map height fix */
.gx-image-side iframe {
    height: 100%;
}


/* MOBILE FIX */
@media (max-width: 768px) {

    .gh-container1 {
        flex-direction: column;
    }

    .gh-image-side iframe {
        height: 220px !important;
    }

    .gh-image-side {
        margin-top: 15px;
    }
}
/*Project Selection Approach End*/







/*Amenities Selection*/

.gh-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gh-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgb(184 145 70);
}

/* Subtle image texture */
.gh-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=800&q=60') center/cover no-repeat;
    opacity: 0.05; /* very light */
    z-index: 0;
}

/* Content above texture */
.gh-box * {
    position: relative;
    z-index: 2;
}

/* Gradient Border Effect */
.gh-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(120deg, #b89146, transparent, #b89146);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: 0.4s ease;
}

/* Icon */
.gh-icon {
    font-size: 26px;
    color: #b89146;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* Text */
.gh-box p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #282828;
    transition: 0.3s;
}

/* Hover */
.gh-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #b89146;
}

.gh-box:hover::before {
    opacity: 1;
}

.gh-box:hover::after {
    opacity: 0.08; /* thoda visible on hover */
}

.gh-box:hover .gh-icon {
    transform: scale(1.2);
    color: #282828;
}

.gh-box:hover p {
    color: #b89146;
}

/* Responsive */
@media(max-width: 992px){
    .gh-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 576px){
    .gh-grid{
        grid-template-columns: 1fr;
    }
}

/*Amenities Selection*/





/*Start project section*/

.re-section{
  position:relative;
  padding:90px 0;
  overflow:hidden;
  background:#0f0f0f;
}

/* BACKGROUND LAYERS */
.re-bg{
  position:absolute;
  inset:0;
  background:url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=60') center/cover no-repeat;
  filter:blur(6px) brightness(0.5);
  transform:scale(1.1);
  z-index:0;
}

.re-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(184,145,70,0.35),rgba(0,0,0,0.85));
  z-index:1;
}

.re-glow{
  position:absolute;
  inset:0;
  z-index:2;
}

.re-glow::before,
.re-glow::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(184,145,70,0.25);
  border-radius:50%;
  filter:blur(80px);
  animation:floatGlow 8s infinite ease-in-out;
}

.re-glow::before{ top:10%; left:-100px; }
.re-glow::after{ bottom:10%; right:-120px; animation-delay:3s; }

@keyframes floatGlow{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(30px); }
}

/* ⭐ IMPORTANT: CONTENT ABOVE EVERYTHING */
.re-content{
  position:relative;
  z-index:5;
}

/* TEXT */
.re-title{
  color:#fff;
  font-weight:800;
}

.re-line{
  width:80px;
  height:4px;
  background:#b89146;
  margin:10px auto;
}

.re-subtitle{
  color:#ddd;
}

/* CARD */
.re-card{
  position:relative;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  border-radius:18px;
  padding:30px 25px;
  text-align:center;
  color:#fff;
  border:1px solid rgba(255,255,255,0.2);
  transition:0.4s;
  z-index:6;
}

.re-card:hover{
  transform:translateY(-10px);
  border-color:#b89146;
}

.re-badge{
  position:absolute;
  top:15px;
  right:15px;
  background:#b89146;
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
}

.re-icon{
  font-size:40px;
  width:70px;
  height:70px;
  margin:0 auto 15px;
  border-radius:50%;
  background:linear-gradient(45deg,#b89146,#d4af37);
  display:flex;
  align-items:center;
  justify-content:center;
}

.re-info span{
  color:#d4af37;
  font-weight:600;
}

.re-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 25px;
  border-radius:30px;
  background:linear-gradient(45deg,#b89146,#d4af37);
  color:#fff;
  text-decoration:none;
}

/*End project section*/