/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #1c1c1c, #3a3a3a);
    color: white;
    text-align: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 50px; 
    padding: 0;
    position: relative; 
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    display: inline-block;
    position: relative;
}


.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}


.nav-links a.active::after {
    width: 100%;
}



/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('https://www.transparenttextures.com/patterns/asfalt-light.png'); /* Subtle texture */
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight {
    color: #b8a1ff;
}

.hero p {
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #7d5fff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #5a3ec8;
}

/* Sections */
.section {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1, h2 {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        text-align: right;
    }
    
    .nav-links li {
        margin-bottom: 10px;
    }
}

/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth;
}

