 section {
  background: none;
 }
 .map-wrapper {
          position: relative;
          width: 100%; /* Adjust width as needed */
          margin: 0 auto;
         overflow: hidden;
         z-index: 1 ;
         transform: translateZ(0); /* Create new stacking context */
      }

      #map-image {
          display: block;
          width: 100%;
          height: auto;
      }

      .tooltip {
        font-size: 1.2vw;
        color: #212529;
        font-family: system-ui;
        border-color: #dee2e6 !important;
        font-weight: 400;
        position: absolute ;
        background-color: #f8f9fa;
        border: 1px solid #ccc;
        border-radius: 3px 3px 3px 3px;
        padding: 9px 9px 9px 9px;
        display: none;
        line-height: 1.5;
        pointer-events: auto;
        z-index: 999999 !important;
        max-width: 91vw;
        text-align: left;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        transition: all 0.4s;
        transform: translateZ(0);
      }
      .tooltip-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 99999;
  }
      .tooltip .sections {
        border-bottom: 1px solid #ccc;
        padding-bottom: 5px;
        margin-bottom: 5px;
          }

      .tooltip .sections:last-child {
          border-bottom: none; /* Remove bottom border for the last section */
          margin-bottom: 0;
      }

      .plot-overlay {
          position: absolute;
          box-sizing: border-box;
          pointer-events: none;
          display: flex; /* Enable Flexbox */
          justify-content: center; /* Center horizontally */
          align-items: center; /* Center vertically */
          z-index: 100;
      }

      .plot-details {
          position: fixed; /* Fixed positioning to stick to the left side */
          top: 20px; /* Adjust top position */
          left: 0;
          width: 300px; /* Adjust width */
          padding: 10px;
          background: #fff;
          border: 1px solid #ccc;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          display: none;
          z-index: 10; /* Ensure it appears above other elements */
      }
  .plotno {
          font-size: .7vw;
          font-weight: 700;
          color: black;
          margin: 0; /* Remove default margin */
          padding: 0; /* Remove default padding */
          text-align: center; /* Ensure text alignment */
          min-font-size: 14px;
      }
      @media (max-width: 767px) {
  .plotno {
      /* Mobile-specific size with same min/max limits */
      font-size: .6vw !important;
      font-weight: 500;
  }
}
      .red {
          border-color: red;
      }

      .white {
          border-color: white;
      }
  @media (max-width: 1200px) {
          .plotno {
              font-size: 1.2vw; /* Adjust for smaller screens */
          }
    .tooltip {
      font-size: 2.5vw;
    }
      }

      @media (max-width: 900px) {
          .plotno {
              font-size: 1.2vw; /* Adjust for even smaller screens */
          }
    .tooltip {
      font-size: 2.5vw;
    }
      }

      @media (max-width: 600px) {
          .plotno {
              font-size: 1.2vw; /* Larger relative font size for small screens */
          }
    .tooltip {
      font-size: 1.2vw;
        padding: 5px;
        line-height: .5;
        border-bottom: 1px solid #cccccc61;
        padding-bottom: 4px;
        margin-bottom: 4px;
    }
    }

      /* Animations */
      @keyframes fadeIn {
          from { opacity: 0; }
          to { opacity: 1; }
      }
      @keyframes scaleUp {
          from { transform: scale(0.8); }
          to { transform: scale(1); }
      }
   @media (max-width: 600px) {
      #banner_section {
        background-position: inherit;
      }
    }
    .style1 
    {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
    transition: 0.4s;
    padding: 10px 20px !important;
    border-radius: 4px;
  }
  tbody, td, tfoot, th, thead, tr {
  border-color: #27272887;
  border-style: solid;
  border-width: 1px;
  }  
  .table>:not(caption)>*>* {
    padding: .3rem .3rem;
    color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  }
  .plo t-overlay {
  border: 2px solid transparent;
  transition: border 0.2s ease;
}

/* Base Plot Styling */
.plot-overlay {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-blend-mode: multiply;
    position: relative;
    overflow: hidden;
}


.plot-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 75%);
    background-size: 4px 4px;
    opacity: 0.3;
}

