/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 9, 2026, 2:01:37 AM
    Author     : myski
*/

    .trust-bar {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.trust-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}

.trust-item {
  flex: 1;
  min-width: 180px;
  font-weight: 500;
  font-size: 14px;
  color: #222;
  padding: 10px;
  border-radius: 10px;
  background: #fafafa;
  transition: 0.3s;
}

.trust-item:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.stats-section {
  padding: 70px 20px;
  background: #031328;
  color: #fff;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.stat {
  flex: 1;
  min-width: 180px;
}

.stat h2 {
  font-size: 40px;
  color: #d9a529;
}
.testimonials {
  padding: 70px 20px;
  background: #f8f9fb;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.testimonial {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.donation-goal {
  padding: 60px 20px;
  text-align: center;
}

.goal-box {
  max-width: 700px;
  margin: auto;
}

.progress {
  width: 100%;
  height: 12px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px 0;
}

.progress-fill {
  width: 75%;
  height: 100%;
  background: #d9a529;
}
.partners {
  padding: 40px 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

.partner-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.partner-row img {
  height: 40px;
  opacity: 0.7;
  transition: 0.3s;
}

.partner-row img:hover {
  opacity: 1;
  transform: scale(1.05);
}
 
