/* header hide */
/* ====== Desktop Header (show only ≥ 992px) ====== */
.site-header {
  display: block;
}

.mobile-tridasa-header {
  display: none;
}

@media (max-width: 991.98px) {
  .site-header {
    display: none !important;
  }

  .mobile-tridasa-header {
    display: block !important;
  }
}

/* // header // */

@media (max-width: 991.98px) {
  .mobile-tridasa-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .mobile-header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    height: 60px;
  }

  .mobile-logo img {
    max-height: 42px;
    width: auto;
    display: block;
  }

  .mobile-left {
    padding-left: 12px;
  }

  .mobile-right {
    padding-left: 180px;
  }

  .mobile-toggle-box {
    background-color: #1f3264;
    width: 52px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .mobile-nav-toggle span,
  .mobile-nav-toggle span::before,
  .mobile-nav-toggle span::after {
    display: block;
    background-color: #fff;
    height: 3px;
    width: 20px;
    position: relative;
    border-radius: 2px;
    transition: 0.3s;
  }

  .mobile-nav-toggle span::before,
  .mobile-nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .mobile-nav-toggle span::before {
    top: -6px;
  }

  .mobile-nav-toggle span::after {
    top: 6px;
  }

  /* ======= SLIDE-IN MOBILE NAV MENU ======= */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s ease-in-out;
  }

  /* When open */
  .mobile-nav.open {
    transform: translateX(0%);
  }

  .mobile-nav-inner {
    position: relative;
    padding: 20px;
  }

  .mobile-nav-close {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1f3264;
  }

  .mobile-nav-links {
    margin-top: 60px;
    list-style: none;
    padding: 0;
  }

  .mobile-nav-links li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: #1f3264;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav-links li a:hover {
    background-color: #f9f9f9;
  }

  .site-content {
    margin-top: 60px;
  }
}

/* // End Header // */









/* // Banner section // */

/* // End Banner section // */






/* feature */
/* 1) Hide mobile bar on desktop */
.features-bar-mobile {
  display: none;
}

/* 2) At mobile widths, swap them */
@media only screen and (max-width: 767px) {
  /* hide original desktop bar */
  .features-bar {
    display: none;
  }

  /* show the mobile bar */
  .features-bar-mobile {
    display: block;
    background-color: #17315b;     /* dark navy from your screenshot */
    padding: 10px 6px;
  }

  /* one-row, bullet-separated list */
  .features-bar-mobile .features-list-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
  }

  /* add a “• ” before every item */
  .features-bar-mobile .features-list-mobile li {
    position: relative;
    padding-left: 0;
  }
  .features-bar-mobile .features-list-mobile li:before {
    content: '• ';
    color: #fff;
  }
}

/* 3) Ensure the mobile bar never shows on wider screens */
@media only screen and (min-width: 768px) {
  .features-bar-mobile {
    display: none;
  }
}


/*End  feature */




/* // about us section // */

   /* Hide on desktop by default */
    .My-second {
      display: none;
    }

    @media (max-width: 767px) {
      .My-second {
        display: none;
        height: 60vh;
        overflow: hidden;
        position: relative;
        margin:0px;
      }

      .mobile-banner-container {
        position: relative;
        width: 100%;
        height: 100%;
        font-family: 'Segoe UI', sans-serif;
      }

      .mobile-banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .mobile-banner-heading {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        font-weight: 600;
        color: #ffffff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90%;
       margin-top: 30px;
      }

      .mobile-banner-button {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #f0534f;
        color: white;
        padding: 10px 22px;
        font-size: 0.95rem;
        border-radius: 6px;
        text-decoration: none;
        display: inline-block;
        white-space: nowrap;
        margin-top: 30px;
      }

      .mobile-banner-button span {
        margin-left: 6px;
      }
    }

/* //end about us section // */











/* // Project section // */
/* 1) Hide carousel on desktop, show it on mobile */
.ph-carousel {
  display: none;
}

@media only screen and (max-width: 767px) {
  /* 1. Ensure our carousel container is visible & can overflow */
  .project-highlights .ph-carousel {
    display: block !important;
    position: relative;
    overflow: visible;
    padding: 0;   /* remove extra vertical padding if any */
  }

  /* 2. Allow slides (& their icons) to overflow the hidden stage */
  .project-highlights .ph-carousel .owl-stage-outer,
  .project-highlights .ph-carousel .owl-stage {
    overflow: visible !important;
  }

  /* 3. Slide wrapper padding, so card doesn’t touch edge */
  .project-highlights .ph-carousel .item {
    padding: 0 16px;
    box-sizing: border-box;
  }

  /* 4. Enlarge the card, center it, and give room for the icon */
  .project-highlights .ph-carousel .ph-card {
    margin: 0 auto;
    width: 100%;
    max-width: 340px;       /* match your design width */
    padding: 40px 20px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }

  /* 5. Center the icon box above the card */
  .project-highlights .ph-carousel .ph-card .ph-icon-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: #44527f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .project-highlights .ph-carousel .ph-card .ph-icon-wrapper img {
    width: 24px;
    height: 24px;
  }

  /* 6. Float nav buttons mid-height, full width container */
  .project-highlights .ph-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
  }
  .project-highlights .ph-carousel .owl-nav button {
    pointer-events: all;
    background-color: #44527f;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .project-highlights .ph-carousel .owl-nav .owl-prev {
    margin-left:0px;   /* half button width to sit outside card */
  }
  .project-highlights .ph-carousel .owl-nav .owl-next {
    margin-right:0px;
  }

  /* 7. Ensure the desktop grid stays hidden on mobile */
  .project-highlights .ph-grid {
    display: none !important;
  }
}


