/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #003366;
  color: #fff;
}

header .logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('home.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero h1 {
  font-size: 32px;
  max-width: 800px;
  background: rgba(0,0,0,0.5);
  padding: 15px;
  border-radius: 8px;
}

.btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffcc00;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.btn:hover {
  background: #e6b800;
}

/* Countries Line */
.countries {
  background: #0055a5;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #003366;
  color: white;
  margin-top: 20px;
}
/* Services Page Background */
.services-bg {
  background: url("services.jpg") no-repeat center center/cover;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;  /* text white for clarity */
}

/* Transparent box for content */
.services {
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  padding: 30px;
  max-width: 900px;
  margin: auto;
  border-radius: 12px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  header nav a {
    display: block;
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 24px;
    margin: 20px;
  }

  .countries {
    font-size: 16px;
    padding: 15px;
  }
}


