.hero-section {
  min-height: calc(100vh - 80px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #cbbdfe 0%, #bdcbfe 100%);
  overflow: hidden;
}

  .hero-section.with-image {
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('/img/hero1.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
  color: #2c3e50;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-section .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #34495e;
  font-weight: lighter;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.what-is-section {
  background: white;
  padding: 5rem 0;
}

.section-header {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
}

  .section-header h2 {
    font-size: 2.5rem;
    color: #333;
  }

  .section-header .lead {
    font-size: 1.1rem;
    color: #666;
  }

.feature-highlight {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 3rem 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

  .feature-highlight h3 {
    color: #333;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .feature-highlight p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
  }

.mission-section {
  background: linear-gradient(135deg, rgb(0, 163, 232), #667eea);
  padding: 5rem 0;
  position: relative;
}

  .mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
  }

.mission-content {
  position: relative;
  z-index: 2;
}

.mission-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
}

  .mission-card:first-child {
    animation-delay: 0.2s;
  }

  .mission-card:nth-child(2) {
    animation-delay: 0.4s;
  }

  .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
  }

.mission-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
}

  .mission-icon i {
    font-size: 2.5rem;
  }

.mission-card h3 {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.values-section {
  background: white;
  padding: 5rem 0;
}

.value-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 0.8s ease forwards;
}

  .value-card:nth-child(1) {
    animation-delay: 0.2s;
  }

  .value-card:nth-child(2) {
    animation-delay: 0.3s;
  }

  .value-card:nth-child(3) {
    animation-delay: 0.4s;
  }

  .value-card:nth-child(4) {
    animation-delay: 0.5s;
  }

  .value-card:nth-child(5) {
    animation-delay: 0.6s;
  }

  .value-card:nth-child(6) {
    animation-delay: 0.7s;
  }

  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(0, 163, 232), #667eea);
  border-radius: 50%;
  color: white;
}

  .value-icon i {
    font-size: 2rem;
  }

.value-card h4 {
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
  text-align: center;
}

.stats-section {
  background: linear-gradient(135deg, rgb(0, 163, 232), #667eea);
  padding: 5rem 0;
  position: relative;
  color: white;
}

  .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
  }

.stats-content {
  position: relative;
  z-index: 2;
}

.stats-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stats-section .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.stat-item {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
}

  .stat-item:nth-child(1) {
    animation-delay: 0.2s;
  }

  .stat-item:nth-child(2) {
    animation-delay: 0.3s;
  }

  .stat-item:nth-child(3) {
    animation-delay: 0.4s;
  }

  .stat-item:nth-child(4) {
    animation-delay: 0.5s;
  }

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-section {
  background: white;
  padding: 5rem 0;
}

.cta-content {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

  .cta-content h2 {
    font-size: 2.5rem;
    color: #333;
  }

  .cta-content .lead {
    font-size: 1.1rem;
    color: #666;
  }

.btn-cta {
  background: linear-gradient(45deg, rgb(0, 163, 232), #667eea);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 163, 232, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

  .btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }

  .btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 163, 232, 0.4);
    color: white;
    text-decoration: none;
  }

    .btn-cta:hover::before {
      left: 100%;
    }

  .btn-cta:active {
    transform: translateY(-1px) scale(1.02);
  }

  .btn-cta:focus {
    outline: none;
    box-shadow: 0 8px 25px rgba(0, 163, 232, 0.3), 0 0 0 3px rgba(0, 163, 232, 0.2);
    color: white;
  }

.btn-outline-primary {
  border: 2px solid rgb(0, 163, 232);
  background: transparent;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(0, 163, 232);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

  .btn-outline-primary:hover {
    background: rgb(0, 163, 232);
    border-color: rgb(0, 163, 232);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 163, 232, 0.3);
    text-decoration: none;
  }

  .btn-outline-primary:active {
    transform: translateY(-1px);
  }

  .btn-outline-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 163, 232, 0.2);
  }

@keyframes fadeInUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .section-header h2,
  .stats-section h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .feature-highlight,
  .mission-card,
  .value-card {
    margin-bottom: 2rem;
  }

  .mission-icon,
  .value-icon {
    width: 70px;
    height: 70px;
  }

    .mission-icon i,
    .value-icon i {
      font-size: 2rem;
    }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }

    .hero-section h1 {
      font-size: 2rem;
    }

    .hero-section .lead {
      font-size: 1rem;
    }

  .what-is-section,
  .mission-section,
  .values-section,
  .stats-section,
  .cta-section {
    padding: 3rem 0;
  }

    .section-header h2,
    .stats-section h2,
    .cta-content h2 {
      font-size: 1.75rem;
    }

  .feature-highlight {
    padding: 2rem 1.5rem;
  }

    .feature-highlight h3,
    .mission-card h3 {
      font-size: 1.5rem;
    }

  .mission-card,
  .value-card {
    padding: 2rem 1.5rem;
  }

  .btn-cta,
  .btn-outline-primary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .d-flex.gap-3.flex-wrap {
    flex-direction: column;
    align-items: center;
  }

    .d-flex.gap-3.flex-wrap .btn {
      width: 100%;
      max-width: 300px;
      margin-bottom: 0.5rem;
    }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 100vh;
    padding: 0;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  .section-header h2,
  .stats-section h2,
  .cta-content h2 {
    font-size: 1.5rem;
  }

  .feature-highlight {
    padding: 1.5rem 1.25rem;
  }

    .feature-highlight h3,
    .mission-card h3 {
      font-size: 1.25rem;
    }

    .feature-highlight p,
    .mission-card p {
      font-size: 1rem;
    }

  .mission-icon,
  .value-icon {
    width: 60px;
    height: 60px;
  }

    .mission-icon i,
    .value-icon i {
      font-size: 1.75rem;
    }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .btn-cta,
  .btn-outline-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
