body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


:root {
  --primary: #2d9d3e;
  --secondary: #37446b;
  --primary-light: #3db34f;
  --gold: #d4af37;
  --gold-light: #e6c758;
  /* --third: #878787;
  --four: #1d1d1b;
  --five: #c7a56d; */
}

html {
  scroll-padding-top: 120px; /* Adjust this to match your navbar height */
  scroll-behavior: smooth;
}

.headline{
 position:relative;
 display:inline-block

}

.circle-bg {
  position: absolute;
  top: -100;
  left: 0;
  width: 200px;
  height: 200px;
  background: var(--primary);
  border-radius: 50%;
  z-index: -1;
}

.circle-text {
  position: relative;
  padding: 45px;
  color: white!important;
}
/* .herostats {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border: solid white 2px;
} */

.herostats {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(30px);
  padding: 35px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  position: relative;
}

.herostats::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.luxury-badge {
  text-align: center;
  margin-bottom: 25px;
}

.luxury-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 6px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.luxury-badge-icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxury-badge-icon i {
  color: #000;
  font-size: 0.9rem;
}

.luxury-badge-text {
  font-size: 0.65rem;
  color: #000;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Stats Enhancement - Compact Vertical Layout */
.stats-container {
  margin-bottom: 25px;
}

.primary-stat {
  text-align: center;
  margin-bottom: 20px;
}

.primary-stat-label {
  font-size: 0.65rem;
  color: #999;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.primary-stat-value {
  font-size: 3.5rem;
  font-weight: 200;
  color: #000;
  line-height: 1;
  position: relative;
}

.primary-stat-suffix {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
}

.secondary-stats-minimal {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding: 20px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 25px;
}

.minimal-stat {
  text-align: center;
}

.minimal-stat-value {
  font-size: 1.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 6px;
}

.minimal-stat-label {
  font-size: 0.65rem;
  color: #999;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Trust Minimal for Hero - Compact */
.trust-minimal {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg,
              rgba(45, 157, 62, 0.05) 0%,
              rgba(212, 175, 55, 0.05) 100%);
  border-radius: 10px;
  border-left: 3px solid var(--primary);
  margin-bottom: 20px;
}

.trust-minimal i {
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-minimal-text {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.trust-minimal-highlight {
  color: var(--primary);
  font-weight: 700;
}

.investBtn {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 2px;
  padding: 15px 35px !important;
  border-radius: 50px !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(45, 157, 62, 0.25) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  /* white-space: nowrap; */
  width: 100%;
}

.investBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.5s;
}

.investBtn:hover::before {
  left: 100%;
}

.investBtn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(45, 157, 62, 0.35) !important;
}

.investBtn:active {
  transform: translateY(-1px) !important;
}

.btn-link-minimal {
  display: inline-block;
  text-align: center;
  color: #666 !important;
  text-decoration: none !important;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.btn-link-minimal:hover {
  color: var(--primary) !important;
  border-bottom-color: var(--primary);
}

.btn-link-minimal i {
  margin-right: 5px;
  font-size: 0.8rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-minimal {
  text-align: center;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid #e8e8e8;
}

.footer-minimal-count {
  font-size: 1rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 0;
}

.footer-minimal-count strong {
  font-weight: 600;
  color: var(--primary);
}

.chart {
  width: 50%;
  float: left;
  display: grid;
  gap: 1em;
  grid-template-rows: min-content minmax(0, 1fr) min-content;
  grid-template-columns: 1fr minmax(0, 3fr);
  grid-template-areas:
    'a h'
    'a c'
    'a f';
  height: calc(100vh - 2em);
  /*width: calc(100vw - 2em);  not necessary, but just to be explicit */
  height: 400px;
  margin: 1em;
  max-width: 950px;
  border: 1px solid #134369;
  border-radius: 10px;
  margin: 2%;
}

.chart div {
  grid-column: 1/4;
  grid-row: 2/3;
}
.chart h3 {
  background: var(--color-1);
  color: #000;
  line-height: 1.3;
  padding: 0.2em;
  text-align: center;
  grid-row: 1/2;
  grid-column: 1/4;
  text-align: center;
}

.preicons {
  display: block;
  text-align: right;
  margin-top: -25px;
}

.prephoneemail {
  margin-top: 15px;
}

.flex-wrapper {
  display: flex;
  flex-flow: row nowrap;
}

.single-chart {
  width: 33%;
  justify-content: space-around;
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 150px;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart.orange .circle {
  stroke: #ff9f00;
}

.circular-chart.green .circle {
  stroke: #4cc790;
}

.circular-chart.blue .circle {
  stroke: #3c9ee5;
}

.percentage {
  fill: #666;
  font-family: sans-serif;
  font-size: 0.5em;
  text-anchor: middle;
}

.accordion-button, .accordion-button:not(.collapsed) {
  background-color: var(--secondary)!important;
  color:white!important
}

.accordion-button::after,.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

td {
  border-right: black solid 2px;
}

.investhead{
  width:40vw;
}

/* @media screen and (max-width:480px){
  .investhead{
    width:80vw;
  }
} */

@media screen and (max-width: 680px){
  .investtag{
    /* margin-top:-30px; */
  }
  .uselogo{
    width:50vw!important;
  }
   .herostattext {
    font-size: 1rem;
  }
.bizName2{
  font-size:0.75rem;
}
}

@media screen and (max-width: 410px){

  .graph{
    font-size: x-small!important;
  }
   .investhead{
    width:80vw;
  }
    .herostattext {
    font-size: 1rem;
  }
      .herostattext2 {
    font-size: 1.5rem;
  }
.bizName2{
  font-size:0.75rem;
}
}
