
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-us {
    background-color: #29005C; 
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 100px;
}

.contact-us-container {
    max-width: 900px; 
    margin: 0 auto;
}

.contact-us-title {
    font-size: 36px;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease forwards; 
    opacity: 0; 
    animation-delay: 0.2s; 
}

.contact-us-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e0e0e0;
    animation: fadeIn 0.6s ease forwards; 
    opacity: 0; 
    animation-delay: 0.4s; 
}

.contact-methods {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    margin-bottom: 30px;
    position: relative;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex: 1; 
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0; 
    animation: fadeIn 0.6s ease forwards; 
}

.contact-method:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    z-index: 1; 
}

.contact-icon {
    font-size: 40px;
    color: #760AFF;
    margin-bottom: 10px;
}

.contact-link,
.contact-email {
    color: #760AFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-link:hover,
.contact-email:hover {
    color: #FF0000; 
    text-decoration: underline;
}

.contact-image {
    width: 80px; 
    height: auto;
    position: absolute;
    right: -100px; 
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.1); 
}

.contact-note {
    margin-top: 40px;
    opacity: 0; 
    animation: fadeIn 0.6s ease forwards; 
    animation-delay: 0.8s; 
}

.contact-note h3 {
    font-size: 24px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-note h3:hover {
    color: #FF0000; 
}

.contact-note p {
    font-size: 18px;
    color: #e0e0e0;
}

.contact-note-image {
    width: 150px;
    height: auto;
    margin-top: 20px;
    display: block; 
    margin-left: auto; 
    margin-right: auto;
}


.contact-method:nth-child(1) {
    animation-delay: 1s; 
}

.contact-method:nth-child(2) {
    animation-delay: 1.2s; 
}

.contact-method:nth-child(3) {
    animation-delay: 1.4s; 
}

.contact-method:nth-child(4) {
    animation-delay: 1.6s; 
}
