.footer-section {
    background: linear-gradient(135deg, #0c0b1f, #14133a);
    padding: 80px 0 35px;
    color: #ccc;
    margin-top: 3%;
}

/* Titles */
.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 14px;
}


/* Logo */
.footer-logo {
    height: 60px;
    display: block;
    width: 90px;
}
.footer-logo img{
    height: 100%;
    width: 100%;
    border-radius: 15%;
}

/* Text */
.footer-text {
    margin-top: 5%;
    font-size: 14px;
    line-height: 1.7;
    color: #b8b8c7;
}

/* List */
.footer-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list span {
    color: #fe0000ad;
    font-weight: 600;
}

/* Social Icons */
.social-icons {
    margin-top: 14px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fe0000ad;
    color: white;
}

/* Divider */
.footer-divider {
    margin: 40px 0 20px;
    border-color: rgba(255, 255, 255, 0.15);
}

/* Bottom */
.footer-bottom {
    font-size: 13px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}