/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

/* Global Styles */
body {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: white;
    text-align: center;
}

/* Header / Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #111;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff00ff;
}

.logo span {
    color: #00ffff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff00ff;
}

.menu-btn {
    display: none;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
}

.hero-content h1 {
    font-size: 50px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.hero-content h1 span {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.hero-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Glowing Button */
.btn {
    padding: 12px 25px;
    background: #ff00ff;
    color: white;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0 0 15px #ff00ff;
}

.btn:hover {
    background: #00ffff;
    box-shadow: 0 0 20px #00ffff;
}

/* Loading Bar */
.loading-bar {
    margin-top: 20px;
}

.loading-bar span {
    font-size: 14px;
    color: #ffffff;
}

.bar {
    width: 200px;
    height: 8px;
    background: #222;
    border-radius: 10px;
    margin: 5px auto;
    overflow: hidden;
}

.progress {
    width: 80%;
    height: 100%;
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff;
    animation: progressAnimation 2s infinite alternate;
}

@keyframes progressAnimation {
    0% { width: 60%; }
    100% { width: 90%; }
}

/* Features Section */
#features {
    padding: 80px 50px;
    background: #111;
}

/* Projects Section */
#projects {
    padding: 80px 50px;
}

.card {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    display: inline-block;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 10px #ff00ff;
}

.card:hover {
    box-shadow: 0 0 20px #00ffff;
}

.card i {
    font-size: 40px;
    color: #ff00ff;
    margin-bottom: 10px;
}

/* Footer */
footer {
    padding: 20px;
    background: #111;
}
