/* Container to force the button to the middle */
.edutech-button-center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 40px 0; /* Adjust spacing above and below */
}

/* Updated Edutech Orange Button */
.edutech-orange-button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.6rem;
    padding-inline: 1.5rem;
    background-color: #ea580c; /* Edutech Orange */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    gap: 10px;
    font-family: 'Poppins', sans-serif; /* Applied Poppins */
    font-weight: bold;
    border: 3px solid rgba(255, 255, 255, 0.3);
    outline: none;
    overflow: hidden;
    font-size: 16px;
    /* Added this to ensure link looks like a button */
    text-decoration: none; 
    width: fit-content;
}

.edutech-orange-button .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

/* Hover Effects */
.edutech-orange-button:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    background-color: #f97316; /* Slightly lighter orange on hover */
}

.edutech-orange-button:hover .icon {
    transform: translateX(4px);
}

/* Shine Animation Logic */
.edutech-orange-button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.edutech-orange-button:hover::before {
    animation: edutech-shine 1.5s ease-out infinite;
}

@keyframes edutech-shine {
    0% { left: -100px; }
    60% { left: 100%; }
    to { left: 100%; }
}