body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-color);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
}

/* Header/Navigation Styles */
.navbar {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.logo-img {
  max-height: 150px;
  width: auto;
}

@media (max-width: 991.98px) {
  .logo-img {
    max-height: 150px;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-box {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 14px;
  margin-right: 8px;
}

.logo-text {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 18px;
}

.post-property-btn {
  position: relative;
  padding: 1px 1px 1px 1px;
  margin-left: 17px;
  background: white;
  color: #212529;
}
.post-property-btn:hover {
  background: #0257c7;
  color: white;
}
.free-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ff9800;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

.user-btn {
  display: flex;
  align-items: center;
  padding: 0;
  margin-left: 17px;
}

.user-text {
  margin-left: 17px;
  text-align: left;
  line-height: 1.2;
  text-align: center;
}

/* Updated Footer Styles */
.footer-logo .logo-text {
  color: white;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white !important;
  text-decoration: none;
}

.contact-info li {
  margin-bottom: 15px;
}

/* Responsive Styles for New Sections */
@media (max-width: 991.98px) {
  .project-features,
  .property-features {
    flex-direction: column;
  }

  .project-features span,
  .property-features span {
    margin-bottom: 5px;
  }

  .service-card-new {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .service-card-new,
  .agent-card {
    margin-bottom: 20px;
  }

  .property-tag,
  .project-badge {
    font-size: 10px;
    padding: 3px 10px;
  }

  .service-card-new {
    padding: 25px 20px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.9rem;
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .service-card-new {
    padding: 20px 15px;
  }

  .service-icon-new i {
    font-size: 2rem;
  }
}

.gradient-heading {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, red, black);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-top: 10px;
}


/* cities buttons */
.bcitiesbuttons {
      background-color: #f9f9f9;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* .heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 600;
      margin: 40px 0 30px;
    } */

    .city-btn {
      border: 1px solid #ddd;
      border-radius: 999px;
      padding: 8px 20px;
      margin: 8px;
      background-color: white;
      color: #333;
      cursor: pointer;
      transition: 0.3s ease;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .city-btn:hover {
      background-color: #277ec2;
      color: white;
    }

    
    .cities-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0 20px;
    }

    .search-box {
      max-width: 400px;
      margin: 30px auto 50px;
    }

    .search-box input {
      border-radius: 50px;
      padding-left: 40px;
      border-color: #277ec2;
    }

    .search-box .input-group-text {
      border-radius: 50px 0 0 50px;
      background-color: white;
      border-right: 0;
    }

    @media (max-width: 576px) {
      .city-btn {
        padding: 6px 16px;
        font-size: 14px;
      }
    }
  /* cards */

 .feature-cards {
      background-color: #ffffff;
    }

    .feature-card {
      border: none;
      border-radius: 10px;
      color: rgb(255, 255, 255);
      height: 100%;
      background-position: right bottom;
      background-repeat: no-repeat;
      background-size: 100px;
      transition: transform 0.3s;
      position: relative;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .feature-card .card-body {
      padding: 40px;
    }

    .feature-card .card-title {
      font-weight: 600;
      margin-bottom: 20px;
    }

    .blue-card {
      background-color: #023e9a;
      background-image: url("cards/1.png");
    }

    .pink-card {
      background-color: #b5486d;
      background-image: url("cards/222.png");
    }

    .card-logo {
      width: 50px;
      height: auto;
    }

    @media (max-width: 768px) {
      .feature-card .card-body {
        padding: 25px;
      }

      .card-logo {
        width: 40px;
      }
    }


    /* agents cards */
     .agent-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 15px;
      height: 100%;
      transition: 0.3s ease;
      background-color: #fff;
    }

    .agent-card:hover {
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .agent-card h6 {
      font-weight: 600;
    }

    .location {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 10px;
    }

    .properties {
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      justify-content: space-between;
      margin: 10px 0;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .tag {
      background-color: #e6ebfc;
      border-radius: 20px;
      padding: 4px 10px;
      font-size: 0.75rem;
    }

    .carousel-inner .carousel-item {
      padding: 30px 10px;
    }

    /* Q&A */
   .faq-title {
      text-align: center;
      margin-bottom: 40px;
      font-weight: 600;
    }

    .accordion-button::after {
      background-image: none;
      content: '\25BC';
      font-size: 1rem;
      transform: rotate(0deg);
      transition: transform 0.2s ease-in-out;
    }

    .accordion-button:not(.collapsed)::after {
      transform: rotate(180deg);
    }

    .accordion-button {
      background-color: #fff;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.05);
      border-left: 5px solid #f26522; /* default orange */
      font-weight: 500;
      font-size: 1rem;
    }

    .accordion-button.collapsed {
      border-left: 5px solid #007bff; /* blue */
    }

    .accordion-button span.q {
      color: red;
      font-weight: bold;
      margin-right: 5px;
    }

    .accordion-item {
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      border: none;
    }

    .accordion-body {
      background: #fff;
      color: #333;
      font-size: 0.95rem;
    }




    /*  search resul bhopal code*/
    .card img {
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.card-title {
    font-size: 1rem;
}

.badge {
    font-size: 0.75rem;
    padding: 0.35em 0.6em;
}
