 
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      overflow-x: hidden;
    }

   .navbar {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    letter-spacing: 0.3px;
  }

  .navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: #003399 !important;
  }

  .navbar-nav .nav-link {
    color: #222 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #003399;
    transition: width 0.3s ease;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 100%;
  }

  .navbar-nav .nav-link:hover {
    color: #003399 !important;
  }

  .btn-primary {
    background-color: #003399;
    border: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
  }

  .btn-primary:hover {
    background-color: #002277;
  }

  .shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  }

  @media (max-width: 991px) {
    .navbar-nav {
      background: #fff;
      padding: 15px;
      border-radius: 10px;
    }
  }

    /* Project Section */
    .project-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      padding: 40px 0;
    }

  .carousel-caption {
  position: absolute;
  top: 42%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 600px;
  text-align: left;
}

.carousel-caption h1,
.carousel-caption p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.price-tag {
  background: rgba(255, 193, 7, 0.9);
  color: #000;
  font-weight: 600;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 4px;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
  .carousel-caption {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }
  .carousel-caption h1 {
    font-size: 1.6rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  .carousel-caption .btn {
    width: 100%;
    max-width: 300px;
    margin: 5px auto;
  }
  .carousel-caption .d-flex {
    flex-direction: column;
    align-items: center;
  }
}


        /* --- About Section --- */
    .about-section {
      position: relative;
      background: url('images/overview.png') center center/cover no-repeat;
      padding: 100px 0;
      color: #fff;
    }

    .about-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
    }

    .about-container {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-card {
      background: #fff;
      color: #333;
      border-radius: 10px;
      padding: 40px 50px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      margin-top: -60px;
      position: relative;
    }

    .about-card h6 {
      color: #555;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .about-card h2 {
      color: #003399;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .about-card p {
      line-height: 1.8;
      font-size: 16px;
      color: #444;
      text-align: justify;
    }

    .section-heading {
      position: absolute;
      top: 40px;
      width: 100%;
      text-align: center;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 1px;
      color: #fff;
      text-transform: uppercase;
    }

    @media (max-width: 992px) {
      .about-card {
        margin: 0 15px;
        padding: 30px 25px;
      }
      .about-card h2 {
        font-size: 26px;
      }
    }



        .pricing-section {
      padding: 80px 0;
      background-color: #f3f5f9;
      text-align: center;
    }

    .pricing-section h2 {
      font-size: 28px;
      font-weight: 600;
      color: #003399;
      margin-bottom: 40px;
      letter-spacing: 0.5px;
    }

    .pricing-table {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
    }

    thead {
      background-color: #003399;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    thead th {
      padding: 15px 10px;
      font-size: 14px;
    }

    tbody tr {
      border-bottom: 1px solid #e0e0e0;
      transition: all 0.3s ease;
    }

    tbody tr:hover {
      background-color: #f8faff;
      transform: scale(1.01);
    }

    tbody td {
      padding: 18px 15px;
      font-size: 15px;
      vertical-align: middle;
      color: #333;
    }

    .btn-interested {
      background-color: #003399;
      color: #fff;
      border: none;
      padding: 8px 18px;
      border-radius: 5px;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.5px;
      transition: 0.3s;
    }

    .btn-interested:hover {
      background-color: #001f66;
    }

    @media (max-width: 768px) {
      table {
        font-size: 14px;
      }
      thead th, tbody td {
        padding: 10px;
      }
    }



      .amenities-section {
      padding: 80px 0;
      text-align: center;
      background-color: #f7f9fc;
    }

    .amenities-section h2 {
      font-size: 30px;
      font-weight: 600;
      color: #003399;
      margin-bottom: 10px;
    }

    .amenities-section p {
      color: #555;
      margin-bottom: 50px;
      font-size: 16px;
    }

    .amenity-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      padding: 30px 20px;
      text-align: center;
      height: 100%;
    }

    .amenity-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
      background-color: rgb(14, 72, 180);
      color: #fff;
    }

    .amenity-icon:hover {
           color: rgb(255, 230, 0);
    }

    .amenity-icon {
      font-size: 40px;
      color: #2b9463;
      margin-bottom: 15px;
    }

    .amenity-card h5 {
      font-size: 18px;
      font-weight: 600;
      color: #222;
      margin-bottom: 8px;
    }

    .amenity-source {
      font-size: 13px;
      color: #888;
    }

    @media (max-width: 768px) {
      .amenity-card {
        margin-bottom: 20px;
      }
    }


    .master-plan-section {
    overflow: hidden;
  }

  .left-panel {
    background-color: #d4c4aa;
    color: #000;
    height: 400px;
  }

  .left-panel h5 {
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.5px;
  }

  .custom-line {
    width: 40px;
    height: 2px;
    background-color: #000;
    border: none;
    margin: 10px 0;
  }

  .btn-plan {
    background: transparent;
    border: none;
    font-size: 17px;
    color: #000;
    text-align: left;
    transition: 0.3s;
  }

  .btn-plan:hover {
    color: #003399;
    text-decoration: underline;
  }

  .blur-bg {
    background: url('images/master.jpg') center/cover no-repeat;
    height: 400px;
    width: 100%;
    filter: blur(2px);
    transition: background-image 0.4s ease, filter 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .overlay-text {
    color: #fff;
    font-size: 20px;
    background: rgba(0,0,0,0.4);
    padding: 10px 20px;
    border-radius: 8px;
  }


   .location-section {
    background-color: #f9f9f9;
  }

  .location-img {
    height: 100%;
    object-fit: cover;
  }

  .location-content h2 {
    color: #003399;
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.5px;
  }

  .location-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
  }

  @media (max-width: 992px) {
    .location-content {
      text-align: center;
    }
  }



  .gallery-section {
    background-color: #f7f9fc;
  }

  .section-title {
    color: #003399;
    font-size: 28px;
    font-weight: 600;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(85%);
  }

  @media (max-width: 768px) {
    .gallery-item img {
      height: 200px;
    }
  }


    .about-developer {
   background-image: url('images/availability-bg.png') ;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
  }

  .about-developer h6 {
    color: #000;
    letter-spacing: 1px;
    font-size: 14px;
  }

  .about-developer h2 {
    color: #003399;
    font-size: 26px;
    font-weight: 600;
  }

  .developer-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
  }

  .contact-box {
    border: 1px solid #e1e1e1;
  }

  .contact-box h4 {
    color: #003399;
    font-weight: 600;
  }

  .form-control, .form-select {
    border-radius: 6px;
    font-size: 15px;
  }

  .btn-primary {
    background-color: #003399;
    border: none;
    font-size: 15px;
    letter-spacing: 1px;
  }

  .btn-primary:hover {
    background-color: #002277;
  }

  @media (max-width: 768px) {
    .about-developer h2 {
      text-align: center;
      font-size: 22px;
    }
    .contact-box {
      margin-top: 30px;
    }
  }


  .footer-section {
    background-color: #f7f7f7;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #333;
    line-height: 1.7;
    border-top: 1px solid #ddd;
  }

  .footer-section .disclaimer-text {
    font-size: 12.5px;
    color: #555;
    text-align: justify;
  }

  .footer-section .footer-link {
    color: #003399;
    text-decoration: none;
    font-weight: 500;
    margin: 0 3px;
  }

  .footer-section .footer-link:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .footer-section {
      font-size: 12px;
    }
    .footer-section .disclaimer-text {
      text-align: left;
    }
  }