.hero-section, .content-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-section h1, .content-section h2 {
    font-size: 3rem;
}

.parallax-section {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: white;
    padding: 10px;
    z-index: 1; /* Keep it below the navbar */
}

.parallax-section h1, .parallax-section h2 {
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.parallax-section p {
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {
    .parallax-section h1, .parallax-section h2 {
        font-size: 2rem;
    }
}

.logo-container img {
    width: 60%;
    min-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.hero-image img {
    max-width: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    margin: 0px;
}

.video-container {
    aspect-ratio: 1.77777;
}

.about-section {
    margin: 50px auto;
    background: #ffffff !important;
}

.about-section h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase; /* Ensures all letters are uppercase */
    font-weight: normal; /* Avoid extra weight */
    font-size: 3rem;
    max-width: 800px;
    margin: 20px auto;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 800px;
    padding: 10px;
    margin: 0 auto;
}

.BtnContainer {
    text-align: center;
}

.monitoring-section {
    padding: 80px 0px 60px 0px !important;
}

.monitoring-section h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase; /* Ensures all letters are uppercase */
    font-weight: normal; /* Avoid extra weight */
    font-size: 3rem;
    max-width: 800px;
    margin: 20px auto;
    text-align: right;
}

.monitoring-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 800px;
    padding: 10px;
    margin: 0 auto;
    text-align: right;
}

.markets-section {
    padding: 80px 0px 60px 0px !important;
}

.markets-section h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase; /* Ensures all letters are uppercase */
    font-weight: normal; /* Avoid extra weight */
    font-size: 3rem;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.markets-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 800px;
    padding: 10px;
    margin: 0 auto;
    text-align: center;
}

.markets-section-row {
    max-width: 800px !important;
    padding: 0;
    margin: 0 auto !important;
    text-align: center;
    background: #1c1c1c;
}

.markets-section img {
    width: 100%;
}

.markets-section-row h6{
 font-size: 0.8rem;
}

.markets-section-row small{
    font-size: 0.7rem;
}

.markets-section-div-txt{
    line-height: 8px;
    padding: 5px;
    vertical-align: center;
    background: #1c1c1c;
}

.contact-section {
    padding: 80px 0px 0px 0px !important;
}

.contact-section h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase; /* Ensures all letters are uppercase */
    font-weight: normal; /* Avoid extra weight */
    font-size: 3rem;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.contact-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 800px;
    padding: 10px;
    margin: 0 auto;
    text-align: center;
}

.contact-container{
    background: #000;
}

.contact-section-row {
    max-width: 800px !important;
    padding: 20px 0px;
    margin: 0 auto !important;
}

.contact-section img {
    width: 100%;
}

.contact-section-row h6{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase; /* Ensures all letters are uppercase */
    font-weight: normal; /* Avoid extra weight */
    font-size: 1.3rem;
}

.contact-section-row small{
    font-size: 0.9rem;
}

.contact-section-div-txt{
    line-height: 16px;
    padding: 5px;
    vertical-align: center;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .about-section{
        text-align: center;
    }

    .monitoring-section{
        text-align: center !important;
    }
}

/* Navbar Styling */
.navbar {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase; /* Ensures all letters are uppercase */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050; /* Ensure it's above other elements */
    background-color: rgba(0, 0, 0, 0.8); /* Optional for better visibility */
    transition: background-color 0.3s ease-in-out;
}


.navbar .nav-link {
    color: white;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #00bfff; /* Highlight color */
}

.navbar .navbar-brand img {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
}

.navbar .dropdown-item {
    color: white;
    transition: background-color 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: #00bfff; /* Highlight dropdown */
    color: black;
}

/* Add sticky behavior */
.navbar.fixed-top {
    position: sticky; /* Stick to the top */
    background-color: rgba(0, 0, 0, 0.8); /* Make it opaque for better contrast */
}

#landing-page {
    position: relative;
}

.ShadowBack {
    background: url('/images/transparencia-degradada3.png') center repeat-y;
    margin: 100px 15px;
    padding: 15px;
    color: #ffffff;
}

.about-header {
    background-color: #0c0c0c;
    background-image: url('/images/BG-menu-markets3.png');
    background-size: cover;
    background-position: center;
    height: 300px;
}

.about-header .overlay,
.about-footer .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.about-header .container,
.about-footer {
    position: relative;
    z-index: 2;
}

.about-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    letter-spacing: 1px;
}

.logo-small {
    max-height: 40px;
}

.about-main p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-box-section .border {
    border-color: #ffffff !important;
}

.about-box-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
}

.about-footer {
    background-color: #0c0c0c;
    background-image: url('/images/BG-menu-markets3.png');
    background-size: cover;
    background-position: center;
}

.monitoring-page{

}

.section-automotive-title {
    background-color: #0c0c0c;
    background-image: url('/images/BG-menu-markets3.png');
    background-size: cover;
    background-position: center;
    padding: 50px 0 20px;
    text-align: center;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
}

.automotive-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid white;
    padding: 40px 30px;
    color: white;
    font-size: 26px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    max-width: 300px;
}

.automotive-features {
    background-color: #000000;
    background-size: cover;
    background-position: center;
    padding: 60px 0px;
    color: white;
    font-family: 'Oswald', sans-serif;
}

.marina-features {
    background-size: cover;
    background-position: center;
    padding: 60px 0px;
    color: white;
    font-family: 'Oswald', sans-serif;
}

.marina-background-overlay {
    background-image: url("/images/Marinas-BG.jpg");
    background-position: center center;
    background-attachment: fixed;
    opacity: .5;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(4.2px) hue-rotate(0deg);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.distribution-background-overlay {
    background-image: url("/images/PWC-BG.jpg");
    background-position: center center;
    background-attachment: fixed;
    opacity: .5;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(4.2px) hue-rotate(0deg);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.marina-bg-wrap{
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

.feature-box {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    margin-bottom: 30px;
    margin-left: 30px;
    border-radius: 5px;
}

.feature-box ul {
    list-style: disc;
    padding-left: 20px;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.step-button {
    background: transparent;
    border: 1px solid #00baff;
    color: white;
    width: 60%;
    margin: 10px auto;
    padding: 12px;
    font-weight: bold;
}
.step-image {
    max-width: 90%;
    margin: 0 auto 40px;
    display: block;
}
