* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
}

.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 100;
  padding: 10px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-area a{
  text-decoration: none;
}

.logo {
  height: 50px;
  margin-right: 15px;
}

.company-text h1 {
  margin: 0;
  font-size: 22px;
  color: #004d40;
  line-height: 1.2;
}

.company-text p {
  margin: 0;
  font-size: 12px;
  color: #004d40;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation links */
nav ul {
  display: flex;
  list-style: none;
  gap: 35px; /* More spacing between links */
}

nav a {
  text-decoration: none;
  color: #004d40;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 16px;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #ff7a00;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("../images/cargo.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.overlay h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.overlay p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  background: #ff7a00;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e56a00;
}

/* Services Section */
.services {
  padding: 80px 10%;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #004d40;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  color: #333;
}

/* Footer */
footer {
  background: #004d40;
  color: white;
  text-align: center;
  padding: 20px;
}
