* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0b0f1a;
  color: #e0e6f0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: linear-gradient(135deg, #00f6ff, #1e90ff, #02478b);
  animation: pulseGradient 10s ease infinite;
  background-size: 200% 200%;
  color: #0b0f1a00;
  padding: 20px 0;
  position: relative;
  z-index: 999;
}

@keyframes pulseGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.logo {
  width: 70px;
}

.logo:hover {
  filter: drop-shadow(0 0 6px #00c8ff);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #0b0f1a;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.nav-links .active {
  color: #00c8ff;
}

.nav-links a:hover {
  color: #00c8ff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;

  position: relative;
  padding: 5px;
  border-radius: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: linear-gradient(135deg, #00f6ff, #1e90ff);
  animation: pulseGradient 10s ease infinite;
  transition: all 0.4s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100%;
  background-color: #0b0f1a;
  flex-direction: column;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-decoration: none;
  display: block;
}

.mobile-menu a:hover,
.mobile-menu .active {
  color: #00c8ff;
}

.hero {
  background-color: transparent;
  color: #eff1f5;
  padding: 60px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #1e90ff;
}

.hero p {
  font-size: 15px;
  color: #faf9f9;
}

.news-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.news-card {
  background-color: #121829;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #1e90ff;
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.85);
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  color: #1e90ff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.meta {
  font-size: 0.67rem;
  color: #888;
  margin-bottom: 15px;
}
.desc {
  font-size: 14px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #1e90ff;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.motive {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}
.motive p {
  font-size: 2rem;
  color: #1e90ff;
  font-weight: 600;
  font-style: italic;
}

.footer {
  background-color: #000;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}

/* Tablet */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .news-section {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
    max-width: 90%;
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .news-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 0;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .news-card img {
    height: 160px;
  }

  .news-content h3 {
    font-size: 1rem;
  }

  .read-more {
    font-size: 0.9rem;
  }
}
