@charset "UTF-8";
.site-header img {
  min-width: 200px;
}
.site-header .main-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  background-color: #0f254a;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
}
.site-header .main-nav.open {
  transform: translateX(0);
}
.site-header .main-nav .close-menu {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.site-header .main-nav ul {
  list-style: none;
  padding: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.site-header .main-nav ul li a {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.site-header .main-nav ul li a.active {
  color: #1cc7b6;
}
.site-header .main-nav ul li a:hover {
  color: #1cc7b6;
  font-size: 1.05rem;
}
@media (min-width: 768px) {
  .site-header .main-nav {
    position: static;
    transform: none;
    height: auto;
    background: transparent;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    display: flex !important;
  }
  .site-header .main-nav .close-menu {
    display: none;
  }
  .site-header .main-nav ul {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin: 0;
  }
  .site-header .main-nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    color: #0f254a;
  }
  .site-header .main-nav ul li a.active {
    color: #1cc7b6;
  }
  .site-header .menu-toggle {
    display: none;
  }
}
.site-header .menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}
.site-header .menu-toggle .bar {
  height: 2px;
  width: 100%;
  background-color: #0f254a;
  border-radius: 1px;
}
.site-header .menu-toggle:hover .bar {
  background-color: #1cc7b6;
}
@media (min-width: 768px) {
  .site-header .menu-toggle {
    display: none;
  }
}

.home-hero {
  min-height: 100vh;
  background-image: url("../../../assets/images/homeBanner.jpeg");
  background-size: cover; /* Makes the image cover the container */
  background-position: center; /* Centers the image */
  background-color: rgb(23, 37, 62); /* Black with 50% opacity */
  background-blend-mode: overlay; /**/
  background-repeat: no-repeat; /* Prevents tiling */
}
.home-hero h1 {
  font-family: "Poppins", sans-serif;
  width: 60%;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: white;
}
@media (min-width: 768px) {
  .home-hero h1 {
    font-size: 100px;
  }
}

.home-about-us-section {
  padding: 100px 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.home-about-us-section img {
  max-height: 1250px;
  height: 110%;
  position: absolute;
  right: 60%;
}
.home-about-us-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  color: #3D8ACA;
}
.home-about-us-section p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #0f254a;
  padding-top: 10px;
}
.home-about-us-section .who-we-are, .home-about-us-section .what-we-do, .home-about-us-section .why-it-matters {
  padding-top: 100px;
  padding-bottom: 100px;
}
.home-about-us-section .who-we-are, .home-about-us-section .why-it-matters {
  padding-left: 23%;
}
.home-about-us-section .what-we-do {
  padding-left: 28%;
}
.home-about-us-section .what-we-do p {
  padding-left: 8px;
}
.home-about-us-section .who-we-are p {
  padding-left: 15px;
}
.home-about-us-section .who-we-are,
.home-about-us-section .what-we-do,
.home-about-us-section .why-it-matters {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  will-change: transform, opacity;
}
.home-about-us-section .who-we-are.animate-in,
.home-about-us-section .what-we-do.animate-in,
.home-about-us-section .why-it-matters.animate-in {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 768px) {
  .home-about-us-section img {
    right: 63%;
  }
  .home-about-us-section h2 {
    font-size: 110px;
  }
  .home-about-us-section p {
    font-size: 30px;
  }
  .home-about-us-section .who-we-are, .home-about-us-section .what-we-do, .home-about-us-section .why-it-matters {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .home-about-us-section .who-we-are, .home-about-us-section .why-it-matters {
    padding-left: 30%;
  }
  .home-about-us-section .what-we-do {
    padding-left: 35%;
  }
  .home-about-us-section .what-we-do p {
    padding-left: 10px;
  }
  .home-about-us-section .who-we-are p {
    padding-left: 30px;
  }
}

.home-testimonials {
  padding: 100px 0;
}
.home-testimonials .testimonial-heading-container {
  padding: 70px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home-testimonials .testimonial-heading-container h3 {
  font-size: 23px;
  font-family: "Roboto", sans-serif;
  color: #3D8ACA;
  text-align: center;
}
.home-testimonials .testimonial-heading-container .first {
  position: absolute;
  top: 0;
  left: 0;
}
.home-testimonials .testimonial-heading-container .second {
  position: absolute;
  bottom: 0;
  right: 0;
}
.home-testimonials .my-slider {
  display: flex;
}
.home-testimonials .my-slider .slide .testimonial-card {
  position: relative;
  background-color: #3D8ACA;
  padding: 80px 40px 60px;
  border-radius: 16px;
  color: white;
  text-align: center;
  max-width: 400px;
  margin: 100px auto 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.home-testimonials .my-slider .slide .testimonial-card .profile-img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #eee;
  border: 6px solid #f8f9fd;
  overflow: hidden;
}
.home-testimonials .my-slider .slide .testimonial-card .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-testimonials .my-slider .slide .testimonial-card .quote {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}
.home-testimonials .my-slider .slide .testimonial-card .name {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.home-testimonials .my-slider .slide .testimonial-card .location {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  .home-testimonials .testimonial-heading-container {
    width: 60%;
  }
  .home-testimonials .testimonial-heading-container h3 {
    font-size: 60px;
  }
}

.home-features {
  height: fit-content;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.home-features .first-section {
  min-height: 800px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.home-features .second-section {
  min-height: 800px;
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
.home-features .img-placeholder-1 {
  border-radius: 18px;
  min-height: 300px;
  flex: 7;
  background-image: url("../../../assets/images/peopleHanging.png");
  background-size: cover; /* Makes the image cover the container */
  background-position: center; /* Centers the image */
  background-color: rgba(23, 37, 62, 0.1); /* Black with 50% opacity */
  background-blend-mode: overlay; /**/
  background-repeat: no-repeat; /* Prevents tiling */
}
.home-features .img-placeholder-2 {
  border-radius: 18px;
  min-height: 300px;
  flex: 7;
  background-image: url("../../../assets/images/speaking.png");
  background-size: cover; /* Makes the image cover the container */
  background-position: center; /* Centers the image */
  background-color: rgba(23, 37, 62, 0.1); /* Black with 50% opacity */
  background-blend-mode: overlay; /**/
  background-repeat: no-repeat; /* Prevents tiling */
}
.home-features .feature-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background-color: #279FA1;
  border-radius: 18px;
  flex: 7;
  justify-content: center;
}
.home-features .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: white;
}
.home-features .feature-card p {
  padding: 50px 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: white;
}
@media (min-width: 800px) {
  .home-features .feature-card {
    padding: 50px;
  }
  .home-features .feature-card h3 {
    font-size: 80px;
  }
}
@media (min-width: 1200px) {
  .home-features .first-section, .home-features .second-section {
    flex-direction: row;
  }
}

.home-cta {
  min-height: 300px;
  padding: 200px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-cta h2 {
  font-family: "Poppins", sans-serif;
  max-width: 1300px;
  font-size: 40px;
  text-align: center;
  color: #3D8ACA;
  padding: 0 50px 50px;
}
@media (min-width: 768px) {
  .home-cta h2 {
    font-size: 80px;
  }
}

.mission-page .mission-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  min-height: 100vh;
  padding: 30px;
  background-image: url("../../assets/images/missionhead.jpeg");
  background-size: cover; /* Makes the image cover the container */
  background-position: center; /* Centers the image */
  background-color: rgba(23, 37, 62, 0.4); /* Black with 50% opacity */
  background-blend-mode: darken;
  background-repeat: no-repeat; /* Prevents tiling */
}
.mission-page .mission-header h1 {
  font-family: "Poppins", sans-serif;
  width: 60%;
  font-weight: 700;
  font-style: normal;
  font-size: 45px;
  color: white;
}
.mission-page .mission-header p {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 18px;
}
.mission-page .mission-info {
  margin: auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
.mission-page .mission-info h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  color: #3D8ACA;
}
.mission-page .mission-info p {
  font-family: "Poppins", sans-serif;
  color: #0f254a;
  padding: 20px 0;
  line-height: 170%;
  font-size: 15px;
}
.mission-page .first {
  padding-top: 140px;
}
.mission-page .last {
  padding-bottom: 140px;
}
.mission-page .mission-cta {
  margin: 100px 20px;
  padding: 40px 20px;
  max-width: 700px;
  text-align: center;
  background-color: #3D8ACA;
  border-radius: 30px;
}
.mission-page .mission-cta h2 {
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 50px;
  font-size: 40px;
}
@media (min-width: 768px) {
  .mission-page .mission-header {
    padding: 100px;
  }
  .mission-page .mission-header h1 {
    font-size: 100px;
  }
  .mission-page .mission-header p {
    font-size: 20px;
  }
  .mission-page .mission-info {
    width: 60%;
  }
  .mission-page .mission-info h2 {
    font-size: 150px;
  }
  .mission-page .mission-info p {
    font-size: 25px;
  }
  .mission-page .mission-cta {
    padding: 100px;
    margin: 100px auto;
  }
}

.meet-the-founder-page .founder-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background-color: white;
  padding: 200px 30px;
  text-align: left;
}
.meet-the-founder-page .founder-header h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 45px;
  color: #3D8ACA;
}
.meet-the-founder-page .founder-header .subheadline {
  font-family: "Poppins", sans-serif;
  color: #0f254a;
  font-size: 18px;
}
.meet-the-founder-page .founder-profile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
  padding: 80px 20px;
  text-align: center;
}
.meet-the-founder-page .founder-profile .founder-image {
  max-width: 100%;
  min-height: 300px;
  border-radius: 20px;
  background-color: #0f254a;
  background-image: url("../../assets/images/dad-headshot.jpg");
  background-size: cover;
  background-position: center top;
}
.meet-the-founder-page .founder-profile .founder-bio {
  max-width: 700px;
}
.meet-the-founder-page .founder-profile .founder-bio h2 {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #3D8ACA;
  margin-bottom: 20px;
}
.meet-the-founder-page .founder-profile .founder-bio p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 170%;
  color: #0f254a;
  margin-bottom: 20px;
}
.meet-the-founder-page .founder-speaking {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 20px;
  align-items: center;
  text-align: center;
}
.meet-the-founder-page .founder-speaking .speaking-content {
  max-width: 700px;
}
.meet-the-founder-page .founder-speaking .speaking-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f254a;
  margin-bottom: 20px;
}
.meet-the-founder-page .founder-speaking .speaking-content p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #0f254a;
  margin-bottom: 50px;
  line-height: 170%;
}
.meet-the-founder-page .founder-speaking .speaking-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .meet-the-founder-page .founder-header {
    min-height: 100vh;
  }
  .meet-the-founder-page .founder-profile {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
  .meet-the-founder-page .founder-profile .founder-image {
    flex: 1;
    text-align: right;
  }
  .meet-the-founder-page .founder-profile .founder-bio {
    flex: 2;
    padding-left: 40px;
  }
  .meet-the-founder-page .founder-profile .founder-bio p {
    font-size: 20px;
  }
  .meet-the-founder-page .founder-speaking {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding: 100px 30px;
  }
  .meet-the-founder-page .founder-speaking .speaking-content {
    flex: 2;
  }
  .meet-the-founder-page .founder-header {
    padding: 100px;
  }
  .meet-the-founder-page .founder-header h1 {
    font-size: 180px;
  }
  .meet-the-founder-page .founder-header .subheadline {
    font-size: 20px;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 37, 74, 0.8);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}
