/* Reset */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 2s ease, opacity 1s ease-in-out;
}

/* Text Styling */
.hero-title {
    font-size: 4rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    animation: fadeInDown 2s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    animation: fadeInUp 2s ease;
}






/* Button Container */
.button-container {
    text-align: center;
    text-decoration: none;
    list-style: none;
}

/* Stylish Button */
.styled-button {
    background: linear-gradient(90deg, #000000, #ff0000);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Button Hover Effect */
.styled-button:hover {
    background: linear-gradient(90deg, #ff0000, #000000);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Glowing Animation */
.styled-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50px;
    z-index: 0;
}

.styled-button:hover::before {
    opacity: 1;
    animation: glow 1.5s infinite;
}

/* Keyframes for Glowing Effect */
@keyframes glow {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }

    
}


/* Button Text Style */
.styled-button span {
    position: relative;
    z-index: 1;
}







