/* Base reset & container */
* {
    box-sizing: border-box;
    margin: 50;
    padding: 10;
    font-family: 'Segoe UI', sans-serif;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
.funding-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.funding-container {
  max-width: 1200px;
  margin: 0 auto;
}

.funding-section h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
}

.funding-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.funding-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.funding-card:hover {
  transform: translateY(-5px);
}

.funding-card img {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.funding-card h3 {
  font-size: 1.2rem;
  color: #0077cc;
  margin-bottom: 10px;
}

.funding-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
.nv-footer {
  background: #0C2340; /* Deep navy blue */
  color: #fff;
  padding: 40px 20px;
  font-size: 0.95rem;
  font-family: 'Segoe UI', sans-serif;
}

.nv-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.nv-footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.nv-footer-col p {
  color: #e5e7eb;
  margin-bottom: 10px;
  line-height: 1.6;
}

.nv-footer-col small {
  display: block;
  color: #9ca3af;
}

.nv-footer-col h4 {
  color: #00c4cc;
  font-weight: 600;
  margin-bottom: 12px;
}

.nv-footer-col ul {
  list-style: none;
  padding: 0;
}

.nv-footer-col ul li {
  margin-bottom: 8px;
}

.nv-footer-col ul li a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nv-footer-col ul li a:hover {
  color: #fff;
}

.nv-footer-form {
  display: flex;
  margin-top: 12px;
}

.nv-footer-form input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
  border-radius: 3px 0 0 3px;
}

.nv-footer-form button {
  background: #0077c0; /* Green send button */
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.nv-footer-form button:hover {
  background: #00CCFF;
}