.modal-overlay.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-content {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 40px auto;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-header {
  background: #3D8ACA;
  color: white;
  padding: 30px;
  position: relative;
}
.modal-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.modal-header .modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: opacity 0.2s;
}
.modal-header .modal-close:hover {
  opacity: 0.7;
}

.modal-body {
  padding: 40px;
}
.modal-body .modal-lead {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #0f254a;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #0f254a;
  font-size: 14px;
}
.form-group .req {
  color: #e74c3c;
  font-weight: bold;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=date],
.form-group input[type=number],
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #3D8ACA;
  border-radius: 50px;
  background: #ffffff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group input[type=date]:focus,
.form-group input[type=number]:focus,
.form-group textarea:focus {
  border-color: #0f254a;
  box-shadow: 0 0 8px rgba(61, 138, 202, 0.25);
  transform: translateY(-1px);
}
.form-group input[type=text]:valid:not(:placeholder-shown),
.form-group input[type=email]:valid:not(:placeholder-shown),
.form-group input[type=tel]:valid:not(:placeholder-shown),
.form-group input[type=date]:valid:not(:placeholder-shown),
.form-group input[type=number]:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: #27ae60;
}
.form-group input[type=text]:invalid:not(:placeholder-shown),
.form-group input[type=email]:invalid:not(:placeholder-shown),
.form-group input[type=tel]:invalid:not(:placeholder-shown),
.form-group input[type=date]:invalid:not(:placeholder-shown),
.form-group input[type=number]:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}
.form-group textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 100px;
}
.form-group .error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: none;
  font-family: "Poppins", sans-serif;
}
.form-group.field-error .error-message {
  display: block;
}

