/* Footer Styles */
.custom-footer {
    background-color: #151b29; /* Dark Navy Blue background */
    color: #ffffff;
    padding: 40px 20px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 50px; /* Space sa taas ng footer */
    font-family: 'Poppins', sans-serif; /* Palitan kung iba ang font mo */
}

.footer-container {
    max-width: 1200px; /* Kaparehas ng width ng content mo */
    margin: 0 auto;
    text-align: left;
}

/* Name Styles */
.footer-branding h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #007bff;;
}

/* Kulay nung apelyido (yung bluish/purple style) */
.footer-branding .highlight {
    color: white; /* Adjust mo ito kung gusto mo darker blue */
}

/* Role / Subtitle Styles */
.footer-branding p {
    font-size: 14px;
    color: #9ca3af; /* Grayish text */
    margin-top: 5px;
    margin-bottom: 20px;
}

/* The Line Separator */
.footer-line {
    width: 100%;
    height: 1px;
    background-color: #374151; /* Dark gray line color */
    margin: 20px 0;
}

/* Copyright Styles */
.footer-copyright p {
    font-size: 12px;
    color: #6b7280; /* Darker gray text */
    text-align: center; /* Center align katulad sa common footers */
    margin: 0;
}