

footer {
    background-color: rgb(1, 4, 37);
    color: white;
    padding: 40px 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-divider {
    border: none;
    border-top: 1px solid white;
    margin: 20px 0;
    width: 100%;
}

footer div:first-child {
    flex: 1 1 200px;
}

footer img {
    width: 200px;
}

footer p {
    flex-basis: 100%;
    margin-top: 20px;
    font-size: 14px;
}

.prod,
.solu,
.price,
.serv {
    flex: 1 1 150px;
    margin: 10px;
}

footer h6 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin: 5px 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.fbut {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: row; /* Changed from column to row */
  align-items: flex-end;
  gap: 8px; /* Optional: adds space between buttons */
}

.footer-logo img {
  width: 200px;
}

.fbut li {
  margin-bottom: 0;     /* Remove bottom margin */
  margin-right: 8px;    /* Optional: space between buttons */
  list-style: none;     /* Optional: remove bullet points */
}

.ct-button {
    background-color: #007bff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}


/* Media Query for Responsive Design */
@media (max-width: 100%) {
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 0;
        margin-bottom: 10px;
    }
}