

    .redirectLink {
        display: inline-block;
        padding: 15px 30px; /* Adjusted padding for a larger button */
        font-size: 18px; /* Increased font size */
        font-weight: bold;
        color: #ffffff; /* Text color */
        background: linear-gradient(145deg, #007bff, #0056b3); /* Gradient background */
        border: none;
        border-radius: 30px; /* More rounded corners for a modern look */
        text-decoration: none; /* Remove underline */
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), /* 3D shadow */
                    -5px -5px 10px rgba(255, 255, 255, 0.5); /* Light highlight */
        transition: all 0.3s ease; /* Smooth transition */
        cursor: pointer; /* Pointer cursor on hover */
        position: relative; /* Positioning for pseudo-element */
    }

    .redirectLink::before {
        content: ''; /* Pseudo-element for additional styling */
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 30px; /* Match button corners */
        background: rgba(255, 255, 255, 0.1); /* Light overlay */
        opacity: 0; /* Hidden by default */
        transition: opacity 0.3s ease; /* Smooth fade */
        z-index: 0; /* Behind the button text */
    }

    .redirectLink:hover::before {
        opacity: 1; /* Show overlay on hover */
    }

    .redirectLink:hover {
        background: linear-gradient(145deg, #0056b3, #007bff); /* Reverse gradient on hover */
			color: #ffffff;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3), /* Enhanced shadow on hover */
                    -10px -10px 20px rgba(255, 255, 255, 0.6); /* Enhanced highlight */
        transform: translateY(-3px); /* Lift effect on hover */
    }

    .redirectLink:active {
        background: linear-gradient(145deg, #003f7f, #0056b3); /* Darker gradient when active */
        transform: translateY(1px); /* Depress effect when clicked */
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), /* Normal shadow when active */
                    -5px -5px 10px rgba(255, 255, 255, 0.5); /* Light highlight */
    }

