/* General Footer Styling */
footer {
    background-color: white !important;
    padding: 1rem 0;
    width: 100%;
    position: relative;  /* Adjusted for the layout */
    bottom: 0;
}

body {
    display: flex;
    flex-direction: column;
    height:fit-content ; /* Ensures body height fills the viewport */
}


footer h5 {
    margin-bottom: 1rem;
}

footer ul {
    padding-left: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #212529;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    text-decoration: underline;
    color: #007bff;
}

footer .list-inline {
    padding-left: 0;
}

footer .list-inline-item {
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    footer .text-center {
        text-align: center !important;
    }

    footer .mb-4 {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 576px) {
    footer h5 {
        font-size: 1.2rem;
    }

    footer ul li a {
        font-size: 0.9rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
  .download-app-section h5 {
    font-size: 1.4rem;
  }

  .store-buttons {
    gap: 40px !important;
  }

  .store-buttons a img {
    width: 160px !important;
    height: 45px !important;
  }
}

@media (max-width: 480px) {
  .download-app-section h5 {
    font-size: 1.2rem;
  }

  .store-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .store-buttons a img {
    width: 200px !important;
    height: 55px !important;
  }
}
@media (max-width: 768px) {
  .whatsapp-icon-wrapper {
    position: static !important;
    margin: 40px auto 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    margin-right: 130px !important;
  }
}

