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

header {
    background-color: #76b900;
    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 15px rgba(118, 185, 0, 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;
}


.company-section{
    padding-top: 20px;

}

/* Main Content Box */
.container {
    width: 80%;
    max-width: 1000px;
    margin: 50px auto 50px auto;
    background: #183d00;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(118, 185, 0, 0.5);
    border-radius: 15px;
}

/* Section Titles */
h2 {
    color: #6aff00;
    font-size: 28px;
    margin-bottom: 15px;
}


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

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

.benchmark-section th {
    background: #76b900;
    color: black;
}

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

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #76b900;
    color: black;
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
    border-top: 3px solid #5a8700;
}
