/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2B2B2B;
  background: #F3FBF6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

.primary-btn {
  background: #FF9800;
  color: #FFFFFF;
}

.outline-btn {
  border: 2px solid #4CAF50;
  color: #4CAF50;
}

/* ================= HEADER ================= */
.header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background-color: #1E90FF;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
}

.nav-links {
  display: flex;
  gap: 20px;
  background-color: #1E90FF;
}

.nav-links a {
  color: #FFFFFF;
  font-weight: 500;
  background-color: #1E90FF;
}

.nav-links a:hover {
  color: #FF9800;
}

.donate-btn {
  background: #FF9800;
  color: #FFFFFF;
}

/* ================= HERO ================= */
.hero {
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #1F3C88;
  line-height: 1.3;
}

.hero-text p {
  margin: 20px 0;
  color: #6B7280;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.image-caption {
  margin-top: 12px;
  max-width: 520px;
  text-align: center;
}

.rc-number {
  font-size: 14px;
  font-weight: 600;
  color: #4CAF50;
}

.org-name {
  font-size: 16px;
  font-weight: 700;
  color: #1F3C88;
  margin: 5px 0;
}

.org-desc {
  font-size: 14px;
  color: #6B7280;
}

/* ================= FOUNDATION TEXT ================= */
.foundation-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1F3C88;
  line-height: 1.3;
  margin-bottom: 25px;
}

.foundation-intro {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 30px;
}

.foundation-section {
  margin-bottom: 30px;
}

.foundation-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #1F3C88;
  margin-bottom: 15px;
}

.framework-list,
.objectives-list {
  padding-left: 20px;
}

.framework-list li,
.objectives-list li {
  margin-bottom: 10px;
}

.framework-link,
.objective-link {
  color: #4CAF50;
  font-weight: 600;
}

.framework-link:hover,
.objective-link:hover {
  color: #FF9800;
  text-decoration: underline;
}

.foundation-commitment {
  font-size: 15px;
  color: #2B2B2B;
  line-height: 1.7;
  background: #FFFFFF;
  padding: 20px;
  border-left: 4px solid #4CAF50;
  border-radius: 6px;
}

/* ================= CLICKABLE IMAGES SECTION ================= */
.clickable-images-section {
  padding: 60px 20px;
  background-color: #f0f8ff;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1E90FF;
  margin-bottom: 40px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 17px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  width: 100%;
}

.image-card img {
  width: 220%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  justify-content: center;
}

.image-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(30, 144, 255, 0.7);
  color: #fff;
  padding: 15px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  transition: background 0.3s;
}

.image-card:hover .overlay {
  background: rgba(30, 144, 255, 0.9);
}
/* ================= FOOTER ================= */
.footer {
  background-color: #1E90FF;
  color: white;
  padding: 40px 20px;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid div {
  flex: 1 1 250px;
}

.footer-grid a {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-grid a:hover {
  color: #ffeb3b;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-width: 100%;
  }

  .foundation-title {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    color: #1F3C88;
    margin: 20px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .foundation-title {
    font-size: 22px;
    line-height: 1.3;
    color: #1F3C88;
  }
}
.settings {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #1F3C88; /* soft light color for footer */
}
.foundation-resolution {
  max-width: 900px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #FFFFFF;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2B2B2B;

  border-left: 5px solid #1E90FF; /* authority blue */
  border-radius: 8px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Optional emphasis for formal tone */
.foundation-resolution::before {
  content: "Our Resolution";
  display: block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: #1E90FF;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Responsive refinement */
@media (max-width: 600px) {
  .foundation-resolution {
    padding: 20px;
    font-size: 15px;
  }
}
/* ================= SOCIAL MEDIA LINKS ================= */
.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E8F5E9;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.social-links a:hover {
  color: #FF9800;
  transform: translateX(5px);
}
