<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  font-family: "Lora", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #2c2c2c;
  color: #e0c097;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  color: black;
  padding: 15px 20px;
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #800020;
}
.nav-container {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
nav ul li {
  display: inline;
}
nav ul li a {
  text-decoration: none;
  font-size: 1.1em;
  font-weight: normal;
  font-family: "Lora", serif;
  color: black;
}
.enquiry-button {
  background: #800020;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  border-radius: 5px;
  font-weight: bold;
  font-family: "Lora", serif;
}
.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
  color: black;
}
.button-container {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: block;
    order: 1;
  }
  .logo {
    order: 2;
    flex-grow: 1;
    text-align: center;
  }
  .button-container {
    order: 3;
  }
  .nav-container {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    display: block;
  }
  nav ul li {
    display: block;
    padding: 10px 0;
  }
  .show-menu {
    display: flex !important;
    z-index: 100;
  }
}

/* Video Banner CSS Style Code */
.video-banner {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}
.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
}

.welcome-section {
  text-align: center;
  padding: 50px 20px;
  background: white;
  color: black;
}
.welcome-section h1 {
  font-size: 2.5em;
  color: black;
}
.welcome-section h1 span {
  color: #800020;
}
.welcome-section p {
  font-size: 1.2em;
  max-width: 90%;
  margin: auto;
  text-align: justify;
}

/* Categories Style Code */

.property-categories {
  background: #fff;
  color: black;
  padding: 60px 20px;
  text-align: center;
}
.property-categories h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
}
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  transform: translateY(-5px);
}
.card i {
  font-size: 2em;
  margin-bottom: 15px;
  color: #800020;
}
.card h3 {
  color: #800020;
  margin-bottom: 10px;
}
.card p {
  font-size: 1em;
}
.core-services {
  background-color: #2c2c2c;
  color: #e0c097;
  padding: 60px 20px;
  text-align: center;
}
.core-services h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
}
.core-services .category-cards .card {
  background-color: #3a3a3a;
  color: #e0c097;
}
.core-services .card h3,
.core-services .card i {
  color: #e0c097;
}

/* Property Tabs */
.property-tabs {
  background: #fff;
  color: black;
  padding: 60px 20px;
  text-align: center;
}
.property-tabs h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.tab-button {
  padding: 10px 20px;
  border: 1px solid #800020;
  background-color: transparent;
  color: #800020;
  cursor: pointer;
  font-family: "Lora", serif;
  font-size: 1em;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
}
.tab-button.active,
.tab-button:hover {
  background-color: #800020;
  color: #fff;
}
.tab-content {
  display: block;
  font-size: 1.1em;
}
.property-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.property-cards .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  text-align: left;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-info {
  padding: 15px;
}
.card-info h3 {
  margin: 10px 0;
}
.card-info p {
  font-size: 0.9em;
  color: #666;
}
.card-info .tag {
  background: #800020;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8em;
}
.card-info a {
  display: inline-block;
  margin-top: 10px;
  color: #800020;
  text-decoration: none;
  font-weight: bold;
}
.view-more-btn {
  display: inline-block;
  background-color: #800020;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.view-more-btn:hover {
  background-color: #5a0014;
}
.view-more-btn.main {
  margin-top: 30px;
  font-size: 16px;
}
.view-more-wrapper {
  margin-top: 20px;
}

/* Featured Location Noida Section */
.featured-location {
  text-align: center;
  padding: 50px 20px;
  background: #f8f8f8;
}
.featured-location h2 {
  color: black;
}
.featured-location .highlight {
  color: #5a0014;
}
.featured-location p {
  color: black;
}
.location-cards {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 180px;
}
.location-card {
  position: relative;
  width: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.location-card.large {
  width: 500px;
}
.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.location-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-weight: bold;
}
.location-info p {
  color: white;
}

@media (max-width: 768px) {
  .location-cards {
    padding: 0 0px;
  }
}

/* Contact form code */

.contact-section {
    background: #FFFFFF;
    padding: 50px;
    color: black;
    display: flex;
    justify-content: center;
  }
  .contact-container {
    display: flex;
    max-width: 100%;
    gap: 30px;
    flex-wrap: wrap;
  }
  .contact-info {
    max-width: 700px;
  }
  .contact-info h2 {
    font-size: 35px;
    font-weight: bold;
  }
  .highlight {
    color: #800020;
  }
  .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 20px;
  }
  .social-icons i {
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
  }
  .contact-form {
    background: white;
    color: black;
    padding: 40px 70px;
    border-radius: 10px;
    width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .interest-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .interest-buttons button {
    border: 1px solid #ccc;
    background: transparent;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  .interest-buttons .selected {
    background: #800020;
    color: white;
  }
  label {
    display: block;
    margin: 10px 0 5px;
    font-size: 18px;
  }
  input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    margin: 10px 0px;
  }
  textarea {
    height: 80px;
  }
  .submit-btn {
    background-color: #800020;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
  }
  .submit-btn:hover {
    background-color: #660018;
  }
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
    .contact-form, .contact-info {
      width: 100%;
      text-align: center;
    }
    .contact-info {
      max-width: 100%;
      padding: 10px 0px;
    }
    .contact-info h2{
      font-size: 25px;
    }
    .contact-section {
      background: #FFFFFF;
      padding: 0px;
    }
    .contact-form {
      padding: 10px 30px;
      border-radius: 10px;
      width: 300px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
  }

  .footer {
    background: #2C2C2C;
    color: white;
    text-align: center;
    padding: 20px;
  }
  .footer-top {
    background: #800020;
    padding: 10px;
    font-size: 18px;
  }
  .footer-social i {
    font-size: 18px;
    margin: 0 5px;
    cursor: pointer;
  }
  .footer-main {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
  }
  .footer-column {
    max-width: 300px;
    text-align: left;
  }
  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .footer-bottom {
    background: #222;
    padding: 10px;
    font-size: 12px;
  }</pre></body></html>