/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url("images/AIR.jpg") no-repeat center center/cover;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3 {
  color: #008C45;
}

p {
  color: #555;
}

/* Header */
header {
  background-color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 100%;
  cursor: pointer;
}

.company-name {
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #004d33;
}

/* Navigation */
.nav-right ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.nav-right a {
  text-decoration: none;
  font-weight: bold;
  color: #008C45;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  background: url("images/warehousing-transport.jpg") no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero h2,
.hero p {
  color: white;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #008C45;
  color: white;
  padding: 10px 30px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

/* Section */
.section {
  padding: 50px 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.service-item h3 {
  margin-bottom: 15px;
}

.service-item.full-width {
  grid-column: 1 / -1;
}

/* Gallery */
.gallery-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact */
.map-container {
  margin-top: 20px;
}

/* Footer */
footer {
  background: #004d33;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer p {
  color: white !important;
}

.footer-text {
  margin: 0;
}

/* Loader */
#video-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#video-loader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.loaded {
  overflow: auto;
}

body:not(.loaded) {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .company-name {
    font-size: 1.2rem;
  }

  .nav-right ul {
    justify-content: center;
    gap: 10px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}
