/* General footer styling */
.half-moon-footer {
  /* background-color: #33e94d; */
  /* position: relative; */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* color: #78206e; */
  margin-top: 40px;
  font-size: 18px;
  text-align: center;
  width: 100%;
  padding: 40px 0px;
}

/* Half-moon effect */
/* .half-moon-footer::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  border-bottom: 2px solid black;
} */

/* Content layout */
.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin-bottom: 30px;
  margin-top: 30px;
}

/* Footer sections container */
.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 30px auto 30px auto;
}

/* Footer sections */
.foo-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 150px;
}

.foo-heading .foot-heading-link {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.foo-heading .foot-heading-link:after {
  content: '';
  background-color: #747372;
  width: 80px;
  display: block;
  position: relative;
  height: 2px;
  margin: 15px 0 0px 0;
}

.foo-heading ul {
  list-style: none;
  padding: 0;
}

.foo-heading ul li {
  margin-top: 2px;
}

.foo-heading ul li a {
  color: #bbb6b6 !important;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  font-weight: 500;
}

.foo-heading ul li a:hover {
  color: #f39c12;
}

/* Footer links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  font-weight: 700;
}

.footer-links a:hover {
  color: #f39c12;
}

/* Copyright section */
.copyright {
  font-size: 14px;
  font-weight: 500;
  color: #807e7e;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .footer-sections {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .foo-heading {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .half-moon-footer {
    font-size: 14px;
    padding: 30px 10px;
  }

  .half-moon-footer::after {
    height: 60px;
    top: -30px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .copyright {
    font-size: 12px;
  }
}


.half-moon-footer {
  color: white;
  padding: 30px 0;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* background: linear-gradient(rgb(243 204 176 / 95%), rgb(247 247 247 / 95%)), url('../img/footer.png') !important; */
  background-color: #070617;
}

.social-media,
.foo-heading p {
  color: #fff;
}


#toptobottom {
  right: 10%;
  bottom: 10%;
  position: absolute;
}