body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 0;
    padding-top: 120px;
    margin: 0;
}

h1, h2 {
    color: RGB(200, 36, 24); /* Set the text color to red */
    font-weight: bold; /* Make the text bold */
}

header {
    position: fixed; /* Make header fixed position */
    top: 0; /* Align to the top */
    left: 0;
    right: 0;
    z-index: 1000; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: RGB(190, 36, 24);
    color: #fff;
    /* position: relative; /* Ensure the nav is positioned relative to the header */
}

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

nav {
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
}

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

#hero {
    background: #e9e9e9;
}

.service {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: RGB(190, 36, 24);
        flex-direction: column;
        width: 100%;
        display: none;
        align-items: center;
        padding: 20px 0;
        z-index: 1000;
    }

    nav ul.show {
        display: flex;
    }

    .language-selector {
        display: block; /* Ensure the language selector is always displayed */
        margin-top: 20px; /* Additional spacing for language selector */
    }
    
    .language-selector a {
        color: #fff;
        text-decoration: none;
        padding: 5px 10px;
        border-radius: 5px;
        transition: background-color 0.3s;
    }
    
    .language-selector a:hover {
        background-color: #555; /* Highlight effect on hover */
    }
}

/* Style for language links */
.language-selector a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* Optional: Style for active language */
.language-selector a.active {
    text-decoration: underline;
}

footer {
    background: RGB(190, 36, 24); /* Adjust the red value to make it more red */
    color: #fff;
    text-align: center;
    padding: 10px 0;
}


.slider {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px; /* Set the width for square arrows */
    height: 50px; /* Set the height for square arrows */
    background: RGB(190, 36, 24); /* Darker background color */
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 50px; /* Center the arrow text vertically */
    border-radius: 50%; /* Use 50% to create circular arrows */
    transform: translateY(-50%); /* Center vertically */
}

.prev {
    left: 10px; /* Adjust the position for the left arrow */
}

.next {
    right: 10px; /* Adjust the position for the right arrow */
}


.dots-container {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.google-map iframe {
    width: 100%;
    height: 450px; /* Adjust as needed */
    border: 0;
}