/* General Styles */
body {
    font-family: 'Siemens Sans', sans-serif;
    background-color: #FFFFFF;
    color: #000028;
}

header {
    background-color: #000028;
}

header .logo img {
    max-width: 150px;
}

/* Add padding around the Siemens logo for mobile devices */
@media (max-width: 768px) {
    header .logo img {
        padding: 10px; /* Adjust this value to control the padding */
    }
}


.navbar-nav .nav-link {
    color: white;
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    color: #00FFB9;
}

section {
    padding: 2em 0;
}

.header-image img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 3em;
    color: #000028;
}

.railify {
    font-size: 1.2em;
}

.ai {
    font-size: 1.2em;
    color: #009999;
	font-weight:900;
}

h2 {
    color: #007993;
}

h3 {
	color: #005b6e;
}

/* Apply styles to both buttons and anchor tags with the .primary-btn class */
button.primary-btn,
a.primary-btn {
    background-color: #007993;
    color: white;
    border: none;
    padding: 0.5em 1em;
    font-size: 1.1em;
    text-align: center;
    text-decoration: none; /* Remove underline from links */
    display: inline-block;
    cursor: pointer;
}

button.primary-btn:hover,
a.primary-btn:hover {
    background-color: #00FFB9;
}

/* Style for highlighted action text */
.highlighted-action {
    font-size: 2em;
    color: #009999;
    font-style: italic;
    font-weight: 900; /* Bold to ensure it's prominent */
    /*text-decoration: underline; */
	text-transform: uppercase;
    display: inline-block;
}


/* Hover effect to make it interactive */
/*.highlighted-action:hover {
    background-color: #e6f7f8;
    color: #005b6e;
}*/



footer {
    background-color: #000028;
    color: white;
}

footer ul {
    padding: 0;
}

footer ul li a {
    color: white;
}

footer ul li a:hover {
    color: #00e6dc;
}

#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Stays in the same place when scrolling */
    bottom: 20px; /* Distance from the bottom of the page */
    right: 20px; /* Distance from the right edge of the page */
    z-index: 100; /* Ensures it is on top of other elements */
    background-color: #007993;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

#backToTopBtn:hover {
    background-color: #00e6dc; 
}

