.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px 40px;
  position: relative;
}
.navbar h1 {
  color: white;
  font-size: 24px;
}
.navbar ul {
  list-style: none;
  display: flex;
}
.navbar ul li {
  margin: 0 10px;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 5px;
}

/* Full-screen mobile menu styling */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}
.mobile-menu ul {
  flex-direction: column;
  text-align: justify;
}
.mobile-menu ul li {
  margin: 20px 0;
}
.mobile-menu ul li a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar ul {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-menu.show {
    display: flex;
  }
  .banner {
    background-size: cover;
  }
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 40px 40px;
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.footer-about,
.footer-links,
.footer-social {
  flex-basis: 30%;
  margin-bottom: 20px;
}

.footer h3,
.footer h4 {
  margin-bottom: 15px;
}

.footer p {
  font-size: 16px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-social .social-icons a {
  margin-right: 15px;
}

.footer-social .social-icons a img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-social .social-icons a img:hover {
  transform: scale(1.1);
}

.social-icons a {
  margin-right: 15px; /* Space between icons */
  font-size: 24px; /* Set icon size */
  transition: transform 0.3s; /* Add transition for hover effect */
}

.social-icons a.youtube {
  color: red; /* Facebook color */
}

.social-icons a.twitter {
  color: #1da1f2; /* Twitter color */
}

.social-icons a.instagram {
  color: #e130d2; /* Instagram color */
}

.social-icons a.linkedin {
  color: #0077b5; /* LinkedIn color */
}

.social-icons a:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.footer-social .footer-email {
  margin-top: 20px;
}

.footer-email a {
  color: white;
  text-decoration: none;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-social {
    flex-basis: 100%;
    margin-bottom: 20px;
  }

  .footer-about p {
    max-width: 400px;
  }
}

@media screen and (max-width: 480px) {
  .footer-social .social-icons a {
    margin-right: 10px;
  }

  .footer-social .social-icons a img {
    width: 28px;
    height: 28px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}


/* Scroll to Top Button Style */
#scrollTopBtn {
  display: none; /* Hidden initially */
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adds a subtle shadow */
  transition: opacity 0.3s ease;
}

#scrollTopBtn i {
  margin-top: 8px; /* Vertically aligns the icon better */
}

#scrollTopBtn:hover {
  background-color: #555; /* Change background on hover */
}
