@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0e0e0e;
  color: #e0e0e0;
  overflow-x: hidden;
}

/* moving dots bg */
.background-dots {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: moveDots 30s linear infinite;
  z-index: -1;
}

@keyframes moveDots {
  0% { background-position: 0 0; }
  100% { background-position: -300px -300px; }
}

/* navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(30, 30, 30, 0.8);
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  z-index: 10;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar a {
  color: #bcbcbc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: #fff;
}

/* container */
.container {
  max-width: 900px;
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 0 20px;
}

/* sections */
.section {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

p {
  font-size: 1.1rem;
  color: #c0c0c0;
  line-height: 1.8;
  text-align: left;
  margin: 0 auto;
  max-width: 800px;
}

/* footer */
footer {
  text-align: center;
  padding: 40px 0;
  font-size: 0.9rem;
  color: #808080;
}

.logo-img {
  width: 35px; /* Adjust width to 50px or as you prefer */
  height: auto; /* Maintain aspect ratio */
  margin-right: 15px; /* Add space between logo and text */
}

