body {
    font-family: 'Roboto', sans-serif;
    background-color: #2e2e2e;
    color: #fff;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1c1c1c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-weight: 700;
    color: #FF8C00;
}

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

nav li {
    display: inline;
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #FF8C00;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FFA540;
}

.main {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services {
    display: flex;
    justify-content: space-between;
}

.service {
    flex-basis: calc(33.33% - 20px);
    background-color: #383838;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1c1c1c;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

/* 1. Sticky Header */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensuring the header stays on top */
}

/* 3. Toggle Navigation for Mobile Views */
.menu-toggle {
    display: none;
    cursor: pointer;
}

nav.active {
    display: block;
}

/* Use this to hide the regular navigation and show the toggle button on mobile views */
@media screen and (max-width: 768px) {
    nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

/* 4. Service Highlight */
.extra-info {
    display: block;
    margin-top: 10px;
    color: #FF8C00;
    font-style: italic;
}
/* General Styles for SVG Canvas */
svg {
    font-family: 'Arial', sans-serif;
    background-color: #2a2a2a; /* Dark grey background */
}

/* Typography Styles for Axes and Labels */
text {
    fill: #FF8C00; /* Orange color for better contrast against dark background */
    font-size: 12px;
}

/* Axis Styles */
.axis path,
.axis line {
    fill: none;
    stroke: #FF8C00; /* Orange to maintain the theme */
    shape-rendering: crispEdges;
}

/* Bar Chart Specific Styles */
.bar {
    fill: #FF8C00; /* Orange bars */
    transition: fill 0.3s ease; /* Smooth transition for any fill color change */
}

.bar:hover {
    fill: #ffaa44; /* Slightly lighter orange on hover for interactive feedback */
}

/* Line Chart Specific Styles */
.line {
    fill: none;
    stroke: #FF8C00;
    stroke-width: 2px;
}

/* Tooltips (if used) */
.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #FF8C00;
    padding: 5px 10px;
    border-radius: 3px;
    pointer-events: none; /* Ensures the tooltip doesn’t interfere with mouse events */
}

/* Legends (if used) */
.legend {
    font-size: 12px;
}

.legend rect {
    fill: #FF8C00;
}

