/* Footer Social Icons Styling */
.ftco-footer-social {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;           /* Use flex for horizontal alignment */
    flex-wrap: wrap;         /* Allow wrapping on small screens */
    gap: 10px;               /* Space between icons */
    justify-content: flex-start; /* Align left */
}

.ftco-footer-social li {
    margin: 0; /* Remove extra margin */
}

.ftco-footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #ff5e14;  /* Brand color */
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ftco-footer-social li a:hover {
    background: #0bb5b5;  /* Change on hover */
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.ftco-footer-social li a .fa {
    color: #ffffff !important;
}






