


/* Card animation */
.card {
  background: #1c1c3e;
  padding: 1.5rem;
  border-radius: 12px;
  width: 280px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

/* Staggered animation delays */
.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Slide-up keyframe */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive image */
.about-image {
  width: 90%;
  width: 900px;
  height: 500px;
  border-radius: 30px;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 2s ease 0.8s forwards;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.about-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #0e0e6e;
      color: white;
    }

.fade-in {
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }

.section {
      padding: 4rem 1rem;
      text-align: center;
    }

.cards-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-top: 2rem;
    }
    @media (max-width: 768px) {
  /* Header Adjustments */
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    height: 35px;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #00f6ff;
    z-index: 1000;
    margin-left: auto;
    margin-right: 1rem;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    background-color: rgba(15, 12, 41, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 0 1rem;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    z-index: 998;
  }

  .nav-links.show {
    max-height: 500px;
    padding: 1rem;
  }

  /* About Section */
  .section h2 {
    font-size: 1.8rem;
  }

  .section p {
    font-size: 1rem;
  }

  .cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .card {
    width: 90%;
    padding: 1.5rem;
  }

  .about-image {
    width: 90%;
    height: auto;
    border-radius: 15px;
  }

  /* Footer Social Icons */
  .footer-images {
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .footer-images img {
    width: 28px;
    height: 28px;
  }

  .footer p,
  .footer a {
    font-size: 0.9rem;
  }
}
