/* GLOBAL FONT (VERY IMPORTANT) */
body {
    font-family: 'Poppins', Arial, sans-serif;
}

/* MAIN FOOTER */
.glass-footer {
    margin-top: 60px;
    padding: 60px 30px;

    background: linear-gradient(180deg, #0b1a3a, #020617);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

/* GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* LOGO TITLE */
.glass-footer h2 {
    font-size: 22px;
    font-weight: 600;
    color: #7db8ff;
    margin-bottom: 10px;
}

/* HEADINGS */
.glass-footer h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff;
}

/* TEXT */
.glass-footer p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

/* REMOVE BULLETS */
.glass-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LINKS */
.glass-footer li {
    margin-bottom: 8px;
}

.glass-footer a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.glass-footer a:hover {
    color: #7db8ff;
    padding-left: 5px;
}

/* CONTACT ICON ALIGN */
.glass-footer p span {
    margin-right: 6px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    font-size: 13px;
    color: #64748b;
}

/* MOBILE */
@media(max-width: 768px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}