  :root {
            --navy: #0b1d3a;
            --gold: #c9a24d;
            --white: #ffffff;
        }

        body {
            font-family: 'Inter', sans-serif;
        }

        /* ================= HEADER ================= */
        .navbar {
            transition: all 0.4s ease;
            padding: 1px 0;
        }

        .navbar.scrolled {
            background: #011845 !important;
            box-shadow: 0 6px 30px rgba(0,0,0,0.15);
            padding: 8px 0;
        }

        .navbar-brand img {
            max-height: 80px;
            width: auto;
        }

        .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gold);
            left: 0;
            bottom: -6px;
            transition: 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

.cta-btn {
  border-radius: 30px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.25s ease;
  border: none;
}
.btn-call {
  background: #c9a24d;
  color: #0b1d3a;
}

.btn-call i {
  color: #0b1d3a;
}

.btn-call:hover {
  background: #e0b85f !important;
  color: #000 !important;
}

.btn-call:hover i {
  color: #000 !important;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn-whatsapp i {
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #1ebe5d !important;
  color: #ffffff !important;
}

.btn-whatsapp:hover i {
  color: #ffffff !important;
}

/* REMOVE BOOTSTRAP FOCUS */
.navbar .btn:focus {
  box-shadow: none !important;
}

        @media (max-width: 991px) {
            .cta-btn {
                margin-top: 10px;
                width: 100%;
            }
        }
		
.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(rgba(11, 29, 58, 0.9), rgba(11, 29, 58, 0.9)),
        url('img/banner.webp');
    background-size: cover;
    background-position: center;
    padding-top: 120px;
	padding-bottom: 35px;
}

.lead {
    font-size: 1.1rem!important;
}

.premium-projects {
  background: #f4f6f9;
}

.section-title {
  font-weight: 700;
  font-size: 2.3rem;
}

.section-subtitle {
  max-width: 720px;
  margin: auto;
  color: #6c757d;
}

/* Card */
.project-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: all .35s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Image */
.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

/* Tag */
.project-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0b1d3a;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
}

.project-tag.gold {
  background: #c9a24d;
  color: #000;
}

/* Body */
.project-body {
  padding: 22px;
}

.project-body h5 {
  font-weight: 700;
}

.location {
  font-size: 14px;
  color: #6c757d;
}

/* Meta */
.meta {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
}

.meta span {
  font-size: 12px;
  color: #6c757d;
}

.meta strong {
  display: block;
}

/* Highlight */
.highlight {
  font-size: 14px;
  font-weight: 600;
  color: #198754;
}

/* Footer CTA */
.project-footer {
  padding: 18px 22px 24px;
}

