* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  
  .nav {
    background-color: #2d2d2d;
    position: fixed;
    top: 0;
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
  }

  .nav li {
    margin: 0 20px;
  }

  .nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
  }

  .nav a:hover,
  .nav a.active {
    background-color: #f4a742;
    color: #000;
    border-radius: 5px;
  }

  .logo {
    font-weight: bold;
    font-size: 1.5rem;
    color:#f4f4f4;
    padding: 15px;
  }
  
  
  .hero {
    padding-top: 60px;
    position: relative;
    height: 500px;
    overflow: hidden;
  }
  
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-text {
    padding-top: 60px;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    background-color: rgba(0,0,0,0.5);
    padding: 1rem;
    border-radius: 5px;
  }
  
  section {
    padding: 2rem;
    background: white;
    margin-bottom: 1rem;
  }
  
  .amenities-list {
    list-style: square inside;
    padding-left: 1rem;
  }
  
  .floorplans {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .plan {
    flex: 1 1 45%;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
  }
  
  .plan img {
    width: 100%;
    border-radius: 5px;
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .gallery img {
    width: 32%;
    border-radius: 5px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  form input, form textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  form button {
    background: #333;
    color: white;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    cursor: pointer;
  }
  
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 1rem;
  }
  
  .contact-info {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 1rem;
    flex-wrap: wrap;
  }
  
  .contact-info div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .contact-info .icon {
    font-size: 1.2rem;
  }

  #reviews {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .review-slideshow {
    position: relative;
    overflow: hidden;
    min-height: 150px;
  }
  
  .review {
    display: none;
    padding: 20px;
    font-size: 1.1rem;
    color: #333;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  .review.active {
    display: block;
  }
  
  .stars {
    font-size: 1.5rem;
    color: gold;
    margin-bottom: 10px;
  }
  
  .quote {
    font-style: italic;
    margin-bottom: 10px;
  }
  
  .reviewer {
    font-weight: bold;
    color: #555;
  }
  
  .review-controls button {
    background: #007bff;
    border: none;
    color: white;
    padding: 8px 15px;
    margin: 10px 5px 0 5px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 5px;
  }
  
  .review-controls button:hover {
    background: #0056b3;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .contact-box {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-box h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .contact-box form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-box label {
    margin-top: 10px;
    margin-bottom: 5px;
  }
  
  .contact-box input,
  .contact-box textarea {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  .contact-box button {
    margin-top: 20px;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .contact-box button:hover {
    background-color: #0056b3;
  }

  
  
  
  
  
  