/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F9F9F9;
    color: #333; /* Dark Gray */
}

/* HEADERSTYLING */

.niw-header {
  background-color: #001F3F;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #F5C518;
}

.register-btn {
  background-color: #F5C518; /* Golden Yellow */
  color: #001F3F; /* Navy text on gold */
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.register-btn:hover {
  background-color: #fff;
  color: #001F3F;
}

.mobile-header {
  display: none; /* hidden by default */
}

@media (max-width: 768px) {
  .mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: max-content;
    background: transparent;
    margin-left: 50px;
    
  }

  .mobile-header h3 {
    color: #F5C518;
    font-size: 1.3rem;
    margin: 0;
  }

  .mobile-header p {
    color: white;
    margin: 0.2rem 0 0;
    font-style: italic;
    font-size: 0.9rem;
  }
}

/* Toggle button styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  z-index: 1100;
}

.menu-toggle .bar {
  height: 5px;
  width: 120%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to X */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #001F3F;
    position: absolute;
    top: 54px;
    right: 1rem;
    width: 220px;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}



/* HERO SECTION */

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12); /* Light overlay for logo clarity */
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  padding: 2rem 1rem;
  color: #000000;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #f6f7f8;
  position: relative;
  margin-bottom: 1rem;
  
}

.hero-title::after {
  content: '';
  display: block;
  margin: 0.5rem auto 1.5rem;
  width: 500px;
  height: 4px;
  background-color: #F5C518;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  margin-bottom: 2.5rem;
  line-height: 1.0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.partners {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-bottom: -2rem;
  margin-top: -5rem;
}

.partner {
    width: 120px;
    height: 180px;
    max-width: none;
    margin: 0;
    background: rgba(255, 255, 255, 1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    width: 160px;
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.partner:hover {
  transform: scale(1.05); 
}

.partner p {
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
  color: #F5C518;
}

.partner img {
  max-width: 100%;
  height: auto;
  filter: brightness(100%);
}

.register-btn {
  background-color: #F5C518;
  color: #001F3F;
  padding: 0.8rem 2rem;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  
  
}

.register-btn:hover {
  background-color: white;
  color: #001F3F;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Fixes */
@media (max-width: 768px) {

  .hero-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}
  .hero-title {
    margin-top: -20px;
    font-size: 2.2rem;
  }

  .hero-title::after {
    height: 5px;
    width: 300px;
    margin-top: 0.3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .partners {
    flex-wrap: nowrap;
    gap: 0.1rem;
    margin-bottom: -4rem;
     
    
    
  }

  .partner {
    width: 100px;
    height: 75px;
    max-width: 45vw;
    margin: 0.5rem;
    margin-bottom: -0.5rem;
  }

  .partner p{
    font-size: 0.1em;
  }

  .register-btn {
    margin-top: -10rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    gap: 5rem;
  }

  .hero-overlay {
    padding-top: 3rem;
  }
}

/* ENDING OF HERO SECTION */


/* COUNTDOWN TIMER STYLING */

.thrive-ultimatum {
  background-color: #001F3F; /* Navy Blue */
  color: #1508cc;
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.thrive-ultimatum::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(2, 13, 167, 0.2), transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.thrive-ultimatum h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #F5C518;
  margin-bottom: 2rem;
  margin-top: -1rem;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.time-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #F5C518;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-width: 100px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.5);
}

.time-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.7);
}

.time-box span:first-child {
  font-size: 2.5rem;
  font-weight: bold;
  color: #F5C518;
  display: block;
  margin-bottom: 0.5rem;
}

.label {
  font-size: 0.9rem;
  color: #ffffffcc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .thrive-ultimatum h3 {
    margin-top: -0.5rem;
    margin-bottom: -1rem;
    font-size: 1.5rem;
  }

  .countdown {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .time-box {
    margin-top: 2rem;
    flex: 0 0 auto;
    min-width: 60px;
    max-width: 50px;
    padding: 0.3rem 0.1rem;
    border-radius: 8px;
    margin-bottom: 0.1rem
  }

  .time-box span:first-child {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .label {
    font-size: 0.7rem;
  }
}

/* ENDING OF COUNTDOWN STYLING */

/* ABOUT US STARTS HERE */

.about {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: fadeIn 1.2s ease;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #001F3F; /* Navy Blue */
  margin-bottom: 1.2rem;
  position: relative;
}

.about-text h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #F5C518; /* Golden Yellow */
  display: block;
  margin-top: 0.4rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #333;
  margin-bottom: -1rem;
}

.cta-button {
  background-color: #F5C518;
  color: #001F3F;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  margin-top: -2rem;
}

.cta-button:hover {
  background-color: #fff;
  color: #001F3F;
  border: 2px solid #F5C518;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
  animation: slideIn 1.2s ease;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  
}

/* Animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }
  .about-text, .about-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .about-image {
    margin-bottom: -5rem;
  }
  .about-text h2 {
    font-size: 2rem;
    margin-top: -2rem;
  }
  .about-text p {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
  }

  .about-text h2::after {
    height: 5px;
    width: 70px;
    margin-top: 0.3rem;
    margin-left: auto;
    margin-right: auto;
  }
}



/* EVENT SCHEDULE STYLING */


.schedule {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.schedule-container {
  max-width: 1200px;
  margin: 0 auto;
}

.schedule-container h2 {
  font-size: 2.5rem;
  color: #001F3F;
  margin-bottom: 1rem;
  margin-top: -3rem;
}

.schedule-container h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #F5C518;
  margin: 0.5rem auto 1.5rem;
}

.schedule-intro {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #444;
}

.schedule-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.schedule-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; /* Increased gap for both side and bottom */
  flex-wrap: wrap;
  margin-bottom: 2rem; /* Adds space below each row */
}

.schedule-item {
  width: 220px;
  height: 220px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem; /* Adds space around each item for balance */
}

.schedule-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.schedule-item:hover .schedule-item-inner {
  transform: rotateY(180deg);
}

.schedule-item-front,
.schedule-item-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.schedule-item-front {
  background-color: #fff;
  color: #001F3F;
  background-size: cover;
   background-position: center;
    border-radius: 15px;
      overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 31, 63, 0.7); /* Dark blue with 70% opacity */
  display: flex;
  justify-content: center;
  align-items: center;
}

