/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f5f7fb;
    color: #1f2937;
  }
  
  /* SECTION */
  .mission-section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* HEADER */
  .header {
    text-align: center;
    margin-bottom: 60px;
  
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
  }
  
  .header h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #111827;
  }
  
  .header p {
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
  }
  
  /* GRID */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  /* CARD */
  .card {
    background: white;
    padding: 25px;
    border-radius: 18px;
  
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  
    transition: all 0.4s ease;
  
    /* scroll animation start state */
    opacity: 0;
    transform: translateY(60px) scale(0.98);
  }
  
  /* WHEN VISIBLE (scroll effect class) */
  .card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  /* hover */
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  }
  
  /* TITLE */
  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #4f46e5;
  }
  
  /* TEXT */
  .card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #4b5563;
  }
  
  /* ANIMATION KEYFRAME */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }






  /* footer starts here */

.footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li:last-child {
  margin-bottom: 0;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-section a:hover {
  color: #ffd700;
  padding-left: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.contact-item i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 12px;
  color: #ffd700;
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: none;
  border-radius: 25px;
  color: #1e3c72;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom .footer-container {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: #ffd700;
  color: #1e3c72;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: right;
  gap: 10px;
}

.footer-legal p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links li a:hover {
  color: #ffd700;
}