/* Builds on your existing styles */
.solutions-hero {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.solution-container {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 2rem;
    border-top: 4px solid;
}

.solution-card.emergency {
    border-color: #f72585;
}

.solution-card.pledge {
    border-color: #4cc9f0;
}

.solution-card.calculator {
    border-color: #4895ef;
}

.pledge-counter {
    font-size: 1.2rem;
    text-align: center;
    margin: 1rem 0;
}

#pledgeCount {
    font-weight: bold;
    color: #f72585;
    font-size: 1.5rem;
}

/* Slider Styles */
.slider {
    width: 100%;
    margin: 1rem 0;
}

.result {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1.5rem;
}

#lossAmount {
    font-weight: bold;
    color: #f72585;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .solution-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-card:last-child {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .solution-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solution-card:last-child {
        grid-column: auto;
    }
}
/* Video Quote Section Styles */
.video-quote-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  color: white;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.quote-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.quote-box {
  max-width: 800px;
  animation: fadeIn 1.5s ease-in-out;
}

.quote-text {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.highlighted-text {
  color: #FFD700; /* Gold color */
  background-color: rgba(220, 53, 69, 0.7); /* Semi-transparent red */
  padding: 0 15px;
  border-radius: 5px;
  display: inline-block;
  margin: 5px 0;
}

.quote-mark {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  vertical-align: middle;
}

.quote-author {
  font-size: 1.8rem;
  font-style: italic;
  margin-top: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Animation for fade in effect */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .quote-text {
    font-size: 3rem;
  }
  .quote-mark {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .quote-text {
    font-size: 2.2rem;
  }
  .highlighted-text {
    padding: 0 10px;
  }
  .quote-author {
    font-size: 1.4rem;
  }
}