.checkrow {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.checkrow label {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
}
.checkrow input[type=checkbox],
.checkrow input[type=radio] {
  width: auto;
  margin-right: 8px;
  transform: scale(1.2);
  accent-color: #3D8ACA;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}
@media (max-width: 768px) {
  .form-actions {
    flex-direction: column;
  }
}

.btn-primary,
.btn-ghost {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #0f254a;
  min-width: 140px;
  font-family: "Poppins", sans-serif;
}
.btn-primary:disabled,
.btn-ghost:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: #0f254a;
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: #3D8ACA;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 37, 74, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #0f254a;
}
.btn-ghost:hover:not(:disabled) {
  background: #0f254a;
  color: #fff;
  transform: translateY(-2px);
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: "Poppins", sans-serif;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  opacity: 1;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  opacity: 1;
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .modal-content {
    margin: 20px auto;
  }
  .modal-header {
    padding: 20px;
  }
  .modal-header h2 {
    font-size: 24px;
  }
  .modal-body {
    padding: 20px;
  }
}
.community-page .community-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  min-height: 100vh;
  padding: 30px;
  text-align: left;
  background-image: url("../../assets/images/crowd.jpeg");
  background-size: cover; /* Makes the image cover the container */
  background-position: center; /* Centers the image */
  background-color: rgba(23, 37, 62, 0.8); /* Black with 50% opacity */
  background-blend-mode: darken;
  background-repeat: no-repeat; /* Prevents tiling */
}
.community-page .community-header h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 45px;
  max-width: 800px;
  color: white;
}
.community-page .community-header .subheadline {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 18px;
  max-width: 800px;
}
.community-page .community-info {
  margin: 80px auto;
  overflow: clip;
  display: flex;
  flex-direction: column-reverse;
  width: 90%;
  text-align: left;
}
.community-page .community-info .info-container {
  padding: 50px;
  background-color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.community-page .community-info .info-container p {
  font-family: "Poppins", sans-serif;
  color: #0f254a;
  padding: 20px 0;
  font-size: 20px;
  line-height: 170%;
}
.community-page .community-info .image-container {
  border-radius: 30px;
  flex: 1;
  min-height: 300px;
  background-image: url("../../assets/images/lady.jpg");
  background-size: cover; /* Makes the image cover the container */
  background-position: center; /* Centers the image */
  background-color: rgba(23, 37, 62, 0); /* Black with 50% opacity */
  background-blend-mode: darken;
  background-repeat: no-repeat; /* Prevents tiling */
}
.community-page .community-cta {
  margin: 100px 20px;
  padding: 40px 20px;
  max-width: 700px;
  text-align: center;
  background-color: #3D8ACA;
  border-radius: 30px;
}
.community-page .community-cta h2 {
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 40px;
  font-size: 40px;
}
.community-page .community-cta .cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  background-color: white;
  color: #0f254a;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.community-page .community-cta .cta-button:hover {
  background-color: #dfefff;
}
@media (min-width: 768px) {
  .community-page .community-header {
    padding: 100px;
  }
  .community-page .community-header h1 {
    font-size: 120px;
  }
  .community-page .community-header .subheadline {
    font-size: 20px;
  }
  .community-page .community-info {
    width: 80%;
    flex-direction: row;
  }
  .community-page .community-cta {
    padding: 100px;
    margin: 100px auto;
  }
}

