

.footer {
  position: relative;
  background-color: #050714;
  padding: 120px 40px 40px;
  margin-top: 20px;
  color: white;
  font-family: sans-serif;
  width:98%;
  margin-left: auto;
  margin-right: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index:1;
}

/* Curved Top 
.footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -10px;
  width: calc(100% + 10px);
  height: 80px;
  background-color: #050714;
  border-radius: 20% 20% 0 0;
} */

.footer-top {
  width: 100%;
  margin-bottom: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h2,
.footer-section h3 {
  margin-bottom: 15px;
  color: white;
}

.footer-section h3{
  font-weight:500;
  font-size: 20px;}


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

.footer-section a{
    color:white;
}

.footer-section a:hover{
    color:#77abff;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section p {
  margin: 5px 0;
}


.footer-bottom {
  border-top: 1px solid #727272;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  padding: 0;
  margin: 10px auto 0;
  list-style: none;
}

.footer-bottom li{
    text-decoration: none;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover{
    color:rgb(255, 255, 255);
    cursor: pointer;
}

#logosection img{
width:50px;
}

#logosection{
    display:flex;
    flex-direction: row;
    font-size:22px;
    text-decoration: none;
    color: white;
    align-items: center;
}

#logosection h2{
    margin: 13px 0px 0px 10px;
    color: white;
}

#logosection #boxtext {
    color: white;
}


@media (max-width: 1080px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    width: 100%;
    text-align: center;
  }

  #logosection{
    justify-content: center;

  }

  #logosection h2{
    margin-top: 13px;
    font-size: 40px;;
  }

    .footer-bottom ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom li {
    margin-bottom: 8px;
  }

  .footer-bottom {
    font-size: 16px;
    padding: 20px 10px;
  }

 
}