.schedule-item-front h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  
  z-index: 0;
  margin: 0;
  padding: 1rem;
  text-align: center;
  letter-spacing: 1px;
}

.schedule-item-back {
  background-color: #001F3F;
  color: #fff;
  transform: rotateY(180deg);
  font-size: 0.9rem;
}

.schedule-item-back p {
  margin: 0.3rem 0;
  line-height: 1.4;
}

.cta-button {
  display: inline-block;
  margin-top: 2.5rem;
  background-color: #F5C518;
  color: #001F3F;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: -6rem;
}

.cta-button:hover {
  background-color: #fff;
  border: 2px solid #F5C518;
  color: #001F3F;
}

@media (max-width: 768px) {

  .schedule-rows {
    gap: 1.2rem;
  }

  .schedule-container h2 {
  font-size: 2rem;
  color: #001F3F;
  margin-bottom: 1rem;
  margin-top: -18rem;
}

  .schedule-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .schedule-item {
    width: 75vw;
    max-width: 350px;
    height: 150px;
    margin: 0.6rem;
  }
  .schedule-item-front,
  .schedule-item-back {
    padding: 0.6rem;
    border-radius: 8px;
  }
  .schedule-item-front h3 {
    font-size: 1.85rem;
  }
  .schedule-item-back {
    font-size: 0.75rem;
  }
}


/* SPEAKER SESSION STYLING */

.speakers {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.speakers-container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  color: #001f3f; /* Navy Blue */
}

.speakers-container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #F5C518; /* Golden Yellow */
  margin: 10px auto 20px;
  border-radius: 4px;
}

.speakers-intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
}

.speakers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  animation: fadeInUp 1.2s ease;
}