.gateway-page .video {
  width: 100%;
  margin: 30px;
  height: 400px;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  margin: 60px auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.gateway-page .gateway-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  min-height: 100vh;
  padding: 30px;
  text-align: left;
  background-image: url("../../assets/images/skyline.jpeg");
  background-size: cover; /* Makes the image cover the container */
  background-position: center; /* Centers the image */
  background-color: rgba(23, 37, 62, 0.6); /* Black with 50% opacity */
  background-blend-mode: darken;
  background-repeat: no-repeat; /* Prevents tiling */
}
.gateway-page .gateway-header h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: white;
  max-width: 800px;
}
.gateway-page .gateway-header .subheadline {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 18px;
  max-width: 800px;
}
.gateway-page .gateway-info {
  margin: auto;
  padding: 80px 20px;
  text-align: center;
  max-width: 700px;
}
.gateway-page .gateway-info p {
  font-family: "Poppins", sans-serif;
  color: #0f254a;
  font-size: 24px;
  line-height: 170%;
  margin-bottom: 40px;
}
.gateway-page .gateway-info .gateway-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gateway-page .gateway-info .gateway-points li {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #3D8ACA;
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
  text-align: left;
}
.gateway-page .gateway-info .gateway-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f254a;
  font-size: 24px;
  line-height: 1;
}
.gateway-page .gateway-cta {
  margin: 100px 20px;
  padding: 40px 20px;
  max-width: 700px;
  text-align: center;
  background-color: #3D8ACA;
  border-radius: 30px;
}
.gateway-page .gateway-cta h2 {
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 40px;
  font-size: 36px;
}
.gateway-page .gateway-cta .cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  background-color: white;
  color: #0f254a;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.gateway-page .gateway-cta .cta-button:hover {
  background-color: #dfefff;
}
@media (min-width: 768px) {
  .gateway-page .gateway-header {
    padding: 100px;
  }
  .gateway-page .gateway-header h1 {
    font-size: 80px;
  }
  .gateway-page .gateway-header .subheadline {
    font-size: 20px;
  }
  .gateway-page .gateway-info {
    width: 60%;
  }
  .gateway-page .gateway-cta {
    padding: 100px;
    margin: 100px auto;
  }
}

