@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.footer-content {
  background-color: #353535;
  color: #ffffff;
}

.container1 {
  position: relative;
  min-height: 100vh;
  background-color: #353535;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  color: #ffffff;

}
.container1 img{
  max-width: 100%;
  height: auto;
}
.content1{
  margin-top: 100px; /* Adjust the margin based on the header height */
  margin-left: 10%;
  margin-right: 10%;
}
.content-heading {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ff5e00;
}
.content-title{
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff5e00;
}
.content-paragraph {
  font-size: 18px;
  margin-bottom: 20px;
}

.content-button {
  background-color: #ff5e00;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
}

.content-button:hover {
  background-color: #333;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #333; /* Add a background color for better visibility */
}

#navbar {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo {
  flex-grow: 1;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff5e00;
}

.language-dropdown {
  display: flex;
  align-items: center;
  color: #404040;
}

.language-dropdown select img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.language-dropdown select {
  background-color: #ff5e00;
  color: #ffffff;
  border: none;
  padding: 5px;
  font-size: 16px;
  appearance: none;
  margin-left: 20px;
}
