body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: url("../images/home-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;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 0;
}

.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;
  }
}

span {
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 50px;
  right: 25px;
  text-align: right;
  color: white;
  z-index: 5;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.15;
}

.hero-line-1{
  /* font-size: 2.75em; */
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.75em);
  font-weight: 400;
}

.hero-line-2{
  /* font-size: 5em; */
  font-size: clamp(2.2rem, 6vw + 0.5rem, 5em);
  font-weight: 700;
  color: rgb(255, 189, 89);
}

.hero-line-3{
  font-size: clamp(0.9rem, 2vw + 0.2rem, 1.2rem);
  font-weight: 400;
}

.hero-line-4{
  font-size: clamp(0.8rem, 1.8vw + 0.2rem, 1rem);
  margin-top: 5px;
}

.inner-line-4{
  display: inline-block;
  font-weight: 700;
}

#orange-bar {
  display: inline-block;
  width: 5px;
  height: 10px;
  background-color: rgb(255, 189, 89);
  margin-right: 10px;
}

.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;
  }
}

@media (max-width: 550px) {
  .hero-text {
    right: 10px;
    bottom: 30px;
    line-height: 1.25;
  }
}



