/* ==========================================================================
   FOOTER GLOBAL STYLES
   ========================================================================== */
.footer-bottom {
    background-color: #ef9a3e;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    border-top: 1px solid #eeeeee;
}

/* Titles/Headers */
.footer-bottom h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
   
}



/* List Styling */
.footer-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom ul li {
    margin-bottom: 12px;
}

.footer-bottom ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.footer-bottom ul li a:hover {
    color: #fff;
    padding-left: 5px; /* Subtle slide effect */
}

/* ==========================================================================
   SOCIAL ICONS & TOOLTIPS
   ========================================================================== */
.homeIcons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.socialIcon {
    width: 32px;
    height: 32px;
    color: #fff;
    padding: 7px;
    transition: all 0.3s ease;
}



/* Tooltip Logic */
.Tooltip {
    position: relative;
    display: inline-block;
}

.tooltiptext {
    visibility: hidden;
    width: 80px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 100%;
    margin-left: -40px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 11px;
}

.Tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* ==========================================================================
   NEWSLETTER FORM
   ========================================================================== */
.newsLetter {
    display: flex;
    margin-top: 15px;
}

.newsLetter .form-control {
    background: #fff;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 10px 15px;
    height: 45px;
    width: 100%;
    font-size: 14px;
}

.newsLetter button {
    background-color: #ef9a3e;
    color: #fff;
    border: 1px solid #ef9a3e;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsLetter button:hover {
    background-color: #333;
    border-color: #333;
}

/* ==========================================================================
   BOTTOM LOGO & COPYRIGHT (White Board)
   ========================================================================== */
.white_board {
    border-top: 1px solid #eee;
}

.white_board img {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.white_board span {
    font-size: 13px;
    color: #999;
    display: block;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 767px) {
    

 

    .col-sm-6 {
        margin-bottom: 30px;
    }

    .newsLetter {
        max-width: 300px;
        margin: 15px auto;
    }

    /* Remove the empty <br> spacing on mobile if needed */
    .footer-bottom .col-md-3 br {
        display: none;
    }
}