html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    margin-top: auto; /* Push footer to the bottom */
    background: #222;
    color: #fff;
    padding: 20px 0;
}

.footer-nav {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.footer-nav li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.footer-nav li a:hover {
    color: #ccc;
}
.text-black{
    color: #000 !important;
}

.text-greys{
    color: #222 !important;
}
.circle-image {
    width: 150px;       /* Adjust as needed */
    height: 150px;      /* Same as width for a perfect circle */
    border-radius: 50%;
    object-fit: cover;  /* Ensures the image fills the circle without distortion */
    border: 2px solid #ccc; /* Optional: adds a border */
}