* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;

}

body {
  background: url('bg.jpg');
  background-size: cover;
  color: #e4e4e4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header img {
  height: 45px;
  width: auto;
}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}



nav a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #0ef;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #0ef;
  transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;

}

main h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0ef;
  text-shadow: 0 0 10px #0ef, 0 0 20px #0ef, 0 0 30px #0ef;
  animation: glow 2s infinite alternate;
  position: relative;
  right: 40%;
}

main h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 10px;
  text-shadow: 0 0 5px #0ef;
  position: relative;
  right: 40%;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px #0ef, 0 0 10px #0ef;
  }

  50% {
    text-shadow: 0 0 10px #0ef, 0 0 25px #0ef;
  }

  100% {
    text-shadow: 0 0 20px #0ef, 0 0 40px #0ef;
  }
}

.particles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #0ef;
  opacity: 0.6;
  border-radius: 50%;
  animation: moveParticle linear infinite;
}

@keyframes moveParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}




main {
  flex: 1;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 35%;
}

main h1 {
  font-size: 5rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

main span {
  display: block;
  text-align: center;
  font-size: 2rem;
  margin-top: 10px;
  color: #ffffff;
}














body {
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #e4e4e4;
  font-family: 'Rajdhani', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

header img {
  height: 45px;
  width: auto;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #0ef;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #0ef;
  transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.particles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

main {
  flex: 1;
  margin-top: 120px;
  padding: 20px 8%;
  position: relative;
  z-index: 1;
}

h1.page-title {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 3rem;
  color: #0ef;
  text-shadow: 0 0 10px #0ef, 0 0 20px #0ef;
  margin-bottom: 50px;
  animation: glow 2s infinite alternate;
  position: relative;
  right: 40%;
}

.timeline {
  position: relative;
  right: 40%;
  max-width: 900px;
  margin: auto;
  /* padding-left: 20px; */
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: #0ef;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background: #0ef;
  border-radius: 50%;
  top: 20px;
  box-shadow: 0 0 10px #0ef;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 238, 255, 0.4);
  transition: transform 0.4s, box-shadow 0.4s;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 238, 255, 0.7);
}

.timeline-content h3 {
  color: #0ef;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.timeline-content span {
  display: block;
  color: #bbb;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    margin-bottom: 30px;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item::after {
    left: 10px;
  }
}






















body {
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #e4e4e4;
  font-family: 'Rajdhani', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

header img {
  height: 45px;
  width: auto;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #0ef;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #0ef;
  transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.particles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

main {
  flex: 1;
  margin-top: 120px;
  padding: 20px 8%;
  position: relative;
  z-index: 1;
}

h1.page-title {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #0ef;
  text-shadow: 0 0 10px #0ef, 0 0 20px #0ef;
  margin-bottom: 40px;
  position: relative;
  right: 40%;
}

section {
  padding: 60px 20px;
  color: #e4e4e4;
  position: relative;
  right: 40%;
  text-align: center;
}

section h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin: 0 auto 40px auto;
  color: #0ef;
  text-shadow: 0 0 10px #0ef, 0 0 20px #0ef;
  align-items: center;
  width: fit-content;
}

.sh2 {
  position: relative;
  right: 30%;
}





.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.grid .right,
.grid .left {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.grid .right .right-right,
.grid .right .right-left,
.grid .left .left-right,
.grid .left .left-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #0ef;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0ef;
}

.card span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 15px;
  display: block;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e4e4e4;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #0ef, 0 0 60px #0ef;
}

.card:hover::before {
  opacity: 0.2;
}

@media (max-width: 1000px) {
  .grid {
    flex-direction: column;
    align-items: center;
  }

  .grid .right,
  .grid .left {
    flex-direction: column;
  }
}