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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: #222;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #007bff;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-brand {
  font-size: 1.4rem;
  font-weight: 600;
}

.hamburger {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

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

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links li a:hover,
.nav-links li a.active {
  text-decoration: underline;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background: #007bff;
    width: 50%;
    position: absolute;
    top: 60px;
    right: 0;
    display: none;
    padding: 10px;
    border-radius: 0 0 0 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
  }
}

/* About Section */
.about-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #f1f1f1;
  color: #444;
  margin-top: 40px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}