@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


.footer-collab {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-collab-text {
    justify-content: center !important;
    align-items: center !important;
    flex: 1;
    /* margin: 20px 15px 20px; */
    max-width: 1200px;
    transition: transform 0.3s ease;
}
.footer-collab-section {
    flex: 1;
    min-width: 200px;
    margin: 0 15px 60px;
    max-width: 1200px;
    transition: transform 0.3s ease;
}

footer {
    background: #1e1e1e;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 4rem 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 2rem 5%;
    box-sizing: border-box;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 0 15px 20px;
    max-width: 300px;
    transition: transform 0.3s ease;
    text-align: justify;
}

.footer-section:nth-child(2) {
    max-width: 250px;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
}

.footer-title::after {
    content: '';
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #f44336, #ff9800);
    display: block;
    margin: 8px 0;
    margin-left: 4px;
    transition: width 0.3s ease;
}

.footer-section:hover .footer-title::after {
    width: 120px;
}

.footer-text {
    color: #ccc;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section:hover .footer-text {
    color: #fff;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f44336;
    transform: translateX(10px);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social {
    /* margin-bottom: 15px; */
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-top: 10px;
    width: 100%;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    position: relative;
}

.footer-social a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(244, 67, 54, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    color: #f44336;
    transform: translateY(-5px);
}

.footer-social a:hover::before {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px dotted rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    position: relative;
    color: white;
}

.footer-bottom p {
    position: relative;
    display: inline-block;
    color: white;
    margin: 0;
    padding: 0;
}

.footer-bottom p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f44336, #ff9800);
    transition: width 0.3s ease;
}

.footer-bottom p:hover::after {
    width: 100%;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-section {
        min-width: 100%;
    }

    .footer-section:hover {
        transform: none;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1rem;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        font-size: 1.2rem;
    }
}