/* Ensure Correct Layout */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    position: relative;
}

/* Flowing AI Background */
.ai-lines img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    width: 80%;
}

/* Profile Image */
.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #B5A2F3;
    box-shadow: 0px 6px 20px rgba(181, 162, 243, 0.5);
}

/* Hero Title */
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #E0E0E0;
    margin-top: 15px;
    text-transform: capitalize;
}




/* CTA Button Styling */
.btn {
    background: linear-gradient(90deg, #A371F7, #7E57C2);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 15px rgba(167, 113, 247, 0.6);
    position: relative;
    overflow: hidden;
    border: none;   
    cursor: pointer;
}

/* Hover effect */
.btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 25px rgba(167, 113, 247, 1);
}

/* Adding a glowing animation */
@keyframes glowing {
    0% {
        box-shadow: 0 0 5px rgba(167, 113, 247, 0.6), 0 0 10px rgba(167, 113, 247, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(167, 113, 247, 1), 0 0 30px rgba(167, 113, 247, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(167, 113, 247, 0.6), 0 0 10px rgba(167, 113, 247, 0.5);
    }
}

/* Apply animation on hover */
.btn:hover {
    animation: glowing 1.5s infinite alternate;
}
