/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #1a1a1a; /* dark background for neon effect */
    color: #eee;
    line-height: 1.6;
    text-align: center;
}

/* Header */
header {
    width: 100%;
    background: rgba(20, 0, 30, 0.95); /* translucent dark header */
    padding: 8px 0;
    box-shadow: 0 0 15px rgba(128, 0, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #bf00ff;
    text-shadow: 0 0 10px #bf00ff, 0 0 20px #bf00ff;
    margin-right: 50px;
}

header nav {
    display: flex;
    gap: 25px;
}

header nav a {
    text-decoration: none;
    font-weight: 500;
    color: #eee;
    padding: 6px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

header nav a:hover {
    color: #fff;
    background: rgba(191, 0, 255, 0.2);
    box-shadow: 0 0 10px #bf00ff, 0 0 20px #bf00ff;
}

/* Hero Section */
.hero {
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #bf00ff;
    text-shadow: 0 0 15px #bf00ff, 0 0 30px #8000ff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    max-width: 700px;
    line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #bf00ff;
    color: #bf00ff;
    background: transparent;
    box-shadow: 0 0 5px #bf00ff, 0 0 10px #bf00ff;
}

.btn:hover {
    background: #bf00ff;
    color: #1a1a1a;
    box-shadow: 0 0 20px #bf00ff, 0 0 40px #bf00ff;
}

/* Stats Section */
.stats {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.stat {
    background: rgba(50, 0, 70, 0.5);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px #bf00ff, 0 0 30px #bf00ff inset;
    min-width: 150px;
}

.stat h2 {
    font-size: 2rem;
    color: #ff80ff;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1rem;
}

/* Features & Services Grids */
.grid-3, .grid-2 {
    display: grid;
    gap: 30px;
    justify-items: center;
    margin: 50px 0;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card, .service-box, .about-card {
    background: rgba(50, 0, 70, 0.4);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #bf00ff;
    box-shadow: 0 0 15px #bf00ff inset, 0 0 25px #bf00ff;
    transition: all 0.3s ease;
    min-width: 250px;
}

.feature-card:hover, .service-box:hover, .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #bf00ff, 0 0 50px #bf00ff inset;
}

/* CTA Section */
.cta {
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #bf00ff;
    text-shadow: 0 0 15px #bf00ff, 0 0 30px #8000ff;
}

/* Footer */
footer {
    background: rgba(20, 0, 30, 0.95);
    padding: 40px 20px;
    font-size: 0.9rem;
    color: #eee;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

footer a {
    color: #bf00ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-shadow: 0 0 10px #bf00ff;
}