/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
.main-header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.top-bar {
  background: #f3f3f3;
  padding: 5px 10%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10% 8px 4%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: bold;
}
.logo-img {
  border-radius: 50%;
  height: 5rem;
  width: 5rem;
}
.logo span {
  color: #18a8cc;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-links a.donate-btn {
  background: #00c18c;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background: #f9f9f9;
}
.hero-text {
  max-width: 50%;
}
.hero-text h1 {
  font-size: 48px;
  color: #03224c;
}
.hero-text p {
  margin: 20px 0;
  color: #555;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.hero-buttons .btn {
  background: #00c18c;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 5px;
}
.phone-link {
  color: #03224c;
  text-decoration: none;
  font-weight: 600;
}
.hero-image img {
  width: 400px;
  border-radius: 50% 0 50% 50%;
  border: 10px solid #00c18c;
}

/* Footer */
.custom-footer {
  background-color: #0b0c2a;
  color: #ccc;
  padding: 50px 10% 20px;
  font-size: 14px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-col p,
.footer-col a {
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-social a {
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
}
.footer-social a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #999;
}
.footer-bottom p {
  margin: 5px 0;
}
.footer-legal {
  margin-top: 10px;
}
.footer-legal a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.aims-intro-section {
  background: linear-gradient(to right, #fdf6e3, #fff9ec);
  padding: 60px 20px 0;
  position: relative;
}

.aims-intro-section .container {
  max-width: 1200px;
  margin: auto;
  padding-bottom: 4rem;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h2 {
  font-size: 18px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-left: 4px solid #fcb900;
  padding-left: 10px;
}

.text-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.text-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.media-content {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.bottom-wave {
  display: block;
  margin-top: 40px;
}

.aims-section {
  background: linear-gradient(to right, #f8f9fa, #e3f2fd);
  padding: 4rem;
  color: #333;
  font-family: "Segoe UI", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.4em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a237e;
}

.card {
  background: white;
  border-left: 5px solid #1565c0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 20px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.aims-card {
  background: linear-gradient(135deg, #bbdefb, #e3f2fd);
  border-left-color: #0d47a1;
  text-align: center;
  margin-bottom: 30px;
}

.objectives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.custom-footer {
  background: linear-gradient(
    to right,
    #4b4b4b,
    #87ceeb
  ); /* gray to sky blue */
  color: #ffffff;
  padding: 40px 20px;
}

.custom-footer h3,
.custom-footer h2,
.custom-footer p,
.custom-footer a {
  color: #ffffff;
}

.custom-footer a:hover {
  color: #ffdd57; /* Optional hover color */
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #f1f1f1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
}

.footer-logo-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: white !important;
  margin-top: 3px !important;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1 1 300px;
  min-width: 250px;
}

.logo-img {
  width: 80px;
}

.footer-col h3 {
  color: #ffd700;
  margin-top: 20px;
}

.footer-col p,
.footer-col i {
  margin: 8px 0;
  font-size: 15px;
  color: #ddd;
}

.social-icons i {
  color: #ffffff;
  font-size: 20px;
  margin: 0 8px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons i:hover {
  transform: scale(1.2);
  color: #ffdd57;
}

.social-icons a {
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.footer-col p {
  line-height: 1.8;
}

.footer-col p i.fas.fa-phone {
  margin-right: 5px;
  color: #00ffaa;
}

.footer-col p a {
  margin-left: 5px;
  color: #fff;
  text-decoration: none;
}
.about-section {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #0a0a23;
  margin-bottom: 30px;
}

.about-description {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.objective-card p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text,
  .hero-image {
    max-width: 100%;
  }
  .hero-image img {
    margin-top: 30px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}
