/* Animation for contact info */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Start slightly below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

/* Contact Info Section */
.contact-info-section {
    margin-top: 100px; /* Increase this value to move it lower */
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    color: #fff;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: flyInDown 1s ease-out; /* Add animation */
}


/* Contact Section Heading */
.contact-info-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #50b3f4;
}

/* Contact Information List */
.contact-info-section ul {
    list-style: none;
    padding: 0;
}

.contact-info-section li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Contact Links */
.contact-info-section a {
    color: #50b3f4;
    text-decoration: none;
    font-weight: bold;
}

.contact-info-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 15px;
        margin-top: 50px; /* Reduce margin for mobile */
    }

    .contact-info-section h2 {
        font-size: 2.5rem;
    }

    .contact-info-section li {
        font-size: 1rem;
    }
}

/* Hover effect for the cards */
.contact-info-section:hover {
    transform: translateY(-5px); /* Slight hover lift */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Shadow effect */
}
