*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.language-switcher {
  text-align: right;
  padding: 10px 20px;
}

.language-switcher button {
  margin-left: 5px;
  padding: 5px 10px;
  border: none;
  background-color: #f0f0f0;
  cursor: pointer;
  font-weight: bold;
  color: black;
}

.language-switcher button:hover {
  background-color: #00a9e0;
  color: white;
}


nav{
    width: 100%;
    height: 60px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    p{
        color: white;
        padding-left: 30px;
        font-family: cursive;
    }
}

.logo{
    width: 25%;
    display: flex;
    a{
        text-decoration: none;
    }
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-right: 20px;
}

.language-selector label {
  font-weight: bold;
  color: white;
}

.language-selector select {
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

.language-selector select:focus {
  outline: none;
  border-color: #007bff;
}

.list{
  width: 50%;
}

.list ul {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .list ul li a {
    color: white;
    text-decoration: none;
    transition: 1s;
    font-size: 17px;
}

.list ul li a:hover{
    color: rgb(45, 45, 246);
}

.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  padding-right: 20px;
  cursor: pointer;
  z-index: 1001;
}


.contact-info {
  background: #f3f3f3;
  padding: 20px;
  margin: 20px auto;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  font-family: Arial;
}
.contact-info i {
  color: #00a9e0;
  margin-right: 10px;
}


section{
    height: 600px;
    h1{
      text-align: center;
      padding-top: 15px;
      font-weight: 900;
    }
}

form {
    max-width: 400px;
    margin: 70px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  form {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

  
input, textarea {
  padding: 12px;
  border-radius: 8px; 
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

.rating-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: Arial;
  gap: 5px;
}

.stars {
  direction: rtl;
  unicode-bidi: bidi-override;
}

.stars input[type="radio"] {
  display: none;
}

.stars label {
  font-size: 25px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.stars input[type="radio"]:checked ~ label {
  color: #f5b301;
}


button {
  background-color: #00a9e0;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px; 
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #008c9e;
}

.sec2{
  height: 70vh;
  width: 100%;
  img{
    height: 100%;
    width: 100%;
  }
}

footer {
  background-color: black;
  color: #f1f1f1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footlogo img {
  width: 200px;
  margin-bottom: 20px;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}

.contact, .social-links {
  width: 45%;
}

.contact h3, .social-links h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.contact ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.contact ul li {
  font-size: 1em;
}

.contact a {
  color: blue;
  text-decoration: none;
}

.social-links a {
  color: #fff;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.social-links a:hover {
  color: #00aeef;
}
  
@media (max-width: 768px) {

  nav {
    width: 100%;
    padding: 0 15px;
    position: relative; 
    z-index: 1000;
  }

  nav .list ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    border-radius: 8px;
    z-index: 999;
  }

  nav .hamburger {
    display: block;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }

  nav .list ul.show {
    display: flex;
  }

  nav .list ul li {
    margin: 10px 0;
    text-align: center;
  }

  footer .footer-info {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .sec2{
    display: none;
  }

  footer{
    margin-top: 10px;
  }

  footer .contact, footer .social-links {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  footer .contact ul li {
    font-size: 1em;
  }

  footer .social-links a {
    font-size: 1.5em;
  }
}