
body ,html {
      color: #c7d300;
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Header */
    .page-header {
      text-align: center;
      padding: 40px 20px 20px;
      background-color: #000;
    }
   
    .page-header {
  text-align: center;
  margin-top: 75px;
  color: #c7d300;
  font-family: 'Segoe UI', sans-serif;
}

.page-header h1 {
  font-size: 5rem !important;
  font-family: 'Rubik Glitch', cursive;
  font-weight: bold;
  color: #c7d300;
}

.cursor {
  display: inline-block;
  color: #c7d300;
  font-weight: bold;
  animation: blink 0.7s infinite;
  font-size: 3rem;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.page-header p {
  font-size: 1.1rem;
  color: #999;
}


    /* Category Buttons */
    .category-nav {
      text-align: center;
      background-color: 	rgb(6, 5, 5);
      padding: 20px;
    }

    .category-nav .category {
      padding: 10px 20px;
      margin: 5px;
      border: none;
      background-color: #111;
      color: #c7d300;
      cursor: pointer;
      border-radius: 20px;
      font-size: 16px;
      font-weight: 500;
      transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 0 8px rgba(199, 211, 0, 0.3);
    }

    .category-nav .category:hover,
    .category-nav .category.active {
      background-color: #c7d300;
      color: #000;
      box-shadow: 0 0 15px #c7d300;
    }

    /* Grid Container */
    .projects-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 20px 40px;
      background-color: #020101;
    }

    /* Project Card */
    .project-card {
      background: #111;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(199, 211, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      overflow: hidden;

      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 25px rgba(199, 211, 0, 0.6);
    }

    /* Image */
    .project-card img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
      margin-bottom: 15px;
    }
    .project-card img:hover {
      transform: scale(1.05);
    }

    /* Title & Text */
    .project-card h3 {
      color: #c7d300;
      margin: 0 0 10px;
    }
    .project-card p {
      color: #ccc;
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 10px;
      flex-grow: 1;
    }

    /* Read More Button */
    .read-more-btn {
      background: #c7d300;
      color: #000;
      padding: 6px 14px;
      border-radius: 20px;
      border: none;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s ease;
      align-self: flex-start;
    }
    .read-more-btn:hover {
      background: #e1ff00;
    }

    /* Hidden Extra Text */
    .more-text {
      display: none;
    }

    /* Image Popup */
    .img-popup {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
    }

    .img-popup.show {
      display: flex;
    }

    .popup-content {
      max-width: 90%;
      max-height: 80%;
      border-radius: 8px;
    }

    .close-popup {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 40px;
      color: #fff;
      cursor: pointer;
    }

    /* Animation */
    @keyframes fadeInUpZoom {
      0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .fade-in {
      animation: fadeInUpZoom 0.8s ease forwards;
    }
    .tf__achievements {
  background-color: #0a0a0a;
  color: #c7d300;
}

.tf__achievement_card {
  background-color: #111;
  border: 1px solid #c7d30044;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(199, 211, 0, 0.1);
  transition: all 0.3s ease;
}

.tf__achievement_card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 25px rgba(199, 211, 0, 0.4);
}

.tf__achievement_card i {
  color: #c7d300;
}
.category-nav .category.active {
  background-color: #c7d300;
  color: #000;
  box-shadow: 0 0 15px #c7d300;
  animation: activePulse 0.6s ease forwards;
}

@keyframes activePulse {
  0% {
    background-color: #111;
    color: #c7d300;
    box-shadow: 0 0 8px rgba(199, 211, 0, 0.3);
  }
  100% {
    background-color: #c7d300;
    color: #000;
    box-shadow: 0 0 15px #c7d300;
  }
}
