    body {
      font-family: 'Poppins', sans-serif;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 2px;
      background-color: #00c655;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .nav-link:hover::after {
      transform: scaleX(1);
    }

    .text-shadow-strong {
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 3);
    }

    .image-container {
      overflow: visible;
      max-height: none;
      height: auto;
    }

    .app-highlight {
      background-color: #f9f9f9;
      padding: 60px 20px;
      text-align: center;
    }

    .app-highlight h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .app-highlight p {
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .cta-buttons {
      margin: 30px 0;
    }

    .cta-buttons a {
      display: inline-block;
      margin: 0 10px;
    }

    .cta-buttons img {
      height: 50px;
    }

    .app-image img {
      max-width: 100%;
      height: auto;
      margin-top: 40px;
    }

    .scrollbar-hide::-webkit-scrollbar {
      display: none;
    }

    .scrollbar-hide {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .link-a {
      background-color: #B5CB00;
      padding: 5px 15px;
      border-radius: 20px;
      color: white;
      font-size: 0.875rem;
      transition: background-color 0.3s, color 0.3s;
    }

    .link-a:hover {
      background-color: #9e9e9ea8;
      color: #B5CB00;
    }


    /* Optional responsiveness if needed */
    @media (max-width: 767px) {
      .link-a {
        display: block;
        text-align: center;
        margin: 0 auto;
        font-size: 14px;
      }
    }

    .card-category-b {
      margin-top: 20px;
    }

    .card-header-b .category-b:hover {
      font-size: .9rem;
      background-color: #9e9e9eab;
      padding: .3rem .7rem;
      color: white;
      letter-spacing: 0.030em;
      border-radius: 50px;
      text-decoration: none;
    }

    .swiper-pagination-bullet {
      background-color: #F7C948 !important;
      /* Yellow */
      opacity: 0.6;
    }

    .swiper-pagination-bullet-active {
      background-color: #3A843A !important;
      /* Green */
      opacity: 1;
    }

    /* Parallax background */
    .parallax-1 {
      background-image: url(../../assets/img/parallax-bg/phase4-sideview.jpg);
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 90vh;
      position: relative;
    }

    .parallax-2 {
      background-image: url(../../assets/img/parallax-bg/rrh-balayan.jpg);
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 90vh;
      position: relative;
    }

    .parallax-3 {
      background-image: url(../../assets/img/parallax-bg/bf-townhomes-2.jpg);
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 90vh;
      position: relative;
    }

    .parallax-4 {
      background-image: url(../../assets/img/parallax-bg/wbh-minuyan.jpg);
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 90vh;
      position: relative;
    }

    .parallax-5 {
      background-image: url(../../assets/img/parallax-bg/wbh-cavite.jpg);
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 90vh;
      position: relative;
    }


    @media only screen and (max-device-width: 1024px) {
      .parallax {
        background-attachment: scroll;
      }
    }

    /* Overlay gradient */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0) 0%,
          rgba(0, 0, 0, 0.1) 27%,
          rgba(0, 0, 0, 0.33) 90%);
      display: flex;
      justify-content: center;
      align-items: flex-flex start;
      padding-top: 200px;
      padding-bottom: 4rem;
    }

    /* Project title styles */
    .proj-title {
      font-size: 60px;
      font-weight: 500;
      color: white;
      line-height: 1.0;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
      margin: 0 0 8px;

    }

    .header-text {
      font-size: 0.875rem;
      line-height: 1.5rem;
      color: white;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
      margin-top: 1rem;
      max-width: 720px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .proj-title {
        font-size: 36px;
        text-align: center;
      }

      .header-text {
        text-align: justify;
        text-justify: inter-word;
        padding-right: 50px;
      }

      .overlay {
        align-items: flex-end;
        padding-bottom: 3rem;
        text-align: center;
      }
    }

    /* Carousel Button (Square Button) */
    .carousel-button {
      background-color: #00c655;
      color: white;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      font-size: 20px;
      transition: background-color 0.3s;
      width: 50px;
      /* Square button width */
      height: 50px;
      /* Square button height */
    }

    .carousel-button:hover {
      background-color: #028c3e;
    }

    /* Positioning the carousel buttons to the upper right */
    .carousel-controls {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      justify-content: space-between;
      width: 50px;
      z-index: 2;
      /* Ensure buttons are above the image */
    }

    /* Hide default carousel controls */
    .carousel-prev,
    .carousel-next {
      display: none;
    }

    /* Carousel Section */
    .carousel-container {
      position: relative;
    }

    .tab-link:hover {
      color: black !important;
    }

    /* Show desktop menu above 1030px, hide below */
    @media (max-width: 1030px) {
      .desktop-menu {
        display: none !important;
      }

      #menuToggle {
        display: block !important;
      }

      #mobileMenu {
        display: flex;
      }
    }

    @media (min-width: 1031px) {
      .desktop-menu {
        display: flex !important;
      }

      #menuToggle {
        display: none !important;
      }

      #mobileMenu {
        display: none !important;
      }
    }

    /* Mobile menu animation */
    #mobileMenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #mobileMenu.open {
      max-height: 500px;
    }

    /* House-catalog CSS */

    .text-shadow {
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .property-card .overlay-content>*:not(h3) {
      opacity: 0;
      transition: opacity 0.5s ease;
      padding: 20px;
    }

    .property-card:hover .overlay-content>*:not(h3) {
      opacity: 1;
    }

    .overlay-content {
      transition: background 0.5s ease;
    }

    .property-card .overlay-content {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
      transition: background 0.5s ease;
      padding: 20px;
    }

    .property-card:hover .overlay-content {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    }

    .property-card .overlay-content h3 {
      margin-bottom: 16px;
    }

    /* ==================== Base Styles ==================== */

    .properties-section {
      margin-top: 81px;
      padding: 40px 0;
      background: #fff;
    }

    /* ==================== Layout: Property Rows ==================== */

    .property-card-row {
      display: flex;
      align-items: stretch;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 140px;
    }

    .property-card-row:last-child {
      margin-bottom: 0;
    }

    .property-card-row.reverse {
      flex-direction: row-reverse;
    }

    /* ==================== Property Image ==================== */

    .property-image,
    .property-card-row .property-image {
      display: inline-flex;
      align-items: stretch;
      justify-content: center;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin: 0 12px;
      padding: 0;
      border-radius: 12px;
      max-width: 100%;
    }

    .property-image img {
      display: block;
      max-width: 100%;
      max-height: 500px;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 12px;
      background: #fff;
      transition: transform 0.3s ease;
    }

    .property-image:hover img {
      transform: scale(1.08);
    }

    /* ==================== Property Info ==================== */

    .property-info {
      flex: 1 1 220px;
      min-width: 220px;
      max-width: 35%;
      padding: 0 24px;
      margin: 0 12px;
      position: relative;
      height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .property-info h3 {
      color: #16a34a;
      font-size: 2rem;
      font-weight: 550;
      margin-bottom: 8px;
    }

    .property-info p {
      color: #374151;
      font-size: 1rem;
      margin-bottom: 16px;
    }

    /* Amenities image */
    .property-info img[alt="Amenities"] {
      width: 200px;
      height: 120px;
      max-width: 100%;
      object-fit: cover;
      border-radius: 8px;
      margin-top: 8px;
      filter: grayscale(100%);
      background: none;
      display: block;
    }

    /* ==================== Buttons ==================== */

    .know-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      font-size: 0.95rem;
      font-weight: 600;
      color: #fff;
      background: #16a34a;
      border-radius: 6px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: auto;
      align-self: flex-start;
      width: fit-content;
      transition: background 0.2s, color 0.2s;
    }

    .know-more-btn:hover {
      background: #f7c940;
      color: #fff;
    }

    .know-more-btn svg {
      width: 20px;
      height: 20px;
      color: #fff;
    }

    /* ==================== Utility Classes ==================== */

    .flex {
      display: flex;
    }

    .items-center {
      align-items: center;
    }

    .space-x-4> :not([hidden])~ :not([hidden]) {
      margin-left: 1rem;
    }

    .m-0 {
      margin: 0;
    }

    .mb-2 {
      margin-bottom: 0.5rem;
    }

    /* ==================== Responsive Styles ==================== */

    @media (max-width: 1100px) {

      .property-card-row,
      .property-card-row.reverse {
        flex-direction: column;
        align-items: stretch;
      }

      .property-image,
      .property-card-row .property-image {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 260px;
        margin: 0 0 16px 0;
      }

      .property-info {
        max-width: 100%;
        min-width: 0;
        margin: 0 0 16px 0;
        height: auto;
      }

      .know-more-btn {
        font-size: 0.95rem;
        padding: 12px 24px;
        margin-top: 24px;
        width: fit-content;
      }
    }

    @media (min-width: 700px) and (max-width: 1100px) {

      .property-image,
      .property-card-row .property-image {
        width: 100%;
        height: 320px;
        min-width: 0;
        max-width: 100%;
        margin: 0 0 16px 0;
        border-radius: 12px;
        padding: 0;
        overflow: hidden;
      }

      .property-image img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        border-radius: 12px;
        background: #fff;
        transition: transform 0.3s ease;
      }
    }

    @media (max-width: 700px) {
      .properties-section {
        padding: 20px 0;
      }

      .property-image,
      .property-card-row .property-image {
        width: 100%;
        height: auto;
        min-width: 0;
        max-width: 100%;
        margin: 0 0 16px 0;
        border-radius: 12px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .property-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 300px;
        object-fit: cover;
        border-radius: 12px;
      }

      .property-info {
        height: auto;
      }

      .property-info h3 {
        font-size: 1.2rem;
      }

      .property-info p {
        font-size: 0.95rem;
      }

      .know-more-btn {
        font-size: 0.85rem;
        padding: 10px 16px;
        margin-top: 24px;
        width: fit-content;
      }

      .property-info img[alt="Amenities"] {
        width: 80px;
        height: 50px;
        min-width: 0;
        max-width: 100px;
        object-fit: contain;
      }
    }

    footer {
      position: relative;
      color: #fff !important;
      background: none !important;
    }

    footer .container {
      position: relative;
      z-index: 2;
    }

    footer::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(120deg, #0a4d2c 60%, #1b7a3a 100%);
      opacity: 0.92;
    }

    footer * {
      color: #fff !important;
      transition: color 0.2s;
    }

    footer a:hover,
    footer a:focus {
      color: #ffe066 !important;
    }

    /* Social icons */
    footer .w-5.h-5 {
      fill: #fff;
      transition: fill 0.2s;
    }

    footer a:hover .w-5.h-5,
    footer a:focus .w-5.h-5 {
      fill: #ffe066;
    }