: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: var(--text-light);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
        }
        
        
        

        .container {
    width: 95%;  /* 95% width */
    max-width: 1400px;  /* 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: var(--dark-section);
            padding: 40px 0;
        }
        
        .section-medium {
            background-color: var(--medium-dark);
            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: var(--primary-color);
            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 rgba(255, 255, 255, 0.05);
            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: var(--primary-color);
            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 var(--primary-color);
        }
        
        .two-col-box h4 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .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: var(--primary-color);
            font-weight: bold;
        }
        
        /* Project Cards */
        .project-card {
            background-color: var(--medium-dark);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(201, 169, 110, 0.3);
        }
        
        .project-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        
        .project-status {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .status-completed {
            background-color: rgba(76, 175, 80, 0.2);
            color: #4caf50;
        }
        
        .status-under-construction {
            background-color: rgba(33, 150, 243, 0.2);
            color: #2196f3;
        }
        
        .status-under-development {
            background-color: rgba(255, 152, 0, 0.2);
            color: #ff9800;
        }
        
        /* Location Box with Icon */
        .location-box {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .location-box:hover {
            transform: translateY(-10px);
            border-color: rgba(201, 169, 110, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .location-box .location-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: var(--primary-color);
            font-size: 2rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 40px 0;
            background-color: var(--dark-section);
        }
        
        .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 var(--primary-color);
        }
        
        .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: var(--primary-color);
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .faq-toggle.active {
            transform: rotate(45deg);
        }
        
        /* Footer */
        .footer {
            background-color: #080808;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            color: var(--primary-color);
            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: var(--primary-color);
        }
        
        .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: var(--primary-color);
            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: var(--primary-color);
            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: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-outline-gold:hover {
            background-color: var(--primary-color);
            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: 10px 0;
            }
            
            .two-col-box {
                padding: 30px 20px;
            }
            
            .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: #c6a46e;
        --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: #d4af37; }

    .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: #d4af37; 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, #d4af37, #d4af37);
        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: #000; /* Pure Black */
      border: 1.5px solid #D4AF37; /* 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: #000; /* Black Header */
      border-bottom: 1px solid #333;
      padding: 15px;
      border-radius: 12px 12px 0 0;
      cursor: pointer;
    }

    .top_form h2 {
      color: #000; /* 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: #080808;
    }

    /* Input Field Styling */
    .form-box .form-control {
      background: #111;
      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: #D4AF37;
      box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
      background: #111;
      color: #fff;
    }

    /* Gold Button */
    .form-box .enquire-btn {
      background: #D4AF37;
      color: #000;
      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: #fff;
      color: #000 !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-color: #111; /* Pitch Black Background */
    border: 2px solid #D4AF37; /* Gold Border */
    border-radius: 15px;
    overflow: hidden;
  }

  #myModal-8 .top_modal_content {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
  }

  #myModal-8 .projectName_heading {
    color: #000;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 5px;
  }

  #myModal-8 .location-p {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
  }

  #myModal-8 .typology_heading {
    color: #000;
    font-size: 16px;
    margin-top: 10px;
  }

  /* Form Styling */
  #myModal-8 .form-control {
    background: #222;
    border: 1px solid #444;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
    padding: 12px;
  }

  #myModal-8 .form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    background: #222;
    color: #fff;
  }

  /* Gold Submit Button */
  #myModal-8 .enquire-btn {
    background: #D4AF37;
    color: #000;
    font-weight: 700;
    width: 100%;
    padding: 12px;
    border: none;
    text-transform: uppercase;
    transition: 0.3s;
  }

  #myModal-8 .enquire-btn:hover {
    background: #fff;
    color: #000;
  }

  /* Close Button Fix */
  #myModal-8 .close-container {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 999;
  }

  #myModal-8 .close-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
  }
 /*popup form css start*/  
 
 
 
/*Price List Start*/ 

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.price-section {
  background: #000;
  color: #fff;
  padding: 30px 15px;
  text-align: center; /* MAIN CENTER */
}

.section-title {
  font-size: 30px;
  color: #d4af37;
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  color: #ccc;
  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, #111, #000);
  border: 1px solid #d4af37;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center; /* CARD TEXT CENTER */
  transition: all 0.4s ease;
}

.price-card h3 {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 15px;
}

.size,
.price {
  text-align: center;
}

.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(135deg, #d4af37, #b8962e);
  color: #000;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.enquire-btn:hover {
  background: #fff;
}

/* 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;
  }
}

/*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 #c9a24d; /* Golden border */
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(201, 162, 77, 0.3); /* 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 rgba(201, 162, 77, 0.5);
    border-color: #d4af37;
}

.amenity-box:hover i {
    transform: rotate(10deg);
    color: #d4af37;
}

/* 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*/
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

        /* Background blur and center alignment */
        .popup-overlay {
            display: none; 
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            justify-content: center;
            align-items: center; /* Desktop aur Mobile dono pe center rahega */
            z-index: 9999;
            padding: 20px; /* Sides se gap maintain karne ke liye */
        }

        .popup-box {
            background: #111;
            width: 100%;
            max-width: 400px;
            padding: 35px 25px;
            border-radius: 20px;
            border: 1px solid #d4af37;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .close-btn {
            position: absolute;
            right: 15px;
            top: 15px;
            color: #d4af37;
            font-size: 24px;
            cursor: pointer;
            line-height: 1;
        }

        .popup-title { color: #d4af37; text-align: center; font-size: 22px; margin-bottom: 5px; }
        .popup-sub { color: #aaa; text-align: center; margin-bottom: 25px; font-size: 13px; }

        /* Inputs */
        .input-group { position: relative; margin-bottom: 20px; }

        .input-group input {
            width: 100%;
            padding: 15px;
            background: transparent;
            border: 1px solid #444;
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            outline: none;
            transition: 0.3s;
        }

        .input-group input:focus { border-color: #d4af37; }

        .input-group label {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            background: #111;
            padding: 0 5px;
            pointer-events: none;
            transition: 0.3s;
        }

        .input-group input:focus + label,
        .input-group input:valid + label {
            top: 0;
            font-size: 12px;
            color: #d4af37;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #d4af37, #f5e27a);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            color: #000;
        }

        /* Trigger Button */
        .open-btn {
            margin: 50px;
            padding: 12px 25px;
            background: #d4af37;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
        }
/*popup contact form css end*/
  