/* About Page */

/* Navbar */
header {
  width: 100%;
  background: #111;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00adb5;
}



.about {
  padding: 120px 60px 60px; /* space for fixed navbar */
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.about-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.about-text {
  max-width: 600px;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #111;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.about-text h2 span {
  color: #00adb5;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.about-text .btn {
  padding: 12px 25px;
  background: #00adb5;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: 0.3s;
}

.about-text .btn:hover {
  background: #007a7e;
}

/* Active nav link */
.nav-links .active {
  color: #00adb5;
}
