/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: #0a0a0a;
}

.logo {
    color: #39ff14;
    font-size: 24px;
    font-weight: 800;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00f7ff;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
}

.hero-content h1 {
    font-size: 48px;
    color: #39ff14;
}

.hero-content p {
    margin: 20px 0;
    color: #ccc;
}

.hero-image img {
    width: 400px;
    border-radius: 10px;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #00f7ff;
    color: black;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ff00ff;
    color: white;
    box-shadow: 0 0 15px #ff00ff;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-around;
    padding: 50px;
}

.feature-card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00f7ff;
}

/* CTA */
.cta {
    text-align: center;
    padding: 50px;
}

.cta h2 {
    margin-bottom: 20px;
}

/* 🔥 GLOW EFFECT */
.logo {
    text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
}

/* HERO GLOW TEXT */
.hero-content h1 {
    text-shadow: 0 0 15px #39ff14;
}

/* BUTTON GLOW */
.cta-btn {
    box-shadow: 0 0 10px #00f7ff;
}

.cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px #ff00ff, 0 0 50px #ff00ff;
}

/* FEATURE CARDS GLASS EFFECT */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* HERO IMAGE FLOAT ANIMATION */
.hero-image img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}