* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Main Footer Styles */
.footer {
    width: 100%;
    background-color: #333;
    color: #fff;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 40px;
    min-height: 350px;
    background-color: #333;
    background-image: url('/images/footerbg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom center;
    z-index: 2;
    opacity: 0.7;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    position: relative;
    z-index: 3;
}

.footer-column p{
    margin-bottom: 10px;
}

.footer h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ff6b6b;
}

.location-header{
    color: white;
    font-weight: 500;
}

.location-header {
  display: inline-block;
  position: relative;
  color: white; /* optional */
  margin-bottom: 0; /* Remove extra space */
  line-height: 1; /* optional to tighten */
}

.location-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* or try bottom: -1px if needed */
  width: 100%;
  height: 1.5px;
  background-color: white;
}



.footer-location, .footer-contact {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.location-title {
    color: #ff6b6b;
    margin-bottom: 5px;
    font-size: 16px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    fill: #ff6b6b;
}

.footer-social-icons {
    display: flex;
    gap: 15px;

  }
  
  .footer-social-icons a {
    font-size: 22px;
    transition: color 0.3s, font-size 0.3s ease;
    color: black;
  }
  
  .footer-social-icons a:hover {
    opacity: 0.7;
  }
  
  .footer-social-icons .fa-whatsapp { color: #25D366; }
  .footer-social-icons .fa-instagram { color: #E1306C; }
  .footer-social-icons .fa-youtube { color: #FF0000; }
  .footer-social-icons .fa-linkedin { color: #0077B5; }
  .footer-social-icons .fa-facebook { color: #1877F2; }
  
/* Bottom Footer */
.footer-bottom {
    padding: 15px 40px;
    background-color: #222;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
}

.footer-nav a {
    margin-right: 20px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff6b6b;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-copyright {
    text-align: center;
    width: 100%;
    padding-top: 10px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .footer-column {
        flex: 100%;
        margin-bottom: 20px;
        text-align: center; /* Center text inside columns */
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center children horizontally */
        text-align: center;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 15px;
        justify-content: center;
    }

    .footer-nav a {
        margin: 0 10px 10px;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

   footer .footer-social-icons {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .footer-main {
        padding: 20px;
    }

    .footer-bottom {
        padding: 15px 20px;
    }

    .footer-social-icons {
        justify-content: center;
    }
}


.address-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
  }
  
  .address-link p {
    margin: 0;
  }
  
  .address-link:hover p {
    text-decoration: underline;
    cursor: pointer;
  }
  