/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Dark background for a sleek Qualcomm theme */
    color: #ffffff;
    padding-top: 130px;
    text-align: center;
}

header {
    background-color: #0055A4;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    top: 100px; /* Avoid overlap with header */
    width: 100%;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 174, 239, 0.5);

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background-color: #ff5722;
    border-radius: 5px;
}


/* Main Content Box */
.container {
    width: 80%;
    max-width: 1000px;
    margin: 50px auto 50px auto;
    background: #1A237E; /* Deep Qualcomm blue */
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.5);
    border-radius: 15px;
}

/* Sections */
h2 {
    background: #0055A4;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.processors-section .card {
    background: #003366;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 174, 239, 0.5);
    border-left: 5px solid #00AEEF;
}

/* Benchmark Table */
.benchmark-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #003366;
    color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.benchmark-section th, 
.benchmark-section td {
    border: 1px solid #00AEEF;
    padding: 10px;
    text-align: left;
}

.benchmark-section th {
    background: #00AEEF;
    color: white;
}

.benchmark-section tr:nth-child(even) {
    background: #1A237E;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #0055A4;
    color: white;
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
    border-top: 3px solid #003366;
}
