se/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar */
.navbar {
  background: #0a2740;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 40px;
  margin-right: 10px;
}

.navbar nav ul {
  list-style: none;
  display: flex;
}

.navbar nav ul li {
  margin-left: 20px;
}

.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero */
.hero {
  background: url('assets/uae-port1.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .btn {
  background: #e63946;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
}

/* Sections */
.section {
  padding: 3rem 2rem;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section.bg-light {
  background: #f4f4f4;
}

.section.bg-dark {
  background: #0a2740;
  color: #fff;
}

/* Gallery */
.gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery img {
  max-width: 45%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Services */
.services-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.services-list li {
  margin: 0.5rem 0;
}

/* Footer */
.footer {
  background: #081b2f;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.section p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-icon {
  max-width: 60px;
  margin-bottom: 1rem;
}

.cert-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.cert-grid img {
  max-height: 80px;
}

.transport-gallery {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.transport-gallery img {
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