/* Sold Plots */
.plot-overlay[style*="background-color: red"] {
  background: linear-gradient(145deg, #e74c3c 0%, #c0392b 100%) !important;

}

@media (max-width: 767px) {
    .plot-overlay[style*="background-color: red"]::after {
        content: none !important;
    }
}

/* Booked Plots */
.plot-overlay[style*="background-color: yellow"] {
    background: linear-gradient(145deg, #FFD700 0%, #FFAA00 100%) !important;
}

@media (max-width: 767px) {
    .plot-overlay[style*="background-color: yellow"]::after {
        content: none !important;
    }
}
/* Available Plots */
.plot-overlay[style*="background-color: white"] {
    background: linear-gradient(145deg, #2ecc71 0%, #27ae60 100%) !important;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

@media (max-width: 767px) {
    .plot-overlay[style*="background-color: white"]::after {
        content: none !important;
    }
}

/* Mortgaged Plots */
.plot-overlay[style*="background-color: darkgrey"] {
    background: linear-gradient(145deg, #A9A9A9 0%, #696969 100%) !important;
    box-shadow: 0 4px 15px rgba(105, 105, 105, 0.3); /* subtle grey shadow */
}

@media (max-width: 767px) {
    .plot-overlay[style*="background-color: darkgrey"]::after {
        content: none !important;
    }
}

/* Plot Numbers */
.plotno {
    color: #fff !important;
    font-family: 'Arial Rounded MT Bold', sans-serif;
    transform: translateZ(0);
}


.plot-overlay[style*="background-color: red"] .plotno {
    color: #ffffff;
}
/* Highlight Effect */
.plot-overlay.highlight {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
  
}
@media (max-width: 600px) {
    .iframe-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        max-width: 100%;
    }
    .iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
.iframe-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;   /* modern & zoom-safe */
    overflow: hidden;
    border-radius: 8px;    /* optional */
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.property-section .property-content {
    background-color: #f4f4f496 !important;
    padding: 20px !important;
    border-radius: 0px !important;
    margin-bottom: 30px !important;
}
.property-section .property-content h2 {
    padding-left: 0px !important;
}
.about-section .about-content .about-text h4 {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 400;
}
@media (max-width: 600px) {
    .iframe-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        max-width: 100%;
    }
    .iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}


@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}

@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}

.highlight-box {
  position: absolute;
background-color: rgba(255, 255, 0, 0.3);
pointer-events: none;
display: none;
animation: blink 1s linear 3;
z-index: 1001 !important; /* Higher than plot overlays */
box-sizing: border-box; /* Ensures width/height includes border */
  border-radius: 4px; /* Optional: rounded corners */
}

.highlight-button {
position: fixed;
left: 10px;
width: auto;
min-width: 80px;
padding: 6px 12px;
font-size: 14px;
font-weight: 600;
color: white;
background: linear-gradient(135deg, #0c498b, #0c498b);
border: none;
border-radius: 6px 6px 6px 6px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
cursor: pointer;
transition: all 0.3s ease-in-out;
z-index: 999;
}


.highlight-button:hover {
transform: scale(1.05);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.highlight-button:active {
transform: scale(0.97);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .highlight-button {
      font-size: 8px;
      padding: 5px 5px;
      left: 5px;
      min-width: 40px;
  }
#btn-1 { bottom: 70% !important; }
#btn-2 { bottom: 66% !important; }
#btn-3 { bottom: 62% !important; }
}

.highlight-text {
position: absolute;
padding: 4px 6px;
margin-top: 50px;
margin-left: 50px;
font-size: 1vw;
color: black;
font-weight: bold;
background-color: rgba(255, 255, 255, 0.7);
z-index: 1002;
pointer-events: none;
}
@media (max-width: 768px) {
.highlight-text {
margin-top: 20px;
margin-left: 20px;
}
}

#openModalLink {
  color: #F36A10 !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  .plot-overlay {
    pointer-events: auto !important;
  }
}
@media only screen and (max-width: 767px) {
    .about-section .about-content h2 {
        margin: 0 0 10px 0;
        font-size: 1.5rem;
    }
}
.img-zoom-container {
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.11),
  0 1px 2px rgba(0,0,0,0.11);
  overflow: hidden;
  width: 100%;
  height: 430px;       /* fixed box height */
  border-radius: 8px;
  cursor: grab;
  display: flex;
  justify-content: center;
  align-items: center;
  touch-action: none; /* prevent scroll on drag */
}

.zoom-img {
  height: 100%;
  width: auto;          /* keeps aspect ratio */
  object-fit: contain;  /* ensures no distortion */
  transition: transform 0.3s ease;
  will-change: transform;
}
.map-tooltip a {
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.map-badge {
    background: #28a745;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
}

.tooltip-text {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #0c498b;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Show tooltip on hover */
.map-tooltip a:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
.chowk-icon {
    width: 22px;  /* adjust to match your icofont icons */
    height: 22px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px; /* spacing between icon and text */
    transition: transform 0.3s ease;
  }
  
  /* Optional hover bounce effect */
  .about-text:hover .chowk-icon {
    transform: scale(1.2);  /* subtle zoom/bounce on hover */
  }
  .img-zoom-container {
    position: relative;
    overflow: hidden;
  }
  
  .img-magnifier-glass {
    position: absolute;
    border: 1px solid #0c498b;
    cursor: none;
    width: 180px;
    height: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    background-repeat: no-repeat;
    display: none;
    z-index: 20;
  }
  
  @media (max-width: 768px) {
    .img-magnifier-glass {
      display: none !important;
    }
  }
  #zoomWrapper {
    touch-action: pan-y;
  }
  #mobileZoomImage {
    transition: transform 0.2s ease;
  }
  #mobileZoomImage {
    touch-action: pan-y pinch-zoom;
  }
  #zoomWrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #mobileZoomImage {
    max-width: 100%;
    max-height: 100%;
    transform-origin: center;
    cursor: grab;
    user-select: none;
  }
  
  /* Close button always on top */
  .modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1056;
  }
  .about-content {
    margin-bottom:30px;
  }
  .zoom-img {
    touch-action: pan-y;
  }
  
  #magnifierImage {
    touch-action: auto !important;
    pointer-events: auto;
  }
  .img-zoom-container {
    pointer-events: auto;
  }
  
  @media (max-width: 768px) {
    #magnifierImage {
      touch-action: pan-y !important;
    }
  
    .img-zoom-container {
      touch-action: pan-y !important;
    }
  }
    
  .about-text {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .about-text i {
    font-size: 34px;
    color: #0c498b;
    transition: all 0.3s ease;
  }
  
  .about-text:hover i {
    color: #5fa8ff;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 6px 18px rgba(95, 168, 255, 0.5);
  }
  