/* General Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0f172a; /* Dark tech blue */
    color: #e2e8f0;
    line-height: 1.6;
}

/* Typography */
h1, h2, .brand-name {
    font-family: 'Orbitron', sans-serif; /* Futuristic font */
    text-transform: uppercase;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(15, 23, 42, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #334155;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 50px; /* Adjust based on your logo file */
}

.brand-name {
    font-size: 1.5rem;
    color: #fca311; /* Matching the orange/gold in your logo */
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

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

/* Hero Section */
header {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/1600x900/?technology,circuit');
    background-size: cover;
    background-position: center;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.highlight {
    color: #fca311;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fca311;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
    background-color: #e5920d;
}

/* Products Section */
#products {
    padding: 80px 20px;
    text-align: center;
    background-color: #1e293b;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.card {
    background: #0f172a;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #334155;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #fca311;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* About & Contact */
#about, #contact {
    padding: 80px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    padding: 40px;
    background-color: #000;
    text-align: center;
    border-top: 3px solid #fca311;
}

.email {
    color: #fca311;
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header h1 { font-size: 2.5rem; }
    nav { flex-direction: column; padding: 20px; }
    .nav-links { margin-top: 20px; gap: 15px; }
}