.contact-page .contact-section {
  padding: 100px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.contact-page .contact-section h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #0f254a;
  margin-bottom: 30px;
}
.contact-page .contact-section > p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #0f254a;
  line-height: 170%;
  margin-bottom: 60px;
}
.contact-page .contact-section .contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
}
.contact-page .contact-section .contact-item .contact-icon {
  font-size: 48px;
  color: #3D8ACA;
  margin-bottom: 20px;
}
.contact-page .contact-section .contact-item h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #3D8ACA;
  margin-bottom: 15px;
}
.contact-page .contact-section .contact-item p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #0f254a;
  line-height: 170%;
  margin: 0;
}
.contact-page .contact-section .contact-item p a {
  color: #0f254a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-page .contact-section .contact-item p a:hover {
  color: #3D8ACA;
}
@media (min-width: 768px) {
  .contact-page .contact-section {
    padding: 140px 20px;
  }
  .contact-page .contact-section h1 {
    font-size: 60px;
  }
  .contact-page .contact-section > p {
    font-size: 24px;
  }
  .contact-page .contact-section .contact-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
  .contact-page .contact-section .contact-item .contact-icon {
    font-size: 60px;
  }
  .contact-page .contact-section .contact-item h3 {
    font-size: 28px;
  }
  .contact-page .contact-section .contact-item p {
    font-size: 20px;
  }
}

