.highlight {
    background: linear-gradient(to right, #0c6de0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer {
   /* background: #0b0f19;*/
    background: #1a1a1a;
    /*background-color: black;*/
    color: white;
    padding: 30px 10px;

    font-family: 'Poppins', sans-serif;
    
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
}

.footer-section h3 {
    color: #1e90ff;
    margin-bottom: 10px;
    margin-right: 10px;
}

.footer-section p, .footer-section ul {
    font-size: 0.9rem;
    color: #ccc;
    padding: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 2px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #1e90ff;
}

.footer-section p i {
    margin-right: 8px;
    color: #1e90ff;
}

    
.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 0.8rem;
    border-top: 1px solid #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        display: flex;
        justify-content: center;
    }
}

