
* {
  padding: 0;
  margin: 0;

}
body {
  padding-top: 70px; 
  font-family: sans-serif;
  margin-top: 50px;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #E1A624;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: -90px;
  z-index: 900;

}

.logo img {
 height: 100px;
}

#nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;

}


#nav-links li {
  font-size: 18px;
}


#nav-links li a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#nav-links li a:hover {
  color: white;
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: black;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: #ccc;
}

@media screen and (max-width: 750px) {
  .menu-toggle {
    display: block;
  
  }

  #nav-links {
    flex-direction: column;
    background-color: #E1A624;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  #nav-links.active {
    display: flex;
  }
}


.contact-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 50px;
  background-size: cover;
  background-color:  #c7c6c6;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: -25;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;

}

.contact-info h2 {
  margin-bottom: 20px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 33px  0;
}

.info-box i {
  font-size: 24px;
  color: #E1A624;
  margin-top: 15px;
}

.info-box h4 {
  margin-bottom: 5px;
}


.contact-form {
  flex: 1;
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  min-width: 50%;
 
}



.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  font-size: 16px;
}

.contact-form form button {
  background-color:#E1A624;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.contact-form form button i {
  margin-right: 5px;
}

.contact-form form button:hover {
  background-color:#E1A624;
}

.footer {
  background-color: #555;
  margin-top: 70px;
  color: #ddd;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
 
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

.footer-section {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-section h3, .footer-section h4 {
  color: white;
  margin-bottom: 15px;
}

.footer-section ul {list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: white;
}

.social-icons a {
  color: #bbb;
  margin-right: 15px;
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #888;
  font-size: 14px;
  background-color:#E1A624 ;
  width: 100%;
}