/* // End Project section // */


/* // MOBILE floor plan ONLY // */



/* End floor plan */








/* location highlight */
/* ----------------- MOBILE ONLY ----------------- */
/* hide on desktop */
/* ----------------- LOCATION HIGHLIGHTS MOBILE ONLY ----------------- */

/* Hide on desktop */
.location-highlights-mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .LocationHighlights {
    display: none;
  }
}

/* Show only on mobile (≤ 767px) */
@media only screen and (max-width: 767px) {
  .location-highlights-mobile {
    display: block;
    padding: 60px 16px 32px;
    background: #f9f9f9 url('../image/bg-image/tridasa-pattern-background.png') center/cover;
    font-family: 'Poppins', sans-serif;
    margin-top: 5%;
  }

  .location-highlights-mobile h2 {
    margin: 0;
    text-align: center;
    font-size: 28px;
    color: #2e4666;
    font-weight: 300;
  }

  .location-highlights-mobile .divider {
    width: 40px;
    height: 4px;
    background: #e43f3d;
    margin: 8px auto 24px;
    border-radius: 2px;
  }

  .location-highlights-mobile .highlights-grid {
     margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
    
  }

  .location-highlights-mobile .highlight-card {
   
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 40px 8px 26px;   /* extra top padding for larger icon */
    text-align: center;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* push text toward bottom */
  }

  .location-highlights-mobile .highlight-card .icon {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: #46557e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .location-highlights-mobile .highlight-card .icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .location-highlights-mobile .highlight-card .label {
    margin: 0;
    font-size: 13px;
    color: #e43f3d;
    line-height: 1.3;
  }

  .location-highlights-mobile .highlight-card .distance {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #2e3a59;
    line-height: 1.2;
  }

  .location-highlights-mobile .btn-enquire {
    display: inline-flex;    /* or use block + auto-margins */
    margin: 24px auto 0;     /* auto left/right centers it */
    padding: 12px 20px;
    background: #e43f3d;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 20px;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }

  .location-highlights-mobile .btn-enquire svg {
    width: 16px;
    height: 16px;
  }

  .view-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  font-size: 12px;
}
}


/*End  location highlight */


@media only screen and (max-width: 767px) {
  .MapHighlights {
    display: none;
  }
  #map-highlights-mobile{
    padding: 30px 16px 32px;
  }
}





/* // footer section // */
@media only screen and (max-width: 767px) {
  .desktop-footer {
    display: none !important;
  }
}

/* ---------- Hide on desktop, show only on mobile ---------- */
.mobile-footer {
  display: none;
}
@media only screen and (max-width: 767px) {
  .mobile-footer {
    display: block;
    /* font-family: "Poppins", sans-serif; */
    background: #2b3046;
    color: #fff;
    text-align: center;
    position: relative;
  }

  /* Schedule box */
  .schedule-box {
    position: relative;
    top: -40px;
    margin: 60px 16px 20px;
    padding: 20px 16px;
    background: #536185;
    border-radius: 20px;
  }
  .schedule-box h3 {
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 500;
  }
  .schedule-form {
    /* display: flex; */
    align-items: center;
  }
  .schedule-form input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 20px 0 0 20px;
    font-size: 14px;
  }
  .schedule-form a{
    padding: 10px 20px;
    border: none;
    border-radius: 20px 20px 20px 20px;
    background: #e1534c;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }

  /* Contact section */
  .footer-contact {
    padding: 0 16px 20px;
  }
  .footer-contact h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }
  .divider {
    width: 40px;
    height: 2px;
    background: #fff;
    margin: 8px auto 20px;
  }
  .contact-details {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .contact-details a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }
  .contact-details i {
    font-size: 16px;
  }

  /* Social icons */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0 20px;
  }
  .social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .social-icon i {
    font-size: 18px;
    color: inherit;
  }

  /* RERA text */
  .rera {
    font-size: 16px;
    margin-top: 8px;
    line-height: 1.4;
    font-weight: 500;
  }

  /* Bottom bar */
  .footer-bottom {
    background: #1f5a8a;
    padding: 12px 16px;
  }
  .footer-bottom p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
  }
  .footer-bottom a {
    color: #fff;
    text-decoration: underline;
  }
  .footer-bottom .sep {
    margin: 0 4px;
  }
}
/* // End footer section // */



@media only screen and (max-width: 767px) {
  .schedule-visit {
    display: none;
  }
}