/* Set global styles */
* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background-color: #222831;
  color: #eeeeee;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #393e46;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 10px;
}

nav a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  background-color: #f7f7f7;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

nav a:hover {
  background-color: #333;
  color: #fff;
}

nav a.active {
  background-color: #333;
  color: #fff;
}

nav a.btn {
  background-color: #5a5ae5;
  color: #fff;
  font-weight: bold;
}

nav a.btn:hover {
  background-color: #8a8aff;
}

.welcome-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url("Assets/Texture.jpg");
  background-size: cover;
  background-position: center;
}

.welcome-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 800px;
}

.welcome-content h1 {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.welcome-content p {
  font-size: 24px;
  color: #666;
  margin-bottom: 40px;
}

.section-divider {
  height: 5px;
  background-image: linear-gradient(to right, #4c4c4c, #f6f6f6, #4c4c4c);
  background-size: 200% auto;
  animation: gradient 4s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.headquarter-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: #f9f9f9;
}

.headquarter-text h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.headquarter-locations {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 20%;
  margin-bottom: 20px;
}

.location img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.location h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 0;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.message-section {
  padding: 50px 0;
  background-color: #f8f8f8;
  animation: slideInFromLeft 1s ease-in-out;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

.message-us {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

form {
  display: inline-block;
  text-align: left;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

textarea {
  height: 150px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: #f0f0f0;
  color: #333;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background-color: #e0e0e0;
  border: 1px solid #333;
}

button[type="submit"] {
  display: block;
  margin-top: 30px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #0088cc;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

button[type="submit"]:hover {
  background-color: #0077b3;
}

@media only screen and (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }

  nav {
    margin-top: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav li {
    margin: 5px 0;
  }

  .welcome-section {
    height: auto;
  }

  .welcome-content {
    padding: 20px;
  }

  .headquarter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .headquarter-text {
    margin-top: 20px;
  }

  .headquarter-locations {
    flex-direction: column;
  }

  .location {
    margin-bottom: 20px;
  }

  .message-section {
    padding: 20px;
  }
}

/* Style the footer */
footer {
  padding: 20px 0;
  text-align: center;
  width: 100%;
  bottom: 0;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer p {
  font-size: 14px;
  color: #333;
}

::-webkit-scrollbar {
  background-color: #eeeeee;
}

::-webkit-scrollbar-thumb {
  background-color: #5a5ae5;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: #393e46;
}
