/* General Animations for Section Heading and Items */
section h2 {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    animation: fadeIn 1.2s ease-in-out;
}

.about, .skills, .experience, .education, .contact {
    background: #fff;
    margin: 10px 0;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

/* Animated Button */
header .btn {
    display: inline-block;
    background: linear-gradient(90deg, #e8491d, #ff6347);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    margin-top: 10px;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1.5s ease-in-out;
}

header .btn:hover {
    background: linear-gradient(90deg, #ff6347, #e8491d);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Adding a hover effect for service items */
.experience-item, .education-item {
    padding: 20px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.experience-item:hover, .education-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.1);
}