﻿
.helping-fund {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}
.helping-fund .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}
.fund-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.fund-content {
  flex: 1;
}
.fund-content h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 15px;
}
.fund-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.fund-content ul {
  list-style: none;
  padding: 0;
}
.fund-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}
.fund-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}
@media(max-width: 768px) {
  .helping-fund .container {
    flex-direction: column;
    text-align: center;
  }
  .fund-content ul li {
    text-align: left;
  }
}



		  .awards {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}
.awards h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c3e50;
}
.awards-table {
  width: 100%;
  max-width: 950px;
  margin: auto;
  border-collapse: collapse;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.awards-table thead th {
  background: #f39c12;
  color: #fff;
  padding: 14px;
  text-transform: uppercase;
  font-size: 16px;
}
.awards-table td {
  padding: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}
.awards-table tbody tr:nth-child(odd) {
  background: #1abc9c;
  color: #fff;
}
.awards-table tbody tr:nth-child(even) {
  background: #a3d39c;
  color: #000;
}
.awards-table img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #fff;
}



		  .salary-plan {
  padding: 40px 20px;
  background: #b023b3;
  text-align: center;
  font-family: Arial, sans-serif;
}
.salary-plan h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}
.salary-plan table {
  width: 100%;
  max-width: 900px;
  margin: auto;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.salary-plan th,
.salary-plan td {
  padding: 15px;
  text-align: center;
  font-size: 16px;
}
.salary-plan thead th {
  background: #4881ed;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}
.salary-plan tbody tr:nth-child(even) {
  background: #eafaf1;
}
.salary-plan tbody tr:nth-child(odd) {
  background: #ffffff;
}
.salary-plan tbody tr:hover {
  background: #d4f5e3;
  transition: 0.3s;
}
.salary-plan td {
  color: #333;
  font-weight: 500;
}





    .awards {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}
.awards h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.award-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.award-card i {
  font-size: 40px;
  color: #ff9800;
  margin-bottom: 15px;
}
.award-card span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #555;
}


    section {
      padding: 20px;
      margin: 10px auto;
      max-width: 1200px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    h2 {
      color: #2c3e50;
      margin-bottom: 15px;
    }



		 .card {
      max-width: 400px;
      margin: 40px auto;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
      text-align: center;
      font-family: Arial, sans-serif;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .card h2 {
      margin-bottom: 15px;
      color: #2c3e50;
      font-size: 24px;
    }
    .card p {
      font-size: 18px;
      margin: 10px 0;
      color: #333;
    }
    .card strong {
      color: #27ae60;
    }