.speaker-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 260px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.speaker-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.speaker-card h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
  color: #001f3f;
}

.speaker-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

.speaker-card a {
  color: #001f3f;
  margin: 0 6px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.speaker-card a:hover {
  color: #ffb300;
}

.cta-button {
  display: inline-block;
  margin-top: 40px;
  background-color: #001f3f;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ffb300;
  color: #001f3f;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .speaker-card {
    width: 140px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
  }
  .speaker-card img {
    height: 145px;
    border-radius: 6px;
    margin-bottom: 8px;
  }
  .speaker-card h3 {
    font-size: 0.95rem;
    margin: 6px 0 3px;
  }
  .speaker-card p {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }
  .speakers-grid {
    gap: 14px;
    
  }
}
/* ENDING OF SPEAKER SESSION STYLING */

/* sponsors styling */


.partners {
  padding: 80px 20px;
  text-align: center;
  background: transparent; /* No background */
}

.partners-container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #001f3f;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.partners-container h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #ffb300;
  margin: 12px auto 30px;
  border-radius: 2px;
}

.partners-intro {
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #444;
  animation: fadeIn 1s ease-in-out;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.partner-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleFade 0.6s ease forwards;
}

.partner-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.partner-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.become-sponsor {
  background-color: #001f3f;
  color: white;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.become-sponsor h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ffb300;
}

.become-sponsor p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #ffb300;
  color: #001f3f;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e2a200;
  color: #fff;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .partner-card {
    width: 45%;
    height: 90px;
  }

  .partners-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .become-sponsor {
    padding: 30px 20px;
  }
}


/* COMMUNITY SECTION */

.community {
  padding: 80px 20px;
  background-color: white;
  text-align: center;
}

.community-container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #001f3f;
  margin-bottom: 12px;
}

.community-container h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #ffb300;
  margin: 14px auto 30px;
  border-radius: 2px;
}

.community-intro {
  font-size: 1.1rem;
  color: #444;
  max-width: 750px;
  margin: 0 auto 40px;
  animation: fadeIn 1s ease-in-out;
}

.impact-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px 0;
}

.stat-card {
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 14px;
  width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  animation: popFade 0.8s ease-in-out;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffb300;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 1rem;
  color: #333;
}

.community-highlights h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #001f3f;
}

.community-highlights ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 2;
  animation: fadeIn 1.2s ease-in-out;
}

.join-community {
  background-color: #001f3f;
  color: white;
  padding: 40px 30px;
  border-radius: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.join-community h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ffb300;
}

.join-community p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #ffb300;
  color: #001f3f;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e2a200;
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .impact-stats {
    gap: 30px;
  }

  .stat-card {
    width: 45%;
  }
}



/* FAQ SECTION */

.faq {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.faq h2 {
  font-size: 2.5rem;
  color: #001f3f;
  margin-bottom: 10px;
}

.faq-intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #f7f7f7;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #001f3f;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #ffb300;
  color: #001f3f;
}

.faq-answer {
  background: white;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #333;
  font-size: 0.95rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 15px 20px 20px;
}

.toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* Animation on load */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}


/* MAP STYLING */

.contact-map {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



/* FOOTER */

/* Footer Section */
.footer {
  background-color: #081b3e; /* matches navbar */
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer h2,
.footer h3 {
  color: #f6b31e; /* golden yellow */
  margin-bottom: 15px;
}

.footer-logo p {
  max-width: 300px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f6b31e;
}

.footer-contact p,
.footer-contact i {
  line-height: 1.6;
  color: #ffffff;
}

.footer-contact i {
  margin-right: 10px;
  color: #f6b31e;
}

.footer-socials .social-icons a {
  color: #ffffff;
  font-size: 20px;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials .social-icons a:hover {
  color: #f6b31e;
  transform: scale(1.1);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-socials .social-icons {
    justify-content: center;
  }

  .footer-links ul {
    padding: 0;
  }
}
/* ENDING OF FOOTER STYLING */