   :root{
      --accent: rgb(43, 197, 151);
      --dark:#0f1723;
      --muted:#6b7280;
      --card:#ffffff;
      --glass: rgba(255,255,255,0.85);
      --radius:12px;
      --shadow: 0 6px 18px rgba(15,23,35,0.08);
      --max-width:1200px;
      --gap:18px;
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
    }
    *{box-sizing:border-box}
    body{
      margin: 0;
      padding: 0;
      width: 100%;
      overflow-x: hidden;
      padding-top: 90px;
      margin:0;
      background:rgb(43, 197, 151);
      color:var(--dark);
      -webkit-font-smoothing:antialiased
    
    }
    .container{
        max-width:var(--max-width);
        margin:36px auto;
        padding:0 0px
    }

    /* Header */
    header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 90px;
        padding: 0 18px;
        z-index: 1000; /* ensures it stays on top of other content */
        box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* optional shadow for separation */
        background-color: rgb(52, 247, 175);
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:12px
        
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px
    }
    .logo{
      width:120px;
      height:44px;
      display:grid;
      place-items:center
    }
    nav{
      display:flex;
      gap:16px;
      align-items:center
    }
    nav a{
      color:var(--dark);
      text-decoration:none;
      font-weight:600
    }
    nav a:hover{
      color: #05b66f;
    }
    .cta{
      background:var(--accent);
      color:#ffea00;
      padding:10px 14px;
      border-radius:10px;
      text-decoration:none
    }
    .cta:hover {
      background: #05b66f;
      color: var(--primary);
    }

    /* Hero */
    :root {
  --card: #fff;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --accent: #1c8870;
  --muted: #6b7280; 
}

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 20px;
  background: url('../your-background.jpg') center/cover no-repeat;
  color: #000000;
  width: 100%;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr; /* single column for mobile */
    text-align: center;
    gap: 16px;
    padding: 12px;
    width: 100%;
  }
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #000;
  opacity: 89%;
  width: 95%;
  align-items: center;

}

.hero-card h1 {
  margin: 0 0 8px 0;
  font-size: 2rem;
  width: 90%;
}

.hero-card .muted {
  color: var(--muted);
  margin-bottom: 16px;
  width: 90%;
}

.search-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.search-row input,
.search-row select {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e6e9ef;
}

.search-btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.chip {
  padding: 6px 12px;
  border-radius: 10px;
  background: #f1f5f9;
  opacity: var(--glass);
  cursor: pointer;
  font-size: 0.9rem;
}

.chip.active {
  background: var(--accent);
  color: #fff;
}

.stats-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  width: 80%;
}

.stats-info {
  flex: 1;
  background: #0000007b;
  padding: 10px;
  border-radius: 10px;
}

.stats-sort {
  font-size: 13px;
  color: var(--muted);
}

aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-info .stat {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.quick-contact {
  padding-top: 8px;
}

.quick-contact form input {
  width: 80%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid #000000;
  opacity: 89%;
}

.quick-contact button {
  width: 60%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  justify-items: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  aside {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero-card {
    margin: 0 auto;
  }
}


    /* Filters */
    .filters{
      display:flex;
      gap:10px;
      margin:16px 0;
      flex-wrap:wrap
    }
    .chip{
      padding:8px 12px;
      border-radius:999px;
      border:1px solid #e6e9ef;
      background:#fff;
      cursor:pointer
    }
    .chip.active{
      background:var(--accent);
      color:white;
      border-color:transparent
    }

    /* Grid */
    .grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:var(--gap);
      margin-top:20px
    }
    .card{
      background:var(--card);
      border-radius:12px;
      overflow:hidden;
      box-shadow:var(--shadow);
      display:flex;
      flex-direction:column
    }
    .thumb{
      height:180px;
      background-size:cover;
      background-position:center
    }
    .card-body{
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:8px
    }
    .price{
      font-weight:800;
      font-size:1.1rem;
      color:var(--accent)
    }
    .meta{
      color:var(--muted);
      font-size:0.9rem
    }
    .actions{
      margin-top:auto;
      display:flex;
      gap:8px
    }
    .btn{
      padding:8px 10px;
      border-radius:8px;
      border:1px solid #e6e9ef;
      background:white;
      cursor:pointer
    }
    .btn.primary{
      background:var(--accent);
      color:#fff;
      border:none
    }

    /* Sidebar */
    aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  aside {
    flex-direction: column;
    width: 100%;
  }
}

    .stat{
      display:flex;
      justify-content:space-between;
      padding:10px 0;
      border-bottom:1px dashed #000000
    }

    /* About */
    .about{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
      margin-top:20px
    }
    .about .card{
      padding:18px
    }

    /* Modal */
    .modal-backdrop{
      position:fixed;
      inset:0;
      background:rgba(2,6,23,0.5);
      display:none;
      align-items:center;
      justify-content:center;
      padding:20px
    }
    .modal{
      background:var(--card);
      border-radius:12px;
      max-width:900px;
      width:100%;
      box-shadow:var(--shadow);
      overflow:hidden
     }
    .modal .gallery{
      display:grid;
      grid-template-columns:1fr 280px
    }
    .gallery .big{
      height:360px;
      background-size:cover;
      background-position:center
    }
    .gallery .list{
      display:flex;
      flex-direction:column;
      gap:8px;
      padding:14px
    }
    .gallery .list img{
      height:80px;
      width:100%;
      object-fit:cover;
      border-radius:8px
    }
    .modal .content{
      padding:18px
    }

    

    /* Responsive */
    @media(max-width:1000px){
      .hero{grid-template-columns:1fr}
      .about{grid-template-columns:1fr}
      .grid{grid-template-columns:repeat(2,1fr)}
    }
    @media(max-width:640px){
      .grid{grid-template-columns:1fr}
      nav{display:none}
      .mobile-nav{display:flex;gap:10px}
      .logo{width:92px}
    }
    img, iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1000px) { .grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }

