/* General Section Styles */
.custom-projects {
    padding: 80px 20px;
    text-align: center;
    background-color: #e0f7fa;
    height: 47vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Initial state - before animation */
.custom-filler {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 0.8s ease-out;
}

/* Triggered when the animation starts */
.custom-filler.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Heading Styles */
.custom-heading {
    font-size: 4rem; /* Bigger font size */
    color: #00796b;
    margin-bottom: 20px;
    animation: fadeInPop 1.2s ease-out;
}

/* Button Styles */
.custom-button.custom-border-green {
    padding: 15px 30px;
    font-size: 1.5rem;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.custom-button.custom-border-green:hover {
    background-color: #4CAF50;
    color: white;
    transform: scale(1.1); /* Slightly enlarge button on hover */
}

/* Keyframe animation for fade-in and scale effect */
@keyframes fadeInPop {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
