/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: url('images/header-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  line-height: 1.6;
}

/* Overlay to dim the background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: -1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  height: 50px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 90px;   /* Increased size */
  height: 90px;
  object-fit: contain;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  font-weight: bold;
}

.nav-links li a:hover {
  color: #30e3ca;
}
/* About Section */
.about-section {
  padding: 60px 15px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-section .container {
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px 20px;
  border-radius: 10px;
  animation: fadeInUp 0.8s ease-out both;
}

.about-section h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fdd835;
}

.about-section p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1.4;
}

html, body {
  height: 100%;
  overflow: hidden;
}
