/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0b0d17;
    color: #ffffff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo span { color: #ff4d00; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { color: white; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
nav ul li a:hover { color: #ff4d00; }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1614728894747-a83421e2b9c9?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 { font-size: 4rem; margin-bottom: 10px; color: #fff; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: #d1d1d1; }

.btn {
    padding: 12px 30px;
    background: #ff4d00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.4s;
}

.btn:hover { background: #cc3e00; box-shadow: 0 0 20px #ff4d00; }

/* Info Section */
.info-section { padding: 100px 10%; text-align: center; }
.info-section h2 { margin-bottom: 50px; font-size: 2.5rem; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #1a1d29;
    padding: 30px;
    border-bottom: 4px solid #ff4d00;
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-10px); }
.card h3 { margin-bottom: 15px; color: #ff4d00; }

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    background: #05070a;
    font-size: 0.8rem;
    color: #666;
}