html, body {
  max-width: 100%;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}
/* MAIN IMAGE BACKGROUND */
    .image-container {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

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

    /* SVG POLYGONS */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    polygon {
  pointer-events: all !important;
  cursor: pointer;
}
    /* Default polygon styles */
    polygon {
      fill: rgba(199, 167, 133, 0);
      stroke: none;
      cursor: pointer;
      transition: fill 0.3s;
    }

    polygon:hover {
      fill: rgba(199, 167, 133, 0.5);
      stroke: #fff;
      stroke-width: 3.0;
    }

    /* ✅ FIXED: Special styles for navigable polygons only */
    polygon[data-navigation="true"]:hover {
      fill: rgba(199, 167, 133, 0.5) !important;
      stroke: #fff !important;
      stroke-width: 3 !important;
      filter: drop-shadow(0 0 15px rgba(199, 167, 133, 0.8));
    }

    /* INFO BOX */
    .info-box {
      position: absolute;
      background: rgba(61, 35, 20, 0.9);
      color: #fff;
      padding: 5px 10px;
      border-radius: 8px;
      border: 2px solid #c7a785;
      display: none;
      max-width: 300px;
      font-family: 'Roboto';
      z-index: 1001;
    }

    .info-box h3 {
      margin: 0px !important;
      margin-bottom: 3px !important;
      font-family: 'Roboto';
      font-size: 20px !important;
      color: #c7a785;
    }
    .info-box p {
      margin: 0px !important;
      margin-bottom: 3px !important;
      font-family: 'Roboto';
      font-size: 14px !important;
    }

    /* BOTTOM PROJECT CARD */
    .project-card {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
      color: #fff;
      border-radius: 20px;
      max-width: 420px;
      font-family: 'Roboto';
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border: 2px solid #c7a785;
      z-index: 1002;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .card-header {
      background: linear-gradient(135deg, #c7a785 0%, #b8956f 100%);
      color: #2c1810;
      padding: 3px 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .card-header:hover {
      background: linear-gradient(135deg, #d4b893 0%, #c5a27d 100%);
    }

    .card-title {
      font-size: 1.1rem;
      font-weight: bold;
      margin: 0;
    }

    .toggle-btn {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #2c1810;
      cursor: pointer;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .toggle-btn:hover {
      background: rgba(44, 24, 16, 0.1);
      transform: scale(1.1);
    }

    .card-content {
      padding: 15px;
      transition: all 0.4s ease;
      max-height: 300px;
      opacity: 1;
	  padding-bottom: 20px;
    }

    .card-content.collapsed {
      max-height: 0;
      padding: 0 2rem;
      opacity: 0;
      overflow: hidden;
    }

    .project-title {
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: #c7a785;
    }

    .project-location {
      font-size: 1rem;
      margin-bottom: 0.8rem;
      color: #e6d4c1;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
	  font-family: 'Roboto';
    }

    .location-icon {
      font-size: 0.9rem;
    }

    .project-tagline {
      font-size: 1rem;
      font-style: italic;
      margin-bottom: 0.5rem;
      color: #d4b893;
      font-weight: 500;
    }

    .project-stats {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }

    .stat-item {
      text-align: left;
      flex: 1;
    }

    .stat-number {
      font-size: 1.1rem;
      font-weight: bold;
      color: #c7a785;
      display: block;
		    font-family: 'Roboto';
    }

    .stat-label {
      font-size: 0.85rem;
      color: #b8a898;
      margin-top: 0.3rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .stat-divider {
      width: 1px;
      height: 45px;
      background: linear-gradient(to bottom, transparent, #c7a785, transparent);
      opacity: 0.6;
    }

    .card-footer {
      padding: 0 2rem 1.5rem;
      border-top: 1px solid rgba(199, 167, 133, 0.2);
      margin-top: 0.5rem;
      padding-top: 1rem;
    }

    .feature-pills {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .pill {
      background: rgba(199, 167, 133, 0.2);
      color: #c7a785;
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.75rem;
      border: 1px solid rgba(199, 167, 133, 0.3);
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
      .header {
        padding: 1rem;
      }
      
      .nav-menu {
        gap: 1rem;
      }
      
      .nav-menu a {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
      }
      
      .project-card {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
      }
      
      .card-content {
        padding: 1.5rem;
      }
      
      .project-stats {
        gap: 1rem;
      }
      
      .stat-number {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      .logo {
        font-size: 1.5rem;
      }
      
      .nav-menu {
        gap: 0.5rem;
      }
      
      .nav-menu a {
        font-size: 0.8rem;
        padding: 0.2rem 0.3rem;
      }
      
      .project-title {
        font-size: 1.2rem;
      }
      
      .project-stats {
        flex-direction: column;
        gap: 1rem;
      }
      
      .stat-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, #c7a785, transparent);
      }

      .card-content {
        padding: 1rem;
      }
    }



