/* Global Styles */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */
/* body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: white;
  overflow-x: hidden;
}  */


body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: white;
}
/* Hero Section */
.hero {
      position: relative;
      background-size: cover;
      background-position: center;
      height: 70vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: black;
    }
    .hero h1 {
      font-size: 4rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: white;
    }
    .container {
      max-width: 1200px;
      margin: 20px auto;
      padding: 20px;
    }
    .heading {
      text-align: center;
      margin-bottom: 20px;
    }
    .heading h1 {
      font-size: 2rem;
      margin-bottom: 10px;
    }
    .heading p {
      color: #555;
    }
    /* Card Grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    /* Card */
    .card {
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
    }
    .card-content {
      flex: 1;
    }
    .card-content h3 {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }
    .card-content p {
      color: #555;
      margin-bottom: 5px;
    }
    .card-content .rating {
      font-size: 0.9rem;
      color: #007BFF;
    }
    .card-content .rating i {
      color: gold;
    }
    /* Highlight Section */
    .highlight {
      /* background-image: url("https://samistilegal.in/wp-content/uploads/2022/08/Real-Estate.jpg"); */
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://imgv3.fotor.com/images/slider-image/Real-estate-photo-exsample.jpg');
      background-size: contain;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      margin: 20px 0;
      height: 400px;
      background-repeat: no-repeat;
      background-size: cover;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    }
    .highlight h1
     {
      margin-top: 100px;
      font-weight: bold;
      color: white;
      font-size: 40px;
    }
    .highlight p {
      color: white;
      font-weight: bold;
    }
  .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: red;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  height: 50px;
  margin-top: 20px;
}
.btn:hover {
  background-color: rgb(232, 66, 66);
  transform: scale(1.05);
}
.btn:active {
  background-color: rgb(203, 101, 101);
} 
.faq-container {
  width:100%;
  margin: 50px auto;
  background-color: #1c2733;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faq-container h1 {
  text-align: center;
  margin-bottom: 20px;
  color: gold;
}

.faq-item {
  border-bottom: 1px solid #394a5a;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  flex-grow: 1;
  font-family: 'Times New Roman', Times, serif;
}

.faq-item a:hover {
  text-decoration: underline;
}

.faq-arrow {
  font-size: 20px;
  color: white;
} 