﻿/* ===============================
   Footer Styling
   =============================== */

.footerContainer {
    background: #0a1a2a;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    border-top: 4px solid #1a73e8;
}

.footercontainerNameHeading {
    text-align: center;
    margin-bottom: 25px;
}

.footercontainerNameHeadingLabel {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Footer Columns */
.footercontainerDetailsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.footercontainerDetailsSegments {
    min-width: 180px;

    text-align: center;
    font-weight: bold;
}

/* Segment Titles */
.footer-segment-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

/* Links */
.footercontainerUlContainer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerliSP1 {
    margin: 10px 0;
}

.footerlinkSP1 {
    color: #cfd9e5;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

    .footerlinkSP1:hover {
        color: #ffffff;
    }

    .footerlinkSP1::after {
        content: "";
        display: block;
        width: 0;
        height: 2px;
        background: #1a73e8;
        transition: width 0.3s ease;
        position: absolute;
        left: 0;
        bottom: -2px;
    }

    .footerlinkSP1:hover::after {
        width: 100%;
    }

/* Responsive footer */
@media (max-width: 768px) {
    .footercontainerDetailsContainer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-segment-title {
        margin-bottom: 8px;
    }
}