.btn-invest {
  width: 100%;
  background: linear-gradient(135deg, #c9a24d, #e6c878);
  border-radius: 30px;
  font-weight: 600;
  padding: 12px;
}

.btn-invest:hover {
  background: linear-gradient(135deg, #b8903f, #d8b45c);
  transform: translateY(-2px);
}

/* ===== WHY CHOOSE US ===== */

.why-choose {
  background: linear-gradient(180deg, #ffffff, #f5f7fa);
}

.why-choose .section-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.why-choose .section-subtitle {
  max-width: 760px;
  margin: auto;
  color: #6c757d;
}

/* Card */
.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.15);
}

/* Icon */
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b1d3a, #132f5e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a24d;
  font-size: 28px;
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ===== SERVICES ADVISORY ===== */

.services-advisory {
  background: #f6f8fb;
}

.services-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.services-intro {
  color: #555;
  max-width: 650px;
}

/* Left Index */
.service-index {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-index li {
  padding: 16px 20px;
  margin-bottom: 10px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.service-index li span {
  color: #c9a24d;
  margin-right: 10px;
}

.service-index li.active,
.service-index li:hover {
  border-color: #0b1d3a;
  background: #eef2f8;
}

/* Right Content */
.service-content {
  display: none;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-content.active {
  display: block;
}

.service-content h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.service-content ul {
  margin-top: 10px;
  padding-left: 18px;
}

/* Mobile UX */
@media (max-width: 991px) {
  .service-index {
    display: flex;
    overflow-x: auto;
    gap: 10px;
  }

  .service-index li {
    min-width: 240px;
    margin-bottom: 0;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .service-index li.active {
    border-bottom-color: #0b1d3a;
  }
}

/* Services CTA (Subtle & Premium) */
.services-cta {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.services-cta-text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.btn-invest-outline {
  border: 2px solid #c9a24d;
  color: #000;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-invest-outline:hover {
  background: #c9a24d;
  color: #000;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .services-cta {
    text-align: center;
  }
}


/* ===== WHY NOIDA ===== */

.why-noida {
  background: #ffffff;
}

.noida-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.noida-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Right Highlights */
.noida-highlights {
  background: #f6f8fb;
  padding: 32px;
  border-radius: 18px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e6ec;
}

.highlight-item:last-child {
  border-bottom: none;
}

.highlight-item i {
  font-size: 22px;
  color: #c9a24d;
  min-width: 24px;
}

.highlight-item h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Mobile polish */
@media (max-width: 768px) {
  .noida-title {
    font-size: 2rem;
  }

  .noida-highlights {
    padding: 24px;
  }
}


/* ===== DEVELOPERS WITH LOGOS ===== */

.developers-section {
  background: #f6f8fb;
}

.developers-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.developers-section .section-subtitle {
  max-width: 720px;
  color: #6c757d;
}

/* Developer Item */
.developer-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 13px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.developer-item:hover {
  transform: translateY(-6px);
}

/* Logo */
.developer-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Text */
.developer-info h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.developer-info p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Mobile polish */
@media (max-width: 576px) {
  .developer-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .developer-item img {
    width: 60px;
    height: 60px;
  }
}


/* ===== MODERN ABOUT SECTION ===== */

.about-modern {
  background: #ffffff;
}

/* Image Block */
.about-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: 566px;
  object-fit: cover;
}

/* Overlay */
.about-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 29, 58, 0.85);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* Content */
.about-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Points */
.about-points {
  margin-top: 24px;
}

.about-points div {
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.about-points div::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #c9a24d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-image img {
    height: 300px;
  }

  .about-title {
    font-size: 2rem;
  }
}


/* ===== CONTACT SECTION ===== */

.contact-section {
  background: linear-gradient(180deg, #f6f8fb, #ffffff);
}

/* Left */
.contact-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 14px;
}

/* Contact Info */
.contact-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-info i {
  color: #c9a24d;
}

/* Form Box */
.contact-form-box {
  background: #ffffff;
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.contact-form-box h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

/* Inputs */
.contact-form-box .form-control,
.contact-form-box .form-select {
  padding: 12px 14px;
}

/* Note */
.form-note {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-form-box {
    padding: 26px;
  }
}

/* ===== FAQ SECTION ===== */

.faq-section {
  background: #ffffff;
}

.faq-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.faq-section .section-subtitle {
  max-width: 720px;
  margin: auto;
  color: #6c757d;
}

/* Wrapper */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Item */
.faq-item {
  background: #f6f8fb;
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #eef2f8;
}

.faq-question {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  padding-right: 30px;
}

/* Plus / Minus */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #c9a24d;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

/* Answer */
.faq-answer {
  display: none;
  margin-top: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}


/* ===== FOOTER ===== */

.footer-section {
  background: #0b1d3a;
  color: #dbe3f0;
  padding: 60px 0 30px;
}

.footer-brand img {
  max-width: 160px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: #cfd8e6;
  line-height: 1.6;
}

/* Titles */
.footer-title {
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a {
  color: #cfd8e6;
  text-decoration: none;
}

.footer-links a:hover {
  color: #c9a24d;
}

/* Contact */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  color: #c9a24d;
}

.footer-contact a {
  color: #cfd8e6;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  margin-bottom: 6px;
  color: #cfd8e6;
}

.footer-disclaimer {
  font-size: 12px;
  color: #9fb0c9;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-section {
    padding: 50px 0 25px;
  }

  .footer-brand img {
    max-width: 140px;
  }
}

/* ===== QUICK CONTACT BAR (MOBILE ONLY) ===== */

.quick-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: -1px;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.qc-item {
  flex: 1;
  padding: 10px 6px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.qc-item i {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

/* Colors (matched to screenshot & brand) */
.qc-email {
  background: #0b1d3a;
}

.qc-whatsapp {
  background: #25d366;
}

.qc-call {
  background: #1e2f52;
}

/* Safe area (iPhone notch fix) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .quick-contact-bar {
    padding-bottom: env(safe-area-inset-bottom);
  }
}


/* ===== CALL TO ACTION SECTION ===== */

.cta-section {
  background: linear-gradient(120deg, #000000, #1a1a1a, #0b1d3a);
  padding: 70px 0;
  color: #ffffff;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-title span {
  color: #c9a24d;
}

.cta-text {
  font-size: 16px;
  color: #d1d1d1;
  max-width: 720px;
}

/* Buttons */
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: #c9a24d;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: #c9a24d;
  transform: translateY(-2px);
}

.btn-cta-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background: #ffffff;
  color: #000000;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}
