    .navbar-nav .nav-link {
      font-size: 1.5rem;
      margin-right: 10px;
      position: relative;
      color: #000;
    }

    .navbar-nav .nav-link.active-link,
    .navbar-nav .nav-link:focus {
      color: #ea6753 !important;
      text-decoration: underline;
    }

    .nav-link.text-danger {
      color: #dc3545 !important;
    }

    .nav-link.text-danger.active-link {
      color: #ea6753 !important;
    }

    /* Custom Brochure dropdown style */
    .custom-dropdown {
      background-color: #004d80;
      border-radius: 10px;
      min-width: 220px;
      padding: 10px;
    }

    .custom-dropdown .dropdown-item {
      background-color: transparent;
      color: #ffffff;
      border-radius: 5px;
      padding: 8px 12px;
      transition: background-color 0.3s ease;
    }

    .custom-dropdown .dropdown-item:hover {
      background-color: rgba(255, 255, 255, 0.15);
      color: #fff;
    }

    .dropdown-menu {
      top: 100%;
    }

    .bg-section {
      position: relative;
      background-image: url('images/Top.jpeg');
      background-size: cover;
      background-position: center;
      height: 500px;
      overflow: hidden;
    }

    /*.bg-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100px;
      width: 100%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0));
      z-index: 1;
      pointer-events: none;
    }*/


    .contact-form-box {
      position: absolute;
      top: 50%;
      right: 5%;
      transform: translateY(-50%);
      background-color: #004d80;
      color: #fff;
      padding: 25px;
      border-radius: 12px;
      width: 320px;
      opacity: 0.9;
    }

    .contact-form-box .form-heading {
      border: 1px solid white;
      border-radius: 8px;
      text-align: center;
      padding: 10px;
      margin-bottom: 20px;
      font-size: 1rem;
    }

    .contact-form-box input,
    .contact-form-box textarea {
      background-color: transparent;
      border: none;
      border-bottom: 1px solid white;
      color: white;
      width: 100%;
      margin-bottom: 15px;
      padding: 6px 0;
      outline: none;
    }

    .contact-form-box input::placeholder,
    .contact-form-box textarea::placeholder {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-form-box .submit-btn {
      background-color: white;
      color: #004d80;
      font-weight: bold;
      padding: 10px;
      width: 100%;
      border: none;
      border-radius: 8px;
    }

    .contact-form-box .disclaimer {
      font-size: 0.7rem;
      color: white;
      margin-top: 10px;
      line-height: 1.2;
    }

    .card-section {
      display: flex;
      flex-wrap: wrap;
    }

    .plot-card {
      flex: 1 1 33.3333%;
      height: 400px;
      color: white;
      position: relative;
      background-size: cover;
      background-position: center;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .plot-title {
      font-size: 24px;
      font-weight: bold;
    }

    .plot-desc {
      font-size: 16px;
      margin-top: 10px;
      max-width: 80%;
    }

    @media (max-width: 768px) {
      .plot-card {
        flex: 1 1 100%;
      }
    }

    .card-img-top {
      height: 320px;
      object-fit: cover;
    }
    .price {
      font-size: 1.5rem;
      font-weight: 600;
    }
    .btn-interested {
      background-color: #e74c3c;
      color: white;
    }
    .btn-view {
      background-color: #1f4e79;
      color: white;
    }

    .card-title.sohna_greens {
      margin-bottom: 32px;
    }
    .card-title.yugen_infra {
      margin-bottom: 18px;
    }







    .about-section {
      padding: 50px 0;
    }
    .about-text {
      text-align: left; /* Align text to the left */
      padding-top: 0;   /* Optional: Remove any top padding */
      margin-top: 0;    /* Optional: Remove any top margin */
    }
    .about-text h1{
      font-size: 70px;
    }

    .about-text p{
      font-size: 20px;
    }

    .row.align-items-start {
      align-items: flex-start; /* Align items to the top of the row */
    }

    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 5px;
    }


    .testimonial-card {
      /*width: 100%;*/
      background-color: #ccc;
      height: 250px;
      /*display: flex;*/
      align-items: center;
      justify-content: center;
    }

    .carousel-inner {
      display: flex;
    }

    .carousel-item {
      flex: 0 0 100%;
      transition: transform 0.5s ease;
    }



  .testimonial-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap; /* Prevent wrapping on large screens */
  }

  .testimonial_box {
    width: 25%; /* 4 cards per slide on large screens */
  }

  /* On smaller screens, show only one card per slide */
  @media (max-width: 767.98px) {
    .testimonial-group {
      flex-wrap: nowrap;
    }

    .testimonial_box {
      width: 100%;  /* Full width */
      flex: 0 0 100%; /* Fix width */
      display: none; /* Hide all cards by default */
    }

    /* Show only the first testimonial in each carousel item */
    .carousel-item.active .testimonial_box:first-child {
      display: block;
    }
  }


    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }

    .explore-btn {
      border: 2px solid #00467f;
      color: #00467f;
      background: transparent;
      padding: 8px 20px;
      text-decoration: none;
      display: inline-block;
      font-weight: 500;
      margin-top: 20px;
    }

    .explore-btn:hover {
      background-color: #00467f;
      color: white;
    }


    

    .footer {
        background-color: #00467f; /* Blue background */
        color: white;
        padding: 20px 0;
    }
    .footer a {
        color: white;
    }
    .footer .social-icons a {
        margin-right: 15px;
        font-size: 1.5rem;
    }


  .text-success {
    color: green;
  }
  .text-danger {
    color: red;
  }