.give-page .give-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  min-height: 100vh;
  padding: 30px;
  text-align: left;
  background-image: url("../../assets/images/hands.jpeg");
  background-size: cover; /* Makes the image cover the container */
  background-position: center; /* Centers the image */
  background-color: rgba(23, 37, 62, 0.3); /* Black with 50% opacity */
  background-blend-mode: overlay;
  background-repeat: no-repeat; /* Prevents tiling */
}
.give-page .give-header h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: white;
}
.give-page .give-header .subheadline {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 18px;
}
.give-page .give-info {
  margin: auto;
  padding: 80px 20px;
  text-align: center;
  max-width: 700px;
}
.give-page .give-info p {
  font-family: "Poppins", sans-serif;
  color: #0f254a;
  font-size: 24px;
  line-height: 170%;
  margin-bottom: 30px;
}
.give-page .give-info .signature-section {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.give-page .give-info .signature-section .signature {
  max-width: 200px;
  height: auto;
  filter: invert(1) brightness(0.2);
}
.give-page .give-info .signature-section .founder-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.give-page .give-info .signature-section .founder-info .founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3D8ACA;
}
.give-page .give-info .signature-section .founder-info .founder-details {
  text-align: left;
}
.give-page .give-info .signature-section .founder-info .founder-details .founder-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f254a;
  margin: 0;
}
.give-page .give-info .signature-section .founder-info .founder-details .founder-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 5px 0 0 0;
}
.give-page .give-cta {
  margin: 100px 20px;
  padding: 40px 20px;
  max-width: 700px;
  text-align: center;
  border: 2px solid #3D8ACA;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.give-page .give-cta:hover {
  border: 4px solid #3D8ACA;
}
.give-page .give-cta img {
  max-width: 400px;
}
.give-page .give-cta h2 {
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 40px;
  font-size: 36px;
}
.give-page .give-form-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}
.give-page .give-form-container {
  max-width: 600px;
  width: 100%;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.give-page .give-form-container h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f254a;
  margin-bottom: 40px;
  text-align: center;
}
.give-page .amount-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}
.give-page .amount-btn {
  padding: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0f254a;
  background: white;
  border: 3px solid #3D8ACA;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.give-page .amount-btn:hover {
  background: #e8f4fd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 138, 202, 0.2);
}
.give-page .amount-btn.active {
  background: #3D8ACA;
  color: white;
  transform: scale(1.05);
}
.give-page .custom-amount {
  margin-bottom: 30px;
}
.give-page .custom-amount label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0f254a;
  margin-bottom: 10px;
}
.give-page .custom-amount .custom-amount-input {
  position: relative;
  display: flex;
  align-items: center;
  /* Remove number input arrows */
}
.give-page .custom-amount .custom-amount-input .currency-symbol {
  position: absolute;
  left: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0f254a;
  pointer-events: none;
}
.give-page .custom-amount .custom-amount-input input {
  width: 100%;
  padding: 20px 20px 20px 45px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0f254a;
  border: 3px solid #3D8ACA;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}
.give-page .custom-amount .custom-amount-input input:focus {
  border-color: #0f254a;
  box-shadow: 0 0 0 3px rgba(61, 138, 202, 0.1);
}
.give-page .custom-amount .custom-amount-input input::placeholder {
  color: #ccc;
  font-weight: 400;
}
.give-page .custom-amount .custom-amount-input input[type=number]::-webkit-inner-spin-button,
.give-page .custom-amount .custom-amount-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.give-page .custom-amount .custom-amount-input input[type=number] {
  -moz-appearance: textfield;
}
.give-page .submit-btn {
  width: 100%;
  margin-top: 20px;
  font-size: 18px;
}
.give-page .secure-note {
  text-align: center;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #666;
}
.give-page .secure-note i {
  color: #27ae60;
  margin-right: 5px;
}
.give-page .form-message {
  padding: 15px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin-top: 15px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.give-page .form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  opacity: 1;
}
.give-page .form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  opacity: 1;
}
@media (min-width: 768px) {
  .give-page .give-header {
    padding: 100px;
  }
  .give-page .give-header h1 {
    font-size: 80px;
  }
  .give-page .give-header .subheadline {
    font-size: 20px;
  }
  .give-page .give-info {
    width: 60%;
  }
  .give-page .give-cta {
    padding: 100px;
    margin: 100px auto;
  }
}

