/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body with full background */
body {
  font-family: Arial, sans-serif;
  background: url("aboutus.png") no-repeat center center fixed;
  background-size: cover;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header/Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white; /* White navbar */
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo img {
  height: 50px;
}

/* Navbar */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: black; /* Black text for links */
  font-size: 16px;
  transition: color 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #ff4d00; /* Orange highlight */
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: black; /* Black lines for hamburger */
  border-radius: 3px;
}

/* Hero Section */
.intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  min-height: 100vh;
}

.intro h1 {
  font-size: 60px;
  font-weight: bold;
  color: #ff4d00; /* TSWAY in orange */
  margin-bottom: 20px;
}

.intro p {
  font-size: 20px;
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Button */
.view-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff4d00;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}

.view-btn:hover {
  background: #ff4d00;
}

/* Company Profile Section */
.company-profile {
  background: url("bgg.png") no-repeat center center fixed;
  background-size: cover;
  
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  
  padding: 20px;
  min-height: 100vh;       /* full viewport height */
}

/* Semi-transparent box */
.profile-box {
  background: rgba(255, 255, 255, 0.5); /* white with 50% opacity */
  padding: 40px;
  border-radius: 15px;
  max-width: 900px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Content inside the box */
.profile-content {
  width: 100%;
  text-align: left; /* align everything to the left */
}

/* Headings in orange, left-aligned */
.profile-content h2,
.profile-content h3,
.profile-content h4 {
  color: #ff4d00;  /* orange */
  margin-bottom: 15px;
  text-align: left; /* left-align headings */
}

/* Paragraphs and list text in black and justified */
.profile-content p,
.profile-content ul {
  color: black;      /* black text */
  text-align: justify;  /* justify paragraphs and lists */
  margin-bottom: 20px;
  line-height: 1.6;
}

/* List styling */
.profile-content ul {
  padding-left: 20px;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #ff4d00; /* TSWAY in orange */
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    position: absolute;
    top: 70px;
    right: 0;
    background: white; /* White dropdown */
    width: 200px;
    display: none;
    flex-direction: column;
    padding: 15px;
    border-radius: 5px;
  }

  .navbar.show {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }

  .hamburger {
    display: flex;
  }

  .intro h1 {
    font-size: 40px;
  }

  .intro p {
    font-size: 16px;
  }
}
