
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background-color: #0a0e27;
}
.hero {
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: center;
    height: 100vh; /* full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero .logo {
    width: 100px;
    margin-bottom: 20px;
}
.overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background: #6366f1;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}
.services, .impact {
    padding: 60px 20px;
    text-align: center;
}
.service-grid, .impact-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.service-card, .impact-card {
    max-width: 250px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0a0e27;
  color: white;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.impact {
  padding: 80px 20px;
  text-align: center;
  background-color: #0a0e27;
}

.impact-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.impact-card {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.impact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.impact-card:hover img {
  transform: scale(1.05);
}

.impact-overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent, rgba(10, 14, 39, 0.9));
  color: #fff;
  width: 100%;
  padding: 20px;
  text-align: left;
}

.impact-overlay h3 {
  font-size: 2rem;
  color: #60a5fa;
  margin: 0;
}

.impact-overlay p {
  margin-top: 5px;
  font-size: 1rem;
  opacity: 0.9;
}

.footer {
    background-image: url('../img/footer.png');
    background-size: cover;
    padding: 60px 30px 30px;
    color: white;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1 1 250px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 80px;
}

.footer-column h4 {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
}

.social-icons a {
    margin-right: 10px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}
