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

a {
  text-decoration: none;
}

header {
  background-color: #ffffff;
}

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

/* Logo styling */
.logo-imgg {
  width: 221px;
  height: 100px;
}

/* Medium screens and below */
@media (max-width: 991.98px) {
  .logo-imgg {
    max-height: 80px;
    height: auto;
  }

  .user-login {
    text-align: center;
    margin-top: 10px;
  }

  .user-login .text-muted {
    font-size: 14px;
  }
}

/* Small screens */
@media (max-width: 576px) {
  /* .logo-imgg {
    max-height: 60px;
  } */

  .user-login {
    flex-direction: column;
    align-items: flex-start;
  }

  .user-login .btn {
    width: auto; /* Keeps button size to content */
  }
}


/* form section */
.mainbox {
  background: linear-gradient(to bottom, #d6e5fb, #aacbf1);
  min-height: 70vh;

}

.section-wrapper {
  padding: 40px 15px;
}

.left-box,
.right-box {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  height: 100%;
}

.left-box {
  background: transparent;
  color: #333;
  box-shadow: none;
  padding: 0 20px;
}

.left-box h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.left-box h2 span {
  color: #0d6efd;
}

.left-box ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.left-box ul li {
  background-color: #e5f0fc;
  padding: 10px 15px;
  border-radius: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.left-box ul li::before {
  content: "\27A4";
  color: #0d6efd;
  margin-right: 10px;
  font-size: 14px;
}

.right-box h4 {
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #c0392b;
  display: inline-block;
  padding-bottom: 5px;
}

.btn-option {
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 6px 18px;
  margin: 5px 10px 5px 0;
  background: white;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
}

.btn-option:hover {
  background-color: rgb(252, 248, 248);
  border-color: rgb(0, 0, 0)
}

.btn-orange {
  background-color: #ea5c1f;

  color: rgb(255, 255, 255);
  padding: 10px 30px;
  border-radius: 30px;
  width: 100%;
  font-weight: bold;
}

.btn-orange:hover {
  border-color: #ea5c1f;
}

.input-group .form-control {
  border-radius: 0 0.375rem 0.375rem 0;
}

@media (max-width: 767.98px) {

  .left-box,
  .right-box {
    padding: 20px 15px;
  }
}


/* How its work ? section */

.how {
  background-color: #f5f5f5;

}

.how-it-works {
  padding: 60px 66px;
  text-align: center;
}

.how-it-works h2 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 15px;
}

.how-it-works p.lead {
  font-size: 18px;
  color: #343232;
  max-width: 850px;
  margin: 0 auto 40px;
  font-weight: 200;
}

.step-card {
  background-color: #ffffff;
  border-radius: 1px 45px 1px 45px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  height: 100%;
}

.step-label {
  position: absolute;
  top: -12px;
  left: 15px;
  background-color: #b5cdee;
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 1px 20px 0 0;
  font-size: 14px;
  font-weight: 500;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #444;
}

.step-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.step-text {
  font-size: 15px;
  color: #555;
}

.step-text strong {
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .step-card {
    margin-bottom: 20px;
  }
}

/* why esuvidha reality section */

.hero-banner {
  background:url("../image/why_choose_bg.jpg") no-repeat center center;
  background-size: cover;
  height: 300px;
  position: relative;
}

.floating-container {
  background-color: white;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: -120px;
  /* key part: move it up to overlap */
  z-index: 10;
  position: relative;
}



.choose-section {
  background-color: #fff;
  border-radius: 20px;
  padding: 71px 14px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.choose-section h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 13px;
}

.choose-section h2 span {
  color: #1e56d3;
}

.choose-section p.lead {
  text-align: center;
  max-width: 621px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #2a2929;
  font-weight: 400;
}

.feature-box {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background-color: #f9f9f9;
}

.feature-box img {
  width: 137px;
    height: 131px;
}

.feature-content h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

@media (max-width: 767px) {
  .feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-box img {
    margin-bottom: 10px;
  }
}


/* benifites section */

section {
  background-color: #ffffffdf;
  
  padding: 71px 14px;
 
  margin: 70px auto;
  box-shadow: 0  4px 15px rgb(0 0 0 / 56%);
}

section h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 13px;
}

.section h2 span {
  color: #1e56d3;
}

.section p.lead {
  text-align: center;
  max-width: 621px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #2a2929;
  font-weight: 400;
}
.content h5 {
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 8px;
}
.content p{
  font-weight: 200;
}
.tipslogo{
  border-radius: 70px;
  width: 70px;
  height: 70px;
}


/* Recently added properties  */

.Rpp {
      background: #f9f9f9;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .carousel-wrapper {
      max-width: 1200px;
      margin: 80px auto;
      overflow: hidden;
      padding: 0 20px;
    }

    .carousel-title {
      text-align: center;
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 40px;
      color: #1d1d1f;
    }

    .carousel-track {
      display: flex;
      gap: 20px;
      transition: transform 0.5s ease-in-out;
    }

    .card-property {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 16px;
      height: 110px;
      min-width: 350px;
    }

    .card-property img {
      width: 70px;
      height: 70px;
      border-radius: 4px;
      object-fit: cover;
      margin-right: 16px;
    }

    .card-property strong {
      font-weight: 600;
      color: #1d1d1f;
    }

    .carousel-indicators {
      text-align: center;
      margin-top: 20px;
    }

    .carousel-indicators span {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
    }

    .carousel-indicators .active {
      background-color: #e74c3c;
    }

    /* Q&A */
    .accordion {
  background-color: #eeeeeec0;
  color: #000000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc; 
}




/* Updated Footer Styles */
.custom-footer a {
  text-decoration: none;
}

.custom-footer-logo img {
  max-width: 100%;
  height: auto;
}

.custom-footer-social a {
  font-size: 20px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.custom-footer-social a:hover {
  color: #0d6efd;
}

.custom-footer ul li a {
  display: inline-block;
  margin-bottom: 8px;
  color: #bfbfbf;
  transition: color 0.3s ease;
}

.custom-footer ul li a:hover {
  color: #ffffff;
}

.custom-footer h5,
.custom-footer h6 {
  font-weight: bold;
}

.custom-footer p,
.custom-footer span {
  font-size: 15px;
  line-height: 1.7;
}

.custom-footer .contact-info i {
  font-size: 16px;
  line-height: 1.5;
}

.custom-footer .contact-info span {
  display: inline-block;
}

.custom-footer .img-fluid {
  max-height: 77px;
  height: 77px;
}

.custom-footer hr {
  border-top: 1px solid #6c757d;
  margin-top: 10px;
  margin-bottom: 10px;
}

.custom-footer .payment-methods img {
  width: 30px;
  height: auto;
  margin-left: 6px;
  margin-right: 6px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .custom-footer .payment-methods {
    text-align: center;
    margin-top: 10px;
  }

  /* .custom-footer .img-fluid {
    max-width: 100px;
  } */
}

@media (max-width: 576px) {
  .custom-footer .text-md-end,
  .custom-footer .text-md-start {
    text-align: center !important;
  }

  .custom-footer .d-flex {
    flex-direction: column !important;
    align-items: center;
  }

  .custom-footer-logo img {
    max-width: 180px;
  }

  .custom-footer .payment-methods img {
    width: 26px;
  }
}


.btn-option {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px;
    background-color: #f0f0f0;
    border: 2px solid #981e1e;
    border-radius: 5px;
    cursor: pointer;
}

.btn-check:checked + .btn-option {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}