/* General typography */
body {
  font-family: 'Roboto', sans-serif;
}

/* Hero gradient styling */
.hero {
  /* background: linear-gradient(to right, #1d4ed8, #9333ea); */
  background-color: #094ae2;
}

.dark-blue {
  background-color: #0e1a25;
}

.medium-blue {
  background-color: #032a55;
}

.text-blue {
  color: #032a55;
}

.color-dark-blue {
  color: #0e1a25;
}

.custom-bedge {
  background-color: #fdf5ef;
}

/* Card styling */
.card {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Chart container ensures charts fill the available space */
.chart-container {
  position: relative;
  width: 100%;
  height: 14rem;
}

.w-850 {
  max-width: 850px;
}

.w-600 {
  max-width: 600px;
}

.bg-green-300 {
  background-color: #87c98a;
}
.cta-form {
  background-color: #ffc83a;
}

.text-yellow-800 {
  background-color: #ffdf8b;
}

.custom-yellow {
  background-color: #FDD26C;
}

.pink-300 {
  color: #ff8Da1;
}

.bg-red-300,
.text-red-800 {
  background-color: #ffb5ad;
}

.bg-green-horse-stone {
  /* background-color: rgb(20, 124, 117); */
  background: linear-gradient(to right, rgb(40, 146, 132), rgb(1, 86, 91));
}

.plus-top-25 {
  margin-top: 25px;
}

.minus-top-25 {
  margin-top: -25px;
}

.custom-svg {
  width: 500px;
  height: 250px;
}

.review-text {
  max-height: 4.5em; /* ~3 lines if line-height is ~1.5 */
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
  line-height: 1.5em;
}

.review-text.expanded {
  max-height: 1000px; /* large enough to fit all text */
}

.read-toggle {
  cursor: pointer;
  color: #059669; /* Tailwind green-600 */
  font-weight: 600;
  margin-top: 0.5rem;
  background: none;
  border: none;
}

.custom-svg-2 {
  width: 40px;
  height: 40px
}

.custom-svg-3 {
  width: 30px;
  height: 30px
}

@media (max-width: 767px) {
  .custom-svg {
    width: 150px;
    height: 150px;
  }

  .custom-svg-2 {
    width: 20px;
    height: 20px
  }

  .custom-svg-3 {
    width: 55px;
    height: 55px
  }
}