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

body {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(120deg, #001643, #233b6b);
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #0f613e;
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.logo {
  height: 40px;
  width: auto;
  cursor: pointer;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
}

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

/* Hero Section */
.near {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  min-height: 90vh;
  background: url('https://images8.alphacoders.com/114/1143494.jpg') center/cover no-repeat;
}

.near-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: #002A7F;
  padding: 2rem;
  border-radius: 15px;
}

.banner-img {
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px #008C50;
}

.cta h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.btn-glow {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #008C50;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 10px #008C50, 0 0 20px #008C50;
  transition: transform 0.2s ease, background 0.3s;
}

.btn-glow:hover {
  transform: scale(1.05);
  background: #717813;
}


.btn-glow:hover {
  transform: scale(1.05);
}

/* Artikel */
.artikel {
  padding: 4rem 2rem;
  background: #001643;
  text-align: center;
}

.artikel h2 {
  font-size: 2rem;
  color: #008C50;
  margin-bottom: 2rem;
}

.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #2a2a40;
  padding: 2rem;
  border-radius: 12px;
  width: 280px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  color: #008C50;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #8a9b40;
  text-align: center;
  padding: 2rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

.footer .socials {
  margin-top: 1rem;
}

.footer .socials a {
  margin: 0 0.5rem;
  display: inline-block;
}

.footer .socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0.9);
  transition: transform 0.3s ease;
}

.footer .socials img:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .banner-img {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
}