/* ======= Header ======= */
#header {
  background-color: #2d3e50;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logoed img {
  width:30px;
  height: auto;
}

#navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

#navbar ul li {
  position: relative;
  margin-right: 30px;
}

#navbar ul li a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

#navbar ul li a:hover {
  color: #ff7f50; /* Coral color */
  transform: scale(1.1);
}

/* Dropdown Menu */
#navbar ul li .dropdown:hover > .dropdown-menu {
  display: block;
}

#navbar ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2d3e50;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  list-style: none;
  width: 180px;
}

#navbar ul li .dropdown-menu li a {
  font-size: 14px;
  padding: 10px 20px;
  color: #fff;
  transition: background-color 0.3s ease;
}

#navbar ul li .dropdown-menu li a:hover {
  background-color: #ff7f50; /* Coral color */
}

/* Mobile Menu */
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  #navbar ul {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  #navbar ul li {
    margin: 10px 0;
  }

  .mobile-nav-toggle {
    display: block;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }

  #navbar ul li a {
    padding: 15px 20px;
    width: 100%;
    text-align: left;
  }

  #navbar ul li .dropdown-menu {
    width: 100%;
    left: 0;
  }

  #navbar ul li .dropdown-menu li a {
    padding-left: 30px;
  }
}


/* ======= Footer ======= */
#footer {
  background-color: #2d3e50;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}

.footer-contact h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 16px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff7f50; /* Coral color */
}

.footer-newsletter h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-newsletter p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-newsletter form {
  display: flex;
  justify-content: space-between;
}

.footer-newsletter input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  flex: 1;
}

.footer-newsletter input[type="submit"] {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #ff7f50;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover {
  background-color: #e67e4e;
}

/* Footer Bottom Section */
.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom .copyright {
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-bottom .lock {
  width: 18px;
  height: 18px;
  margin-left: 5px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.social-links img {
  width: 30px;
  height: 30px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff7f50;
  border: none;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
  z-index: 999;
}

.back-to-top:hover {
  background-color: #e67e4e;
}

#footer img {
    width: 10px;
}

.chevron-right {
    width: 10px;
}

.back-to-top img {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-top {
    text-align: center;
  }

  .footer-contact,
  .footer-links,
  .footer-newsletter {
    margin-bottom: 30px;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input[type="text"],
  .footer-newsletter input[type="submit"] {
    width: 100%;
    margin-bottom: 10px;
  }

  .social-links {
    text-align: center;
  }
}


