:root {
  --parcelx-green: #1b5e20;
  --parcelx-light-green: #4caf50;
}

body {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 14px;
}

.hero-section {
  background: linear-gradient(135deg, var(--parcelx-green) 0%, #2e7d32 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--parcelx-green);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 20;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--parcelx-green);
}

.hero-reviews {
  display: inline-flex;
  align-items: center;
  margin-left: 2rem;
}

.hero-avatars {
  display: flex;
  margin-right: 1rem;
}

.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-reviews-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.navbar {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar.scrolled {
  background-color: white;
  position: fixed;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.scrolled .nav-link {
  color: #333 !important;
}

.nav-link:hover {
  opacity: 0.8;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-lets-talk {
  background-color: white;
  color: var(--parcelx-green) !important;
  border-radius: 50px;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.scrolled .btn-lets-talk {
  background-color: var(--parcelx-green);
  color: white !important;
}

.btn-lets-talk:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.progress {
  height: 20px;
}

.btn-katil {
  background-color: var(--parcelx-green);
  color: white;
  transition: all 0.3s ease;
}

.btn-katil:hover {
  background-color: var(--parcelx-light-green);
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2rem;
  color: var(--parcelx-green);
}

.portfolio-stats {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.stat-card {
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  background: #f8f9fa;
  margin-bottom: 15px;
}

.stat-card h4 {
  color: var(--parcelx-green);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.stat-card p {
  color: #666;
  margin: 0;
}

.chart-container {
  position: relative;
  height: 300px;
}

.portfolio-analysis {
  margin-top: 20px;
}

.analysis-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.analysis-icon {
  width: 30px;
  color: var(--parcelx-green);
}

.filter-section {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

#trendChart {
  max-height: 200px;
}

.social-links a {
  text-decoration: none;
}

.modern-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
  margin-bottom: 30px;
}

.modern-table th {
  background-color: #f8f9fa;
  color: #495057;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 15px;
  text-align: left;
}

.modern-table td {
  background-color: #ffffff;
  padding: 15px;
  vertical-align: middle;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.modern-table tr {
  transition: all 0.3s ease;
}

.modern-table tr:hover td {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table-icon {
  margin-right: 8px;
  font-size: 1.1rem;
  vertical-align: middle;
}

.progress {
  height: 8px;
  margin-top: 5px;
}

.btn-katil {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}

.footer-text {
  font-size: 0.9rem;
}

/* ------------------------------ Home Page ------------------------------ */
.home-step-title {
  color: var(--parcelx-green);
}

.step-line-design {
  width: 25px;
  height: 5px;
  border-radius: 10px;
  background: var(--parcelx-green);
}

/* ------------------------------ Land Details Page ------------------------------ */
.land-details-card {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
}

.land-details-card-sub-title {
  color: #004d40;
  font-weight: 600;
}

.land-details-header-info-container {
  background: #f8f9fa;
  border: 1px solid #dfdfdf;
}

.land-details-header-info-item {
  text-align: center;
}

.token-summary-item-container {
  height: 100%;
  padding: 10px;
  text-align: center;
  background: #f8f9fa;
}

.token-summary-item-icon {
  display: flex;
  align-items: center;
  margin-inline: auto;
  justify-content: center;
  width: 50px;
  height: 40px;
  max-width: 50px;
  font-size: 18px;
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 10px;
  background: #c6d5d2;
  color: var(--parcelx-green);
}

.token-summary-container-title-container {
  background: #004d40;
}

.token-summary-container-title {
  color: white;
  font-weight: 600;
}

.land-details-info-img {
  width: 100%;
  max-width: 500px;
}

.land-details-summary-item {
  width: 100%;
  margin: 10px;
  padding: 15px;
  max-width: 250px;
  text-align: center;
  background: #f8f9fa;
  border: 1px solid #dfdfdf;
}

/* ------------------------------ Digital Investment Page ------------------------------ */
.digital-service-nav {
  color: #ffffff;
  min-height: 7vh;
  background: var(--parcelx-green);
}

.digital-service-nav-icon {
  font-size: 20px;
}

.digitalService-chart {
  width: 100%;
  max-width: 300px !important;
}

.circular-svg {
  height: auto;
  width: 100%;
  max-width: 100px;
}

.circular-svg-title-label {
  color: #ffffff;
  text-align: center;
  margin-inline: auto;
  padding: 5px;
  max-width: 120px;
  border-radius: 15px;
  background: var(--parcelx-green);
}

.digitalInvestment-banner-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.digitalInvestment-banner-img-container::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 94, 32, 0.2);
}

.digitalInvestment-banner-img {
  object-fit: cover;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.digitalInvestment-ul li::marker {
  color: var(--parcelx-green);
}

/*! CSS 768px */
@media (min-width: 768px) {
  .digitalInvestment-banner-img-container {
    position: static;
    overflow: hidden;
    margin-inline: auto;
    max-width: 500px;
    border-radius: 5px;
  }

  .digitalInvestment-banner-img-container::before {
    display: none;
  }
}
