/* =====================================================
   ✅ FOOTER PANEL STYLING
   ===================================================== */

.footerpanel1 {
    background-color: #F8F9FA;
    border-top: 0.1rem solid #0A58CA;
    border-bottom: 0.1rem solid #0A58CA;
    width: 100%;
    margin: 0;
    padding: 2rem 0;
}

/* ===== Footer Container ===== */
.footer-container {
    max-width: 75rem;             /* ✅ same as .container (75rem) */
    margin: 0 auto;
    
    /* ✅ same side padding feel as header container */
    padding: 0 2rem;
    box-sizing: border-box;

    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;                    /* breathing room between columns */
}

/* ===== Footer Lists ===== */
.footerpanel1 ul {
    margin: 0 1rem;
    padding: 0;
    list-style: none;
    text-align: left;
}

/* Each List Item (all columns) */
.footerpanel1 ul li {
    display: block;
    margin: 0.4rem 0;
    text-align: left;
}

/* ===== Section Titles (Buttons) ===== */
.footerpanel1 ul p {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.6rem;
}

.footerpanel1 ul p button {
    border: 0.1rem solid #0A58CA;
    font-size: 1rem;
    font-weight: bold;
    background-color: #0A58CA;
    color: white;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.footerpanel1 ul p button:hover {
    background-color: #084298;
    transform: scale(1.05);
}

/* ===== Footer Links ===== */
.footerpanel1 ul a {
    display: flex; /* allows icon and text alignment */
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerpanel1 ul a:hover {
    color: #0A58CA;
    text-decoration: underline;
}

/* ===== Social Icons (Single Column) ===== */
.footerpanel1 ul li {
    margin: 0.6rem 0;
}

.footerpanel1 ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.footerpanel1 ul li a i {
    font-size: 1.3rem;
    line-height: 1.2;
    transition: transform 0.2s ease, color 0.2s ease;
}

.footerpanel1 ul li a:hover i {
    transform: scale(1.2);
    color: #084298;
}

/* ===== Second Footer Bar (Copyright) ===== */
.footer-panel2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F9FA;
    border-bottom: 0.1rem solid #0A58CA;
    font-size: 1rem;
    font-weight: bold;
    padding: 1rem 0;
    text-align: center;
}

.footer-panel2 a {
    text-decoration: none;
    color: #0A58CA;
    margin-left: 5px;
}

.footer-panel2 a:hover {
    text-decoration: underline;
}
