body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: url("../images/about-bg.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  color: white;
  transition: opacity 0.4s ease;
  font: 400 1.2rem 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.top-section {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 5px 10px;
  gap: 16px;
  position: relative;
  z-index: 20;
}

.company-logo {
  height: auto;
  width: clamp(80px, 15vw, 160px);
  object-fit: contain;
  display: block;
}

.top-navbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  margin-top: 20px;
  margin-right: 20px;
  border-radius: 50px;
  border: 2.5px solid white;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: black;
  background: white;
  font-weight: normal;
  padding: 5px 12px;
  border-radius: 25px;
  transition: all 0.3s;
}

.nav-links a.active, .nav-links a:hover {
  background: black;
  color: white;
  font-weight: 900;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 200;
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger.open {
    transform: rotate(90deg);
}

.hamburger i {
    pointer-events: none;
}

@media (max-width: 768px) {
  .top-section{
    padding: 12px;
  }

  .top-navbar {
    justify-content: flex-end;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    background: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 1.8rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    transition: right 0.4s ease;
    z-index: 90;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    background: none;
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    padding: 2.5px 6px;
    transition: all 0.3s;
  }

  .nav-links a.active, .nav-links a:hover {
    color: white;
    background: black;
  }
}

.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
}

.center-container {
  background: rgba(0,0,0,0.65);
  width: 70vw;
  max-width: 900px;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.title-row{
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 10px solid rgb(255, 189, 89);
  padding-left: 5px;
}

.title-row h2 {
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;  
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 768px) {
  .center-container {
    width: 90vw;
    padding: 1.5rem;
  }
}

.hamburger i {
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.hamburger.open i {
  transform: rotate(180deg);
  opacity: 1;
}

@media (max-width: 375px) {
  .top-section {
    padding: 0 5px 10px 5px;
  }
}

