
    .condo-section {
  background-color:rgb(255, 255, 255) ;
  color: #272626;
  padding: 40px 0 20px 0;
  text-align: center;
margin-top: 5px;
}

.condo-section .display-5 {
  font-size: 2.5rem;
  font-weight: bold;
}

.condo-section .fs-5 {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}


  

    .gallery-container {
      max-width: 900px;
      margin: 30px auto;
      background: #ffffff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      padding: 10px;
      text-align: center;
      overflow-x: hidden;
    }

    .main-image-container {
      position: relative;
    }

    .main-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
      cursor: pointer;
    }

    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      padding: 10px;
      cursor: pointer;
      font-size: 18px;
      border: none;
      border-radius: 50%;
      z-index: 1;
    }

    .nav-arrow.left {
      left: 10px;
    }

    .nav-arrow.right {
      right: 10px;
    }

    .thumbnails {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      margin-top: 15px;
      gap: 0px;
      justify-content: center;
      padding: 5px 0;
        
    }

    .thumbnails img {
      width: 90px;
      height: 60px;
      object-fit: cover;
      cursor: pointer;
      border: 2px solid transparent;
      border-radius: 4px;
      transition: border 0.3s ease;
      flex-shrink: 0;
    }

    .thumbnails img.active {
      border: 2px solid #70523e;
    }

    /* Lightbox Styles */
    .lightbox-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      padding-top: 60px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.95);
      text-align: center;
    }

    .lightbox-content {
      max-width: 100%;
      max-height: 90vh;
      border-radius: 8px;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      z-index: 10001;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 40px;
      background: rgba(0,0,0,0.4);
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 10000;
    }

    .lightbox-nav.left {
      left: 30px;
    }

    .lightbox-nav.right {
      right: 30px;
    }

    @media (max-width: 600px) {
      .thumbnails img {
        width: 70px;
        height: 50px;
      }

      .nav-arrow {
        padding: 8px;
      }
    }

    .text-orange {
      color: #373736;
    }

   
    .btn-house-rules {
      display: inline-block;
      margin-top: 20px;
      background-color: #f8f9fa;
      border: 1px solid #ccc;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 5px;
    }

    .house-modal-backdrop {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1050;
    }

    .house-modal-content {
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      width: 90%;
      max-width: 800px;
      position: relative;
    }

    .modal-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .modal-grid div {
      flex: 1;
      min-width: 300px;
    }

    .close-btn {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 24px;
      border: none;
      background: none;
      cursor: pointer;
    }
 
    .check-icon {
      color: green;
      margin-right: 8px;
    }
 




  .calendar-section {
    padding: 40px -30px;
  }
  .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600px;
    color: black;
    margin-bottom: 25px;
  }
  .calendar-wrapper {
    display: flex;
    justify-content: center;
    background: white;
    padding: 90px;
    border-radius: 15px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
  }

  /* Litepicker custom styles */
  .litepicker {
    border-radius: 10px;
    font-size: 18px;
    border: 2px;
    font-family: 'Segoe UI', sans-serif;
    gap: 80px; /* months ke beech ka gap */
  }
  .litepicker .months {
    display: flex;
    gap: 110px; /* extra gap between months */
  }
  .litepicker .day-item {
    font-size: 19px; /* font size bada */
    height: 42px; /* height badi */
    line-height: 42px; /* center align */
  }
  .litepicker .day-item.is-locked {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    text-decoration: line-through;
  }
  .litepicker .day-item.is-start-date, 
  .litepicker .day-item.is-end-date {
    background-color: #0d6efd !important;
    color: white !important;
    border-radius: 8px;
  }
  .litepicker .day-item.is-in-range {
    background-color: rgba(13,110,253,0.15) !important;
  }
  .inquiry-box {
    text-align: center;
    margin-top: 20px;
padding: 0px 50px;
  }
  .inquiry-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
  }
  .popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
  }
  .popup-content .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
  }


/* ========================
   Responsive Styles
======================== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }
  .calendar-wrapper {
    padding: 40px;
  }
  .litepicker {
    gap: 40px;
  }
  .litepicker .months {
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .popup-content {
    width: 95%;
    padding: 20px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .calendar-wrapper {
    padding: 15px;
  }
  .litepicker {
    gap: 20px;
    font-size: 14px;
  }
  .litepicker .months {
    flex-direction: column;
    gap: 20px;
  }
  .litepicker .day-item {
    font-size: 16px;
    height: 36px;
    line-height: 36px;
  }
  .inquiry-box {
    padding: 0 15px;
  }
  .popup-content {
    width: 90%;
    padding: 15px;
  }
  .popup-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .popup-content .close-btn {
    font-size: 20px;
  }
}

  


      :root {
      --orange: #f8c01a;
      --orange-light: #80d3ff;
      --bg-light: #fffef9;
      --bg-section: #fff4e0;
      --text-dark: #333;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
    }

    /* HERO */
    .hero-banner {
      background: linear-gradient(to right, var(--orange), var(--orange-light));
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }

    .hero-banner h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    /* SECTIONS */
    section {
      padding: 60px 20px;
    }

    h2 {
      color: var(--orange);
      font-weight: 700;
      margin-bottom: 40px;
      text-align: center;
    }

    /* HIGHLIGHTS */
    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .highlight-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .highlight-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .highlight-card h5 {
      color: var(--orange);
      margin-bottom: 10px;
    }

    /* NEIGHBORHOOD */
    .neighborhood-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }

    .neighborhood-item {
      background: #fff;
      border-radius: 12px;
      padding: 15px 25px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.04);
      text-align: center;
      min-width: 140px;
    }

    .neighborhood-item h6 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 5px;
    }

    /* TESTIMONIAL */
    blockquote {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
      font-style: italic;
      background: #fff;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }

    blockquote footer {
      margin-top: 15px;
      font-size: 0.9rem;
      color: #666;
      font-style: normal;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero-banner h1 {
        font-size: 2rem;
      }
    }