.donation-result-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.donation-result-page .result-container {
  max-width: 700px;
  width: 100%;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.donation-result-page .result-container .result-icon {
  margin-bottom: 30px;
}
.donation-result-page .result-container .result-icon i {
  font-size: 80px;
}
.donation-result-page .result-container.success .result-icon i {
  color: #27ae60;
}
.donation-result-page .result-container.cancelled .result-icon i {
  color: #e74c3c;
}
.donation-result-page .result-container h1 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f254a;
  margin-bottom: 20px;
}
.donation-result-page .result-container .result-message {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0f254a;
  margin-bottom: 20px;
}
.donation-result-page .result-container p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #666;
  line-height: 170%;
  margin-bottom: 40px;
}
.donation-result-page .result-container .result-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
@media (min-width: 768px) {
  .donation-result-page .result-container .result-actions {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .donation-result-page .result-container {
    padding: 80px 60px;
  }
  .donation-result-page .result-container .result-icon i {
    font-size: 100px;
  }
  .donation-result-page .result-container h1 {
    font-size: 48px;
  }
  .donation-result-page .result-container .result-message {
    font-size: 24px;
  }
  .donation-result-page .result-container p {
    font-size: 20px;
  }
}

.legal-page {
  padding: 100px 20px;
  min-height: 80vh;
}
.legal-page .legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.legal-page .legal-container h1 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f254a;
  margin-bottom: 10px;
}
.legal-page .legal-container .last-updated {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
}
.legal-page .legal-container .legal-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f254a;
  margin-top: 40px;
  margin-bottom: 20px;
}
.legal-page .legal-container .legal-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #3D8ACA;
  margin-top: 30px;
  margin-bottom: 15px;
}
.legal-page .legal-container .legal-content p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 180%;
  color: #333;
  margin-bottom: 20px;
}
.legal-page .legal-container .legal-content ul {
  margin: 20px 0;
  padding-left: 40px;
}
.legal-page .legal-container .legal-content ul li {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 180%;
  color: #333;
  margin-bottom: 10px;
}
.legal-page .legal-container .legal-content a {
  color: #3D8ACA;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal-page .legal-container .legal-content a:hover {
  color: #2c7ba8;
}
.legal-page .legal-container .legal-content strong {
  font-weight: 600;
  color: #0f254a;
}
@media (min-width: 768px) {
  .legal-page {
    padding: 140px 40px;
  }
  .legal-page .legal-container {
    padding: 80px 60px;
  }
  .legal-page .legal-container h1 {
    font-size: 48px;
  }
  .legal-page .legal-container .legal-content h2 {
    font-size: 32px;
  }
  .legal-page .legal-container .legal-content h3 {
    font-size: 24px;
  }
  .legal-page .legal-container .legal-content p, .legal-page .legal-container .legal-content ul li {
    font-size: 18px;
  }
}

footer {
  background-color: #0f254a;
}
footer .footer-container {
  padding: 26px 20px;
}
footer .footer-container img {
  max-width: 200px;
  margin-bottom: 20px;
}
footer .footer-container .footer-top {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer-container .footer-top .footer-nav {
  gap: 20px;
  justify-content: space-between;
}
footer .footer-container .footer-top a {
  color: white;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  padding: 8px 0;
}
footer .footer-container .footer-top a:hover {
  transform: scale(1.02);
  transition: 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  color: #3D8ACA;
}
footer .footer-container .footer-bottom {
  border-top: solid white 1px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer .footer-container .footer-bottom .footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer .footer-container .footer-bottom p {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: lighter;
  font-size: 16px;
  text-align: center;
  margin: 0;
}
footer .footer-container .footer-bottom .footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
footer .footer-container .footer-bottom .footer-legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-container .footer-bottom .footer-legal-links a:hover {
  color: #3D8ACA;
}
footer .footer-container .footer-bottom .footer-legal-links .separator {
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-container .footer-bottom .footer-image-container {
  display: flex;
  gap: 12px;
}
footer .footer-container .footer-bottom .footer-image-container a:hover {
  transform: scale(1.1);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 768px) {
  footer .footer-container {
    padding: 26px 100px;
  }
  footer .footer-container img {
    max-width: 350px;
    margin-bottom: 0;
  }
  footer .footer-container .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  footer .footer-container .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  footer .footer-container .footer-bottom .footer-left {
    align-items: flex-start;
  }
  footer .footer-container .footer-bottom p {
    font-size: 18px;
    text-align: left;
  }
  footer .footer-container .footer-bottom .footer-legal-links {
    font-size: 16px;
  }
  footer .footer-container .footer-bottom .footer-legal-links a {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
