/* =================== HERO SECTION =================== */
.hero-content h1 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-content sm {
  font-size: 2rem;
  color: #f9f9f9;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: transparent;
}

/* =================== INITIATIVES SECTION =================== */
.initiatives-section {
  background-color: rgb(224, 145, 253);
  color: white;
  padding: 60px 20px;
  opacity: 0.89;
}

.initiatives-wrapper {
  max-width: 1400px;
  margin: auto;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #4b0082;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.initiatives-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 0 30px;
}

.initiative-card {
  background: #ffffff;
  color: #4b0082;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.initiative-card h3 {
  margin: 20px 0 10px;
  font-size: 1.5rem;
}

.initiative-card p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.initiative-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.initiative-card:hover .initiative-img {
  transform: scale(1.07);
}

/* =================== FADE-IN =================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

/* =================== CURSOR =================== */
.cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background-color: #4b0082;
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* =================== RESPONSIVE BREAKPOINTS =================== */
@media (max-width: 992px) {
  /* .navbar {
    padding: 0 20px;
    height: 80px;
  }

  .navbar .logo img {
    height: 120px;
    margin-left: 0;
  }

  .menu-toggle {
    display: flex;
  } */

  /* .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(239, 235, 243, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    transition: right 0.3s ease;
    padding: 100px 30px 0;
    z-index: 1000;
  } */

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content sm {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .initiatives-container {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  /* .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  } */
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content sm {
    font-size: 1.2rem;
  }
}
