/* ===============================
   RESET & BASE
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-link {
  font-size: 1rem;
  color: white;
  text-decoration: underline;
  white-space: nowrap;
}

/* Image Protection Styles */
img.protected-img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}





/* ===============================
   TOP BANNER
================================= */
.top-banner-section {
  background-color: #0074b8;
  color: white;
  font-size: 13px;
  padding: 6px 0;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.banner-v2-text {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  color: white;
  margin-left: 13rem;
}

.banner-contact {
  font-size: 1rem;
  color: white;
  text-decoration: underline;
  padding-left: 1rem;
}

/* ===============================
   HEADER & NAVIGATION
================================= */
.main-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.5rem 0;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-area {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo-area img {
  max-height: 52px;
  width: auto;
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #007acc;
  font-weight: bold;
  font-size: 1.05rem;
}

.donate-area {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

.donate-btn {
  background-color: #007acc;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* ===============================
   HERO SECTION
================================= */
.hero {
  background-color: #f9f9f9;
  padding: 2rem 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ===============================
   BUTTONS
================================= */
.btn {
  background-color: #007acc;
  color: white;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005f99;
}

/* ===============================
   IMPACT SECTION
================================= */
.impact {
  background-color: #eef6fb;
  padding: 2rem 0;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
}

.impact-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.impact-box i {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 0.5rem;
}

.impact-box h3 {
  margin-bottom: 0.5rem;
  color: #007acc;
}

/* ===============================
   PROGRAM SECTION
================================= */
.program-section {
  background-color: #f9f9f9;
  padding: 2rem 0;
}

.program-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.program-section.reverse .program-inner {
  flex-direction: row-reverse;
}

.program-image {
  flex: 1;
  text-align: center;
}

.program-image img {
  width: 400px;
  height: auto;
  float: right;
  display: block;
  margin-top: 0;
  border-radius: 6px;
  object-fit: cover;
  max-width: 400px;
}

.program-text {
  flex: 1;
}

.program-text h2 {
  color: #007acc;
  margin-bottom: 0.5rem;
}

.program-text p {
  margin-bottom: 1rem;
}

/* ===============================
   TRANSFORMATIONAL TECH SECTION
================================= */
.transformational-tech {
  background-color: #f4f4f4;
  padding: 2.5rem 0;
}

.transformational-tech h1 {
  color: #007acc;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.transformational-tech p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
  margin-bottom: 1.2rem;
}

/* ===============================
   CONTACT FORM
================================= */
.contact-section {
  background-color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 1rem;
}

.contact-form textarea {
  height: 120px;
}

.contact-form button[type="submit"] {
  background-color: #0056b3;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: auto;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background-color: #003d80;
}

/* ===============================
   NEWSLETTER
================================= */
.newsletter-section {
  background-color: #eef6fb;
  padding: 2rem 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.newsletter-form input[type="email"] {
  padding: 0.6rem;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}

.newsletter-form button {
  padding: 0.6rem 1rem;
  border: none;
  background-color: #007acc;
  color: white;
  border-radius: 0 5px 5px 0;
  font-weight: bold;
}

/* ===============================
   FOOTER
================================= */
.main-footer {
  background-color: #003f5c;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.footer-contact img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 0.25rem 0;
}

.social-icons {
  margin: 1rem 0;
}

.social-icons a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.2rem;
}

.footer-note {
  font-size: 0.85rem;
  color: #ccc;
}

/* ===============================
   SHARED / UTILITY
================================= */
.section-paragraph,
.hero-text p,
.transformational-tech p,
.tap-in-text p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

.checkboxes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
}

h2 {
  font-size: 1.75rem;
  color: #007acc;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===============================
   ANIMATION
================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .hero-inner,
  .program-inner,
  .impact-grid,
  .nav-flex {
    flex-direction: column;
    text-align: center;
  }

  .logo-area,
  .donate-area,
  .nav-links {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 5px;
  }

  .newsletter-form button {
    margin-top: 0.5rem;
  }
}



html {
  overflow-y: scroll; /* Reserve scrollbar space */
}


/* ==========================
   Sticky footer baseline setup
========================== */


/* Sticky footer baseline setup */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

.icon-tooltip {
  position: relative;
  display: inline-block;
}

.icon-tooltip .tooltip {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: opacity 0.3s;
  font-size: 0.75rem;
  white-space: nowrap;
}

.icon-tooltip:hover .tooltip {
  visibility: visible;
  opacity: 1;
}




/* Force Bluesky SVG to display in correct blue */
.bluesky-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(37%) sepia(70%) saturate(733%) hue-rotate(176deg) brightness(92%) contrast(90%);
}

.youtube-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  /* Apply red filter (YouTube red) */
  filter: brightness(0) saturate(100%) invert(22%) sepia(99%) saturate(7494%) hue-rotate(358deg) brightness(96%) contrast(112%);
}
