/* Hero Section with aurora gradient */
.hero {
    background: linear-gradient(to bottom, #020111, #002f4b, #3a0078);
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 10px;
}

/* Section Backgrounds */
.bg-light {
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
    color: white;
}

.bg-dark {
    background: linear-gradient(to top, #1e3c72, #000);
    color: white;
}

/* Button Customization */
.btn-light {
    background: #3a0078;
    border: none;
    color: white;
}

    .btn-light:hover {
        background: #2a5298;
    }

.btn-primary {
    background: #3a0078;
    border: none;
}

    .btn-primary:hover {
        background: #2a5298;
    }

/* Features Section */
.features img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid #3a0078;
}

/* Footer */
footer {
    border-top: 2px solid #2a5298;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar Styling */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
}

    .navbar a {
        color: white !important;
    }

        .navbar a:hover {
            color: #2a5298 !important;
        }
