 body {
      background: #f9f9f9;
      font-family: "Poppins", sans-serif;
   
    }

    h1.section-title {
      text-align: center;
      font-weight: 700;
      font-size: 26px;
      margin-bottom: 40px;
      color: #111;
    }

    .property-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
    }

    .property-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
    }

    .property-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .property-image {
      position: relative;
      height: 180px;
      overflow: hidden;
    }

    .property-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .property-card:hover img {
      transform: scale(1.07);
    }

    .price-badge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: #000;
      color: #fff;
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 600;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    }

    .property-details {
      padding: 16px 18px 20px;
    }

    .property-details h2 {
      font-size: 16px;
      font-weight: 700;
      color: #000;
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .property-details p {
      font-size: 13px;
      color: #555;
      margin-bottom: 6px;
      line-height: 1.5;
    }

    .property-info {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      margin-top: 10px;
    }

    .info-box {
      background: #fafafa;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 8px 10px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .info-box strong {
      display: block;
      color: #000;
      font-size: 13px;
      font-weight: 600;
    }

    .info-box span {
      font-size: 12px;
      color: #555;
    }

    .info-box:hover {
      background: #caa94e;
      border-color: #caa94e;
      color: #fff;
      transform: translateY(-2px);
    }

    .info-box:hover strong,
    .info-box:hover span {
      color: #fff;
    }

    /* Buttons Section */
    .property-buttons {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
      gap: 10px;
    }

    .whatsapp-btn,
    .enquiry-btn {
      flex: 1;
      text-align: center;
      padding: 10px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .whatsapp-btn {
      background: #caa94e;
      color: #fff;
      border: none;
    }

    .whatsapp-btn:hover {
      background: #000;
      transform: translateY(-2px);
    }

    .enquiry-btn {
      background: linear-gradient(90deg, #000, #333);
      color: #fff;
      border: none;
    }

    .enquiry-btn:hover {
      background: linear-gradient(90deg, #caa94e, #e6c15e);
      color: #fff;
      transform: translateY(-2px);
    }

    /* Modal */
    .modal-content {
      border-radius: 12px;
      padding: 15px;
      border: none;
    }

    .modal-header {
      border-bottom: none;
    }

    .modal-title {
      font-weight: 600;
      font-size: 18px;
    }

    .modal-body input,
    .modal-body textarea {
      width: 100%;
      margin-bottom: 12px;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
    }

    .submit-btn {
      background: #000;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      background: #caa94e;
      color: #fff;
    }

    @media (max-width: 992px) {
      .property-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media (max-width: 576px) {
      body {

      }
      .property-buttons {
        flex-direction: row;
      }
    }

    b, strong{
    color:black;  
    }

/* Navbar */
.header_wrap {
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  border-bottom: 1px solid #eee;
}


    h1.section-title {
      text-align: center;
      font-weight: 700;
      font-size: 26px;
      margin-bottom: 25px;
      color: #111;
    }

    p {
      color: #555;
      line-height: 1.7;
    }

    /* ===== HEADER ===== */
    header {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
    }

    .navbar {
      padding: 10px 0;
    }

    .navbar-brand img {
      height: 48px;
      width: auto;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      color: #333;
      font-size: 15px;
      margin: 0 10px;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #caa94e;
    }

    /* ===== PROPERTY GRID ===== */
    .property-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .property-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
    }

    .property-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .property-image {
      position: relative;
      height: 180px;
      overflow: hidden;
    }

    .property-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .property-card:hover img {
      transform: scale(1.06);
    }

    .price-badge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: #000;
      color: #fff;
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 600;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    }

    .property-details {
      padding: 16px 18px 20px;
    }

    .property-details h2 {
      font-size: 16px;
      font-weight: 700;
      color: #000;
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .property-details p {
      font-size: 13px;
      color: #555;
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .property-info {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      margin-top: 12px;
    }

    .info-box {
      background: #fafafa;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 8px 10px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .info-box strong {
      display: block;
      color: #000;
      font-size: 13px;
      font-weight: 600;
    }

    .info-box span {
      font-size: 12px;
      color: #555;
    }

    .info-box:hover {
      background: #caa94e;
      border-color: #caa94e;
      color: #fff;
      transform: translateY(-2px);
    }

    .info-box:hover strong,
    .info-box:hover span {
      color: #fff;
    }

    /* ===== BUTTONS ===== */
    .property-buttons {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
      gap: 10px;
    }

    .enquiry-btn {
      flex: 1;
      text-align: center;
      padding: 10px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      background: linear-gradient(90deg, #000, #333);
      color: #fff;
      transition: all 0.3s ease;
    }

    .enquiry-btn:hover {
      background: linear-gradient(90deg, #caa94e, #e6c15e);
      color: #fff;
      transform: translateY(-2px);
    }

    /* ===== MODAL ===== */
    .modal-content {
      border-radius: 12px;
      padding: 15px;
      border: none;
    }

    .modal-body input,
    .modal-body textarea {
      width: 100%;
      margin-bottom: 12px;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
    }

    .submit-btn {
      background: #000;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      background: #caa94e;
      color: #fff;
    }

    @media (max-width: 992px) {
      .navbar-nav {
        text-align: center;
      }
      .navbar-nav .nav-link {
        margin: 8px 0;
      }
      .short-banner {
        height: 200px;
      }
      .short-banner h1 {
        font-size: 26px;
      }
    }

.inner-banner {
  position: relative;
  background: url('https://www.trumptowersprojects.co.in/images/gallery/trump-towers-in-gurgaon.webp') center/cover no-repeat;
  height: 300px; /* perfect size for subpages */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.inner-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.banner-heading {
  position: relative;
  z-index: 2;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .inner-banner {
    height: 220px;
  }
  .banner-heading {
    font-size: 26px;
  }
}
/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 0 25px;
  margin-top: 50px;
  text-align: center;
}

.footer-logo {
  height: 50px;
  width: auto;
    filter: invert(100%);
}

.footer-text {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #caa94e;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  font-size: 13px;
  color: #aaa;
  margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  .footer-links a {
    display: inline-block;
    margin: 6px;
    font-size: 13px;
  }
}
