/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

@layer utilities {
  .font-Playfair {
     font-family: "Playfair Display", serif;
  }

  .font-inter {
     font-family: "Inter", sans-serif;
  }
}

html{
  scroll-behavior: smooth;
}

.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


.btn-01{
  border-radius: 10px;
  background: linear-gradient(180deg, #C5A253 0%, #E9D7B8 100%);
  padding: 10px 20px;
  width: 190px; 
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.btn-02{
  border-radius: 10px;
  background: linear-gradient(180deg, #134F3D 0%, #3C6E5F 65.85%);
  padding: 10px 20px;
  width: 190px; 
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.home-banner-custom-nav-block{
  border-radius: 14px;
  border: 0.2px solid #C5A253;
  background: rgb(8 8 8 / 20%);
  backdrop-filter: blur(1.649999976158142px);
  padding: 26px;
  max-width: 392px;
  width: 100%;  
}

.iti {
            width: 100%;
        }

.error {
            border-color: #ef4444 !important;
        }


  .custom-pagination {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 32px;
        }
 
        .custom-pagination .pip {
            position: relative;
            height: 4px;
            border-radius: 50px;
            background: rgba(255, 238, 201, 0.4);
            overflow: hidden;
            cursor: pointer;
            transition: width 0.35s ease;
            width: 36px;
        }
 
        /* Active pip is wider and has a fill animation */
        .custom-pagination .pip.active {
            width: 72px;
            background: rgba(255, 238, 201, 0.25);
        }
 
        .custom-pagination .pip .fill {
            position: absolute;
            inset: 0;
            background: #C6A75E;
            border-radius: 50px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
 
        .custom-pagination .pip.active .fill {
            transform: scaleX(1);
            transition: transform var(--autoplay-delay, 4s) linear;
        }

.home-banner-form-block{
  border-radius: 20px;
border: 1.6px solid rgba(197, 162, 83, 0.30);
background: linear-gradient(90deg, rgba(197, 162, 83, 0.04) 0%, rgba(15, 76, 58, 0.04) 100%), rgba(15, 76, 58, 0.50);
box-shadow: 0 0 190.3px 0 rgba(197, 162, 83, 0.60);
}

#project-overview::before {
    transform: translate(0px, -60px);
    position: absolute;
    content: "";
    width: 100%;
    background-color: #14252E;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.project-list-top-block-item-content::before{
  position: absolute;
  content: "";
  border-radius: 10px 160px 10px 10px;
  background: linear-gradient(117deg, #FBF9F3 26.67%, #FBF9F3 100%);
  width: 100%;
  height: 80%;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.project-list-item-ft{
  border-radius: 10px;
  border-left: 1.6px solid #C5A253;
  background: linear-gradient(314deg, rgba(251, 249, 243, 0.10) 0%, rgba(0, 0, 0, 0.03) 100%);
}

.project-list-btm-shape {
    position: absolute;
    bottom: -1px;
    right: -1px;
    border-bottom-right-radius: 10px;
    z-index: 0;
}

.project-list-btm-shape img {
    border-bottom-right-radius: 10px;
}

button, a{
  cursor: pointer;
}
 
  /* Gold border ring on active thumb */
  .thumbSwiper .swiper-slide-thumb-active::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 3px solid #C5A253;
    pointer-events: none;
    z-index: 4;
    animation: thumbRingPulse 2s ease-in-out infinite;
  }
 
  /* "Now Playing" badge on active thumb */
  .thumb-active-badge {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    background: #C5A253;
    color: #0C1A2B;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
  }
  .thumbSwiper .swiper-slide-thumb-active .thumb-active-badge {
    display: block;
  }
 
  /* Pulse animation for ring */
  @keyframes thumbRingPulse {
    0%, 100% { box-shadow: inset 0 0 0 0 rgba(197,162,83,0); }
    50%       { box-shadow: inset 0 0 0 3px rgba(197,162,83,0.18); }
  }
 

 
  /* ── VIDEO MODAL ─────────────────────────────────────── */
  #videoModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  #videoModal.open { display: flex; }
 
  #modalBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 26, 43, 0.88);
    backdrop-filter: blur(6px);
  }
 
  #modalBox {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.55);
    background: #0C1A2B;
  }
 
  #modalIframeWrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  #modalIframeWrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
 
  #modalHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #0C1A2B;
  }
  #modalTitle  { color: #F4F1EC; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500; }
  #modalProject{ color: #C5A253; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400; margin-top: 2px; }
 
  #modalCloseBtn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(197,162,83,0.15);
    border: 1.5px solid rgba(197,162,83,0.4);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  #modalCloseBtn:hover { background: rgba(197,162,83,0.3); }
  #modalCloseBtn svg { width: 16px; height: 16px; }
 
 .Specifications-Features-tab-content-block-item { display: none; }
  .Specifications-Features-tab-content-block-item.active { display: block; }



  
  .card-wrap {
      background: #faf8f3;
      border-radius: 20px;
      box-shadow: 0 8px 60px rgba(45,95,42,0.10), 0 2px 12px rgba(0,0,0,0.06);
      overflow: hidden;
      max-width: 920px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
    }
 


 
    .project-title {
      color: #2D6253;
      font-family: "Playfair Display", serif;
      font-size: 30px;
      font-style: normal;
      font-weight: 600;
      line-height: 24px; /* 80% */
      margin-bottom: 24px;
    }
 
    .project-desc {
      color: rgba(12, 26, 43, 0.80);
      leading-trim: both;
      text-edge: cap;
      font-family: "Inter", sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 26px; /* 162.5% */
      margin-bottom: 32px;
    }
 /* ── Marquee outer clip ── */
    .marquee-outer {
        overflow: hidden;
        width: 100%;
    }

    /* ── Track: all sets side by side, animates left ── */
    .marquee-track {
        display: flex;
        flex-direction: row;
        gap: 12px;
        width: max-content;
        animation: marqueeScroll 35s linear infinite;
    }

    /*.marquee-track:hover {*/
    /*    animation-play-state: paused;*/
    /*}*/

    @keyframes marqueeScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-33.333%); }
    }

    /* ── Each mosaic set: a 5-col grid block ── */
    .mosaic-set {
        display: flex;
        flex-direction: row;
        gap: 12px;
        height: 452px; /* 220px + 12px gap + 220px */
        flex-shrink: 0;
    }

    /* ── Columns ── */
    .mosaic-col {
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex-shrink: 0;
    }

    .mosaic-col--small   { width: 200px; }
    .mosaic-col--tall    { width: 280px; }
    .mosaic-col--featured { width: 320px; }

    /* ── Cells ── */
    .mosaic-cell {
        height: 220px;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
    }

    /* Full-height cell spans both row heights */
    .mosaic-cell--full {
        height: 100%; /* fills the 452px mosaic-set height */
    }

    .mosaic-cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .tab-btn.active{
      border-radius: 26843500px;
      background: linear-gradient(90deg, #0F4C3A 0%, rgba(15, 76, 58, 0.80) 100%);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
      color: #C5A253;
      text-align: center;
      leading-trim: both;
      text-edge: cap;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px; /* 150% */
      padding: 10px 32px;
    }

    /* ── Tab show/hide ── */
    .gallery-tab-content {
        display: block;
        animation: tabFadeIn 0.4s ease;
    }

    .gallery-tab-content.hidden {
        display: none;
    }

    @keyframes tabFadeIn {
        from { opacity: 0; transform: translateY(8px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Active tab ── */
    .gallery-tab-block-list-item.active {
        background-color: #0E4638 !important;
        color: #FFD87F !important;
    }

    .gallery-tab-block-list-item:not(.active) h3 {
        color: #9D9D9D;
    }


    .loan-partner-item{
      width: 124px;
      height: 124px;
      border-radius: 26843500px;
      border: 1.6px solid rgba(197, 162, 83, 0.20);
      background: #FFF;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      position: relative;
    }

    .loan-partner-item img{
      width: 100px;
      object-fit: contain;
      margin-top: -15px;
    }

    .loan-partner-item h4{
      color: #0C1A2B;
      text-align: center;
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 16px; /* 133.333% */
      position: absolute;
      bottom: 20px;
    }

    .loan-partner-btm-block p{
      color: rgba(12, 26, 43, 0.60);
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px; /* 150% */
      padding: 30px 0;
    }

    button.btn-btm{
      color: #FFF;
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px; /* 150% */
      padding: 10px 32px;
      border-radius: 10px;
      background: linear-gradient(90deg, #0F4C3A 0%, rgba(15, 76, 58, 0.80) 100%);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    }
    ul#iti-0__country-listbox {
        width: 310px !important;
    }
    
    .iti__selected-dial-code {
        color: #fff !important;
    }

    
    /* ─── OVERLAY ─── */
    .overlay {
      position: fixed;
      inset: 0;
    background: rgba(15, 76, 58, 0.40);
    backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-y:scroll;
      /* Hidden state */
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
 
    .overlay.is-open {
      opacity: 1;
      pointer-events: all;
    }
 
    /* ─── MODAL ─── */
    .modal {
        border-radius: 20px;
        /*border: 1px solid #C9A961;*/
        background: #0F4C3A;
      border-radius: 8px;
      padding: 16px;
      width: 100%;
      max-width: 950px;
      position: relative;
      box-shadow: var(--shadow);
 
      /* Hidden state */
      transform: translateY(28px) scale(0.97);
      opacity: 0;
      transition:
        transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
        opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
 
    .overlay.is-open .modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
 
    /* Closing animation */
    .overlay.is-closing .modal {
      transform: translateY(16px) scale(0.98);
      opacity: 0;
      transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.6, 1),
        opacity 0.25s ease;
    }
    .overlay.is-closing {
      opacity: 0;
      transition: opacity 0.3s ease;
    }
 
    /* Accent line at top of modal */
    .modal::before {
      content: '';
      position: absolute;
      top: 0;
      left: 48px;
      right: 48px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.6;
      border-radius: 0;
    }
 
    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 32px;
      height: 32px;
      border: 1px solid var(--border);
      border-radius: 50%;
         border: 1px solid rgba(197, 162, 83, 0.20);
        background: rgba(15, 76, 58, 0.20);
        backdrop-filter: blur(10px);
      color:#fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: all 0.2s ease;
      line-height: 1;
    }
    .modal-close:hover {
      color: var(--text);
      border-color: rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
      transform: rotate(90deg);
    }
 
    .modal-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
      display: block;
    }
 

    .modal-body {
      font-size: 14px;
      line-height: 1.75;
      color: var(--muted);
      margin-bottom: 32px;
    }
 
    .modal-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 28px;
    }
 
 
 
 div#stickyModal {
    z-index: 100;
    border-radius: 140px;
    border: 1px solid rgba(197, 162, 83, 0.20);
    background: rgba(15, 76, 58, 0.20);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    color: white;
    border-radius: 6px;
    position: fixed;
    bottom: 20px;
    max-width: 750px;
    width: 95%;
    align-items: center;
    left: 50%;
    transform: translate(-50%, 0px);
}

#stickyModal {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#stickyModal.visible {
    opacity: 1;
    pointer-events: all;
}

.exclusive-p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0px;
}
.btn-flex {
    display: flex;
    align-items: center;
}


