/* ===============================
   FUNDRAISING HERO SECTION
================================= */
.fr-hero-section {
  position: relative;
  height: 100vh;
  background: url('/assets/images/fundraise-hero.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Overlay */
.fr-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

/* Content */
.fr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.fr-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.fr-hero-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
.fr-hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.fr-btn-primary {
  background: #28a745;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  transition: 0.3s ease;
}

.fr-btn-primary:hover {
  background: #218838;
}

.fr-btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  transition: 0.3s ease;
}

.fr-btn-secondary:hover {
  background: #fff;
  color: #000;
}








/* ===============================
   FUNDRAISING INFO SECTION
================================= */
.fr-info-section {
  background: #ffffff;
  padding: 80px 20px;
}

.fr-info-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.fr-info-header {
  text-align: center;
  margin-bottom: 50px;
}

.fr-info-header h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 15px;
}

.fr-info-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  line-height: 1.6;
}

/* Grid */
.fr-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cards */
.fr-info-card {
  background: #f9f9f9;
  padding: 25px;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.fr-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #28a745;
}

.fr-info-card p {
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Hover Effect */
.fr-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}









/* ===============================
   FUNDRAISING GROWTH SECTION
================================= */
.fr-growth-section {
  background: #f8f9fa;
  padding: 80px 20px;
}

.fr-growth-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.fr-growth-header {
  text-align: center;
  margin-bottom: 50px;
}

.fr-growth-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.fr-growth-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* Content Layout */
.fr-growth-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Text */
.fr-year {
  margin-bottom: 25px;
}

.fr-year h3 {
  color: #28a745;
  margin-bottom: 8px;
}

.fr-year p {
  color: #444;
  line-height: 1.6;
}

/* Images */
.fr-growth-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Big Image */
.fr-img-big img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Small Grid */
.fr-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.fr-img-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

/* Hover Effect */
.fr-img-big img,
.fr-img-grid img {
  transition: 0.3s ease;
}

.fr-img-big img:hover,
.fr-img-grid img:hover {
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
  .fr-growth-content {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
  .fr-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fr-info-grid {
    grid-template-columns: 1fr;
  }

  .fr-info-header h2 {
    font-size: 2rem;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .fr-hero-title {
    font-size: 2.2rem;
  }

  .fr-hero-text {
    font-size: 1rem;
  }
}