body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

/* Top navigation bar */
.navbar {
    background-color: #000; /* Black background */
    padding: 0px 20px 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 5px solid #11c5f0; /* Blue accent stripe */
    gap: 5px;
    flex-wrap: wrap;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 80px; /* Adjust logo size */
}

.navbar {
    font-size: 30px;
    font-weight: bold;
}

#navbar-btn {
    background-color: #11c5f0; /* Bright blue background */
    color: #fff; /* White text */
    border: none; /* No border */
    padding: 15px 30px; /* Comfortable padding */
    font-size: 20px; /* Large text size for visibility */
    font-weight: bold; /* Make text bold */
    text-decoration: none;
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    box-shadow: 0 4px 10px rgba(17, 197, 240, 0.5); /* Blue shadow for emphasis */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    text-transform: uppercase; /* Uppercase text for emphasis */
    display: inline-block;
}

/* Hover Effect */
#navbar-btn:hover {
    background-color: #0da7ce; /* Slightly darker blue on hover */
    box-shadow: 0 4px 10px rgba(17, 197, 240, 0.7); /* Stronger shadow on hover */
}

/* Focus Effect */
#navbar-btn:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 4px rgba(17, 197, 240, 0.5); /* Add a focus ring */
}

@media (max-width: 600px) {
    #navbar-btn {
        padding: 15px 15px;
        font-size: 15px;
    }
    .navbar {
        padding: 10px 10px 10px 10px;
    }
    .navbar .logo img {
        height: 50px; /* Adjust logo size */
    }
}

/* Hero section */
.hero {
    background-color: #000; /* Black background */
    padding: 100px 20px;
    text-align: center;
    border-bottom: 5px solid #11c5f0; /* Blue accent stripe */
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Blue stripe section for contrast */
.striped-section {
    background: linear-gradient(to bottom, #11c5f0, #0e94c0);
    padding: 50px 0px;
    text-align: center;
    color: #ffffff; /* Black text for contrast */
}

.striped-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.striped-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 50px 20px;
}

.contact-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

.contact-image img {
    width: 100%;
    max-width: 500px; /* Adjust width for the image */
    height: auto;
    border-radius: 8px;
    border: 5px solid #11c5f0; /* Blue accent border */
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info a {
    color: #11c5f0; /* Blue accent for links */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


/* Footer */
.footer {
    background-color: #000; /* Black background */
    padding: 20px;
    text-align: center;
    color: #fff;
    border-top: 5px solid #11c5f0; /* Blue accent stripe */
}

.footer p {
    font-size: 14px;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 50px 20px;
}

.contact-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

/* Contact Info Styling */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info a {
    color: #11c5f0; /* Blue accent for links */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Carousel */
#gallery-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#blueimp-gallery-carousel {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Map Styling */
.contact-map {
    flex: 1;
}

.map-title {
    font-size: 24px;
    color: #fff; /* White text */
    text-align: center; /* Center the title */
    margin: 0;
    background-color: #11c5f0;
    border-radius: 8px 8px 0px 0px;
}

#map {
    max-width: 100%;
    height: 300px; /* Adjust height as needed */
    border: 3px solid #11c5f0; /* Blue border */
    border-radius: 0px 0px 8px 8px;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .striped-section h2 {
        font-size: 28px;
    }

    .striped-section p {
        font-size: 16px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section p {
        font-size: 16px;
    }
    .contact-container {
        flex-direction: column;
    }
    .contact-map {
        width: 100%; /* Ensure map takes full width in column layout */
    }

    #map {
        height: 250px;
    }
}

/* Grid */

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr)); /* 2 columns, each XXx wide */
    /* grid-template-rows: 50px 50px 50px;*/ /* 3 rows, each XXpx tall */
    gap: 20px;
    max-width: 1000px;
    margin-left :auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.services-grid-box {
    /*background: linear-gradient(to bottom, rgba(17, 197, 240, 0.9) 0%, rgba(12, 150, 180, 0.7) 50%, rgba(17, 197, 240, 0.2) 100%);*/
    /*background-color: rgb(29, 29, 31, 0.8);*/ /* Semi-transparent white */
    /*background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);*/

        background-color: #ff4081; /* Bright Pink */
        box-shadow: 0 0 20px rgba(255, 64, 129, 0.8); /* Neon Glow */

        background-color: #262626;
        background-image: url("/images/asfalt-dark.png");

    /*border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    

    padding: 20px;
    border-radius: 8px;
    /*outline: 2px solid #000000;
    outline-offset: 5px;*/
}

.services-grid-box > div > img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.services-grid-box > h2 {
    margin: 0;
} 
