/* Collaborate Section Styles */
.collaborate-section {
    
    color: #fff;
    
    text-align: center;
    border-radius: 10px;
    
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    
}

.collaborate-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    justify-content: center;
}

.collaborate-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
}

.collaborate-container p {
    font-size: 3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    text-align: center;
    justify-content: center;
}

.collaboration-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    justify-content: center;
    
}

.collaboration-list li {
    font-size: 2rem;
    margin: 0.5rem 0;
    display: flex;
    text-align: center;
    justify-content: center;
    
}

.collaboration-list li::before {
    content: "✔️";
    color: #ffc107;
    font-size: 2rem;
    text-align: center;
    
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 2rem; /* Larger padding for a bigger button */
    font-size: 1.5rem; /* Larger text size for emphasis */
    font-weight: bold;
    color: #000; /* Black text */
    background-color: #fff; /* White background */
    border: none;
    border-radius: 10px; /* Rounded edges for a softer look */
    text-decoration: none;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3); /* Deeper shadow for pop effect */
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.cta-button:hover {
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
    transform: translateY(-4px); /* Subtle bounce effect */
    cursor: pointer;
}

.cta-button:active {
    transform: translateY(2px); /* Push down effect when clicked */
}

.cta-button {
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}