.custom-footer {
  position: relative;
  /* background-image: url('../../../assets/images/footer-bg-img.png'); */
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 60px 20px 30px;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background-color: rgba(0, 0, 0, 0.6); */
  background: linear-gradient(to right, #7b5b73, #bf86ae);

  z-index: 0;
}

.footer-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap; /* Allow wrap on small screens */
  justify-content: space-between;
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}


.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 250px;
}

.about {
  flex: 2 1 300px;
  min-width: 300px;
  max-width: 400px;
}
.footer-logo {
  width: 60px;
  margin-bottom: 15px;
  height: 62px;
}

.footer-col h3 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ddd;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col p a {
  color: #fff;
  text-decoration: none;
}

.footer-col p a:hover {
  color: #ddd;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 16px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ddd;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  margin-top: 40px;
  width: 100%;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-row {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col,
  .about {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-bottom {
    text-align: center;
  }

  #hide-this-section {
    display: none;
  }
}

@media (max-width: 768px){
  .footer-bottom{
    margin-top: 0px;
    padding-top: 10px;
  }
  .footer-left {
    margin-left: 0px !important;
  }
}
.social-icons img {
  background-color: white;
  padding: 5px;
  border-radius: 10px;
  height: 30px;
}  
#footer-p {
  text-align: justify;
}