@media screen and (max-width: 1300px) {

    .home-banner-custom-nav-block{
      padding: 18px;
      max-width: 392px;
      width: 100%;  
    }

    .home-banner-form{
      right: 0;
    }
}





/* ── Mobile accordion panel ───────────────────────────── */

/* Hidden everywhere by default (md:hidden in Tailwind handles desktop,
   but we also need JS-driven open/close on mobile) */
.tab-mobile-content {
  overflow: hidden;
  max-height: 0;
  opacity: 1;
  transition: max-height 0.38s ease, opacity 0.25s ease;
}

.tab-mobile-content.open {
  max-height: 600px; /* tall enough for any panel */
}

div#map{
    z-index:0 !important;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

.project-list-img-block{
    animation: float 6s ease-in-out infinite;
}

.Amenities-block-item{
    position:relative;
    transition: .25s;
}



.Amenities-block-item::before{
    content:"";
    position:absolute;
    background: linear-gradient(90deg, rgba(197, 162, 83, 0.00) 0%, #C5A253 36.56%, #E9D7B8 56.71%, rgba(233, 215, 184, 0.00) 100%);
    width:0%;
    height:2px;
    bottom:0px;
    left:50%;
    transform: translateX(-50%);
    transition: .35s;
}

.Amenities-block-item:hover::before{
    width:90%;
    transition: .35s;

}

.chat-block {
  transition: .25s;
  position: fixed;
  z-index: 5;
  right: 2%;
    border: 1px solid rgba(197, 162, 83, 0.20);
    background: rgba(15, 76, 58, 0.20);
    backdrop-filter: blur(10px);
  border-radius: 27px;
  width: 50px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  grid-gap: 20px;
  top:45%;
}

.chat-block-item{
  position: relative;
  transition: .25s;
}

.chat-block-item a img {
  width: 20px;
  transition: .25s;
}
.chat-block-item:hover a img {
  width: 25px;
  transition: .25s;
}
.custom-chat-frame {
  display: none;
  opacity: 0;
}
a.chat-div {
  cursor: pointer;
}
#Sticky_Right {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#Sticky_Right.visible {
    opacity: 1;
    pointer-events: all;
}


/* Tailwind's md:hidden already hides .tab-mobile-content on desktop.
   The rules below are safety nets and mobile-only tweaks. */
@media (max-width: 767px) {

  /* Remove fixed height + scroll — content expands inline */
  .Specifications-Features-tab-title-block {
    height: auto !important;
    overflow-y: visible !important;
  }

  /* Drop the right-side divider — no right column on mobile */
  .Specifications-Features-tab-title-block-item
    > div:first-child {
    border-right: none !important;
  }

  #project-overview::before {
    transform: translate(0px, 0px);
  }

  .btn-01, .btn-02 {
      border-radius: 10px;
      padding: 8px 11px;
      width: 110px;
      font-size: 13.5px;
      line-height: 18px;
  }
  
  .exclusive-p{
      display:none;
  }
  
    div#stickyModal {
        padding: 12px 5px;
        bottom: 20px;
        max-width: 340px;
        width: 98%;
        bottom:10px;
    }
    
    .btn-01, .btn-02{
        padding: 10px 10px !important;
    }
}