   /* styles.css */
   body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.property-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.property-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.filters {
  margin-bottom: 15px;
}

.filter-btn {
  padding: 8px 16px;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  color: #333;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: red;
  color: #fff;
  border-color: red;
}

.details {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

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

.property-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
  width: 300px;
  flex-shrink: 0;
}

.image-placeholder {
  height: 120px;
  background: #ddd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

.super-area,
.price,
.possession {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.price .emi {
  color: #e74c3c;
  font-weight: bold;
  font-size: 13px;
}

.contact-btn {
  padding: 8px 12px;
  background: red;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  width: 80%;
  margin-bottom: 10px;
  margin-left: 20px;
}

.contact-btn:hover {
  background: #c0392b;
}

.view-all {
  font-size: 12px;
  color: #3498db;
  text-decoration: none;
  display: block;
  text-align: center;
}

.view-all:hover {
  text-decoration: underline;
}

.arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  color: #333;
}

.left-arrow {
  left: 5px;
}

.right-arrow {
  right: 10px;
}

.arrow:hover {
  background: red;
  color: #fff;
}

.property-listing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    font-family: sans-serif;
  }
  
  .property-cardNew {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-left: 150px;
    margin-right: 50px;
    width: 1000px;
  }
  
  .property-image {
    position: relative;
    flex: 1;
  }
  
  .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background-color: #28a745;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    margin-right: 5px;
  }
  
  .badge.featured {
    background-color: #ffc107;
  }
  
  .badge.zero-brokerage {
    background-color: #007bff;
  }
  
  .property-info {
    flex: 2;
    padding: 20px;
  }
  
  .property-info h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
  }
  
  .property-info .rating {
    font-size: 14px;
    color: #555;
  }
  
  .property-info .price {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 10px 0;
  }
  
  .property-info .details {
    font-size: 14px;
    color: black;
    font-weight: bold;
  }
  
  .property-info .highlights {
    font-size: 14px;
    color: #777;
    margin: 10px 0;
  }
  
  .actions {
    display: flex;
    gap: 10px;
  }
  
  .actions button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .actions button:first-child {
    background-color: #007bff;
    color: #fff;
  }
  
  .actions button:last-child {
    background-color: #28a745;
    color: #fff;
  }
 .info p{
  text-align: center;
 }

  .amenities-section {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  
  .amenities-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    
  }
  
  .amenities-section p {
    font-size: 16px;
    color: #555;
    
  }
  
  .amenities-section p a {
    color: #007bff;
    text-decoration: none;
  }
  
  .amenities-section h3 {
    margin-top: 20px;
    font-size: 20px;
    color: #333;
  }
  
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }
  
  .amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #f1f1f1;
    height: 100px;
    width: 120px;
    background-color: #f1f1f1;
  }
  
  .amenity img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .amenity span {
    font-size: 14px;
    color: #333;
  }
  span{
    color: red;
    font-weight: bold;
    font-size: 30px;
  }
  .name{
    font-weight: normal;
    color: black;
    font-size: 15px;
    font-family: sans-serif;
  }
 /* Container for the layout */
.container {
  display: flex;
  align-items: flex-start; /* Align items at the top */
  justify-content: space-between; /* Add space between sections */
  gap: 20px; /* Add space between elements */
}

.why-buy-section {
  margin: 30px 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 650px;
}

.why-buy-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.why-buy-card {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.why-buy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-buy-card ul li {
  font-size: 16px;
  margin: 10px 0;
  color: #555;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
}

.why-buy-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

.download-btn {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  margin-left: 20px;
}

.download-btn:hover {
  background-color: rgb(239, 65, 65);
}

/* Right Image Styling */
.right-image {
  margin-top: 5%;
  width: 70%; /* Adjust the width as needed */
  
}

.right-image img {
  max-width: 100%; /* Ensure the image scales properly */
  height: auto;
  display: block;
  
}

/* What's Nearby Section */
.nearby-section {
  margin: 30px 20px;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 400px;
  margin-left: 100px;
  margin-right: 100px;
}

.nearby-section h2 {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.map-container {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

.map-image {
  width: 100%;
  max-height: 300px;
  border-radius: 10px;
}

.map-button {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: red;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.map-button:hover {
  background-color: #e44a4a;
}

.landmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 5px;
  justify-content: space-between;
}

.landmark-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.landmark-card h3 {
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
}

.landmark-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landmark-card ul li {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
  position: relative;
  padding-left: 20px;
}

.landmark-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}
.landmark-card ul li a {
  color: #007BFF;
  text-decoration: none;
}
.landmark-card ul li a:hover {
  text-decoration: underline;
}
.faq-section {
  max-width: 950px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.faq-section h1 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}
.faq-item {
  margin-bottom: 15px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.faq-item:last-child {
  border-bottom: none;
}
.question {
  font-weight: bold;
  color: red;
}
.answer {
  margin-top: 5px;
  color: #555;
}
.answer a {
  color: #007BFF;
  text-decoration: none;
}
.answer a:hover {
  text-decoration: underline;
}
/* Container for carousel */
/* Container for carousel */
.headSection {
  text-align: center;
  margin: 20px;
}

/* Carousel container styling */
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; /* Hides images outside the visible area */
  width: 60%; /* Adjust as needed */
  height: 500px;
  max-width: 900px;
  margin: 20px auto;
  border: 2px solid #ddd;
  border-radius: 10px;
}

/* Carousel images container */
.carousel-images {
  display: flex; /* Enables horizontal layout for sliding */
  transition: transform 0.5s ease-in-out; /* Smooth slide transition */
  width: 100%; /* Ensure images fit the carousel container */
}

/* Individual images in the carousel */
.carousel-images img {
  width: 100%; /* Images take the full width of the carousel */
  flex-shrink: 0; /* Prevent images from shrinking */
  border-radius: 10px;
  height: 500px;
  max-width: 900px;
}

/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background-color: white;
  color: black;
}
.property-detail-section {
  background-color: #f5faff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 70%;
  margin-left: 15%;
}

.property-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.property-byline {
  font-size: 16px;
  color: #555;
}

.property-location {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.property-pricing {
  font-size: 16px;
  margin-bottom: 20px;
}

.price-range {
  font-weight: bold;
  font-size: 20px;
}

.property-type{
  margin-left: 3px;
  font-size: 20px;
}
.possession-date,
.price-trend-link,
.emi-info {
  margin-left: 10px;
  font-size: 20px;
}

.price-trend-link {
  color: #007bff;
  text-decoration: none;
}

.price-trend-link:hover {
  text-decoration: underline;
}

.property-actions {
  display: flex;
  gap: 10px;
}

.view-phone-btn,
.contact-builder-btn {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-phone-btn:hover,
.contact-builder-btn:hover {
  background-color: rgb(246, 52, 52);
}
.Formcontainer {
  width: 60%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 20px;
}

h2 {
  color: #333;
}

.email {
  color: #666;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  margin-bottom: 15px;
  flex: 1;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
textarea,
select {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  height: 100px;
}

input[type="checkbox"] {
  margin-right: 10px;
}

a {
  color: #eb3939;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  background-color: red;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background-color: #d73535;
}