/* Hide mobile menu by default */
.mobile-nav {
  display: none;
  position: relative;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--card);
  position: absolute;
  top: 100%;
  right: 0;
  width: 300%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.mobile-menu a {
  padding: 10px 16px;
  display: block;
  text-decoration: none;
  color: var(--dark);
}

.mobile-menu a.cta {
  background: var(--accent);
  color: #fbff00;
  margin: 4px 12px;
  text-align: center;
  border-radius: 8px;
}
.mobile-menu a:hover{
  color: #05b66f;
}

/* Responsive breakpoints */
@media (max-width: 640px) {
  nav.desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
}

/* For the Map + Contact Section */
.map-contact-section {
  display: grid;
  grid-template-columns: 1fr 360px; /* desktop layout */
  gap: 20px;
  margin-top: 26px;
  align-items: start;
}

.map-contact-section a{
  text-decoration: none;

}

/* Make sure iframes are responsive */
.map-contact-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/* Responsive for mobile */
@media (max-width: 640px) {
  .map-contact-section {
    grid-template-columns: 1fr; /* stack cards vertically */
  }

  .map-contact-section .hero-card {
    width: 100%; /* cards take full width */
    margin: 0 auto;
  }

  .map-contact-section iframe {
    min-height: 300px; /* keep map visible */
  }
  .a {
    text-decoration: none;
  }
}

@font-face {
    font-family: 'poppins';
    src: url('fonts/Poppins-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.hero-card h1 {
    font-family: 'poppins', cursive;
    font-size: 3rem; /* adjust for desktop */
    color: #1c8870;  /* your accent color */
    margin: 0 0 16px 0;
    text-align: center;
}



@media (max-width: 900px) {
    .hero-card h1 {
        font-size: 2rem; /* smaller on mobile */
    }
}

/* Preloader container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #a3feea; /* or match your page background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner animation */
.spinner-logo {
  width: 100px; /* adjust size */
  height: 100px;
  animation: spin 0.5s linear infinite;
}

/* Spin keyframes */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


   /* General Floating Button Styles */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Ensure it’s above other elements */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #333; /* Default color for buttons */
}

.floating-button img {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

.floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* Specific Button Colors */
.whatsapp {
  background-color: #25d366; /* WhatsApp green */
}

.cursor-ball {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: rgb(43, 197, 151);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    width 0.2s ease,
    height 0.2s ease,
    background-color 0.3s ease;
  z-index: 9999;
}

/* When moving, fade in */
.cursor-ball.active {
  opacity: 1;
}

/* Optional hover grow effect */
a:hover ~ .cursor-ball,
button:hover ~ .cursor-ball {
  width: 25px;
  height: 25px;
  background-color: rgba(43, 197, 151, 0.7);
}

 /* Fade animation for cards */
    .card {
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    /* Modal gallery swiper */
    .swiper {
      width: 100%;
      height: 300px;
    }
    .swiper-slide img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
    }
    .swiper-button-next,
    .swiper-button-prev {
      color: white;
    }
    .swiper-pagination-bullet-active {
      background: #2bc597;
    }

    .featured-property {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
  }

  .featured-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }

  .featured-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .featured-info {
    padding: 2rem;
  }

  .featured-info h2 {
    font-size: 1.8rem;
    color: #2b2b2b;
  }

  .price {
    color: rgb(43,197,151);
    font-weight: bold;
    margin: 0.5rem 0 1rem;
  }

  .description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .whatsapp-btn {
    display: inline-block;
    background: rgb(43,197,151);
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
  }

  .whatsapp-btn:hover {
    background: #24b38a;
  }

  @media (min-width: 768px) {
    .featured-card {
      flex-direction: row;
    }

    .featured-card img {
      width: 50%;
      height: auto;
    }

    .featured-info {
      width: 50%;
    }
  }

  /* ==================== FOOTER STYLES ==================== */
  .footer {
    background: rgb(112, 158, 144);
    color: #ffffff;
    padding: 4rem 1.5rem 1.5rem;
    font-family: 'Poppins', sans-serif;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-col h3 {
    color: rgb(0, 0, 0);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .footer-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0.6rem 0;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-col p img {
  width: 22px;        /* Adjust to your liking */
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;     /* prevents distortion */
  vertical-align: middle;
}

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.7rem;
  }

  .footer-col ul li img {
    width: 18px;
    height: 18px;
  }

  .footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: rgb(0, 0, 0);
  }
  .footer-col p a {
    text-decoration: none;
    color: #0f1723;
  }

  .footer-logo {
    width: 160px;
    margin-bottom: 1rem;
  }

  .social-links {
    margin-top: 1.2rem;
    display: flex;
    gap: 12px;
  }

  .social-links a img {
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
  }

  .social-links a:hover img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(54%) sepia(90%) saturate(400%) hue-rotate(95deg);
  }

  .footer-bottom {
    border-top: 3px solid rgba(0, 0, 0, 0.817);
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #ffffff;
  }

  .footer-bottom a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
  }

  .footer-bottom a:hover {
    text-decoration: underline;
  }