<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color:black;
}

/* Header */
.header-container {
    display: flex;
    align-items: center; /* Vertically align logo and language switch */
    padding: 0 80px;
    background-color: white;
}

.logo {
    max-height: 60px;
    margin-right: 80px; /* Space between logo and language switch */
}

/* Language switcher styling */
.language-switch {
    margin-right: auto; /* Align with logo */
    font-weight: bold;
    font-size: 1em; 
}

    .language-switch a {
        text-decoration: none;
        color: #bbb; /* Default lighter color */
        cursor: pointer;
        transition: color 0.3s;
    }

        .language-switch a.active {
            color: #000; /* Darker for active language */
        }

        .language-switch a:hover {
            color: #333; /* Darker on hover for better interaction */
        }

/* Navigation container and links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 60px; /* Spacing between links */
    margin: 0;
}

nav a {
    color: #201e1e;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, text-shadow 0.3s;
}

    nav a:hover {
        transform: scale(1.2);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

/* Hide the menu icon by default (on desktop) */
.menu-icon {
    display: none;
    cursor: pointer;
    max-height: 25px;
}

#backToTop {
    position: fixed; /* Stays in place when scrolling */
    bottom: 75px;
    right: 12px; /* Distance from the right side of the screen */
    width: 65px; /* Button width */
    height: 65px; /* Button height */
    padding: 0; /* Remove padding */
    background-color: transparent; /* Transparent background to show the image */
    border: none; /* No border */
    cursor: pointer; /* Cursor changes to pointer when hovering */
    z-index: 1000; /* Ensures the button is above other content */
    display: none; /* Hidden by default */
}

    #backToTop img {
        width: 100%; /* Image takes the full width of the button */
        height: 100%; /* Image takes the full height of the button */
        border-radius: 50%; /* If you want the image to also have a circular shape */
    }

    #backToTop:hover img {
        filter: brightness(0.8); /* Darken the image on hover */
    }




/* Center the intro image wrapper */
.intro-image {
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    margin-bottom: 30px;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.container {
    width: 80%;
    margin: auto;
    padding-top: 50px;
}

h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 30px;
}

.main-image {
    position: relative;
    margin: 0 auto 20px auto; /* Center horizontally and maintain top/bottom margins */
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    max-width: 800px;
    height: 500px; /* Set a height to vertically center the image */
}

#displayed-image {
    width: 100%;
    max-width: 800px;
    border: 1px solid #ccc;
    object-fit:contain;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.thumbnail {
    width: 100px;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

    .thumbnail.active {
        border: 2px solid white;
    }


.zoomed-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#zoomed-image {
    max-width: 90%;
    max-height: 90%;
}

.info-section {
    color: white;
    text-align: left;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 80px auto;
    line-height: 1.6;
}

    .info-section .icons {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        margin-bottom: 80px;
    }

        .info-section .icons img {
           
            margin: 0 80px;
        }




.features-section {
    display: grid;
    grid-template-columns: 1fr; /* Default to one column */
    padding: 20px;
    justify-content: center; /* Center the grid */
}

.feature-box {
    background: linear-gradient(135deg, #072540, #0a3d62);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto; /* Center the box */
    margin-bottom: 5px;
}

/* Uniform width for Boxes 1, 2, 3, 8, and 13 */
.feature-box-1, .feature-box-2, .feature-box-3, .feature-box-8, .feature-box-13 {
    grid-column: 1 / -1;
    width: 800px;
}

/* Uniform width for Boxes 4, 5, 6, 7, 9, 10, 11, and 12 */
.feature-box-4, .feature-box-5, .feature-box-6, .feature-box-7,
.feature-box-9, .feature-box-10, .feature-box-11, .feature-box-12 {
    width: 380px;
    grid-column: span 1; /* Each box spans one column */
    margin: 0 auto; /* Center the boxes */
}

.feature-box-1, .feature-box-2, .feature-box-13 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .feature-box-1 img, .feature-box-2 img {
        max-width: 40%;
        height: auto;
        border-radius: 10px;
        margin-right: 20px;
    }

.feature-image-left {
    margin-right: 15px; /* Space between the image and text */
}

.feature-image-right {
    margin-left: 15px; /* Space between the image and text */
}

.feature-text {
    flex: 1;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.25em;
    font-weight: bold;
    color: #d3b073;
}

.feature-box p {
    font-size: 0.9em;
    line-height: 1.4;
}

/* Grid layout for Boxes 4-7 */
@media (min-width: 768px) {
    .features-section {
        grid-template-columns: repeat(2, minmax(auto, 1fr)); /* Two columns layout */
        justify-content: center; /* Center the entire grid */
        gap: 10px; /* Reduce gap between columns */
        max-width: 800px; /* Limit the total width of the section */
        margin: 0 auto; /* Center the grid container */
    }

    .feature-box-4, .feature-box-5, .feature-box-6, .feature-box-7,
    .feature-box-9, .feature-box-10 {
        width: 380px;
        grid-column: span 1; /* Each box spans one column */
        margin: 0 auto; /* Center the boxes */
    }

    /* Stack layout for Boxes 4 and 5 */
    .feature-box-4, .feature-box-5, .feature-box-9, .feature-box-10 {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center content horizontally */
        justify-content: center; /* Center content vertically */
        text-align: center;
        margin-bottom: 5px;
    }

        .feature-box-4 img{
            max-width: 75%;
            height: auto;
            border-radius:10px;
        }

        .feature-box-5 img {
            max-width: 75%;
            height: auto;
            border-radius: 10px;
        }

        .feature-box-9 img {
            max-width: 70%;
            height: auto;
            margin-top: -15px;
            margin-bottom: -30px;
        }

        .feature-box-10 img {
            max-width: 40%;
            height: auto;
            margin-bottom: -5px;
        }

    .feature-box-13 img {
        max-width: 40%;
        height: auto;
        border-radius: 10px;
        margin-left:10px;
        margin-right: 20px;
        margin-top:10px;
        margin-bottom:10px;
    }

    /* Stack layout for Boxes 6 and 7 */
    .feature-box-6, .feature-box-7 {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center content horizontally */
        justify-content: center; /* Center content vertically */
        text-align: center;
        margin-bottom: 5px;
    }
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.25em;
    font-weight: bold;
    color: #d3b073;
}

.feature-box p {
    font-size: 0.9em;
    line-height: 1.4;
    margin-top: 5px; /* Add space above the description */
}

.feature-box-8 img {
    max-width: 66%;
    height: auto;
    border-radius: 10px;
}

.feature-box-8 {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center;
    margin-bottom: 5px;
}

.feature-image-left {
    margin-right: 15px; /* Space between the image and text */
}

.feature-image-right {
    margin-left: 15px; /* Space between the image and text */
}

.feature-text {
    flex: 1;
}



.contentBox {
    background-color: #282828; 
    padding: 20px; /* Add padding around the content */
    border-radius: 10px; /* Optional: add rounded corners */
    max-width: 300px; /* Ensure the box is not too wide */
    margin: auto; /* Center the box on the page */
    margin-top: 30px;
    margin-bottom: 80px;
}

.desContainer {
    width: 300px;
    margin: auto;
    text-align: center;
    position: relative;
    color: #fff; /* Change text color to white */
    margin-top:20px;
    margin-bottom:60px;
}

.desimage-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .desimage-container img {
        width: 80%;
    }

.destitle {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
}

.desdescription {
    font-size: 14px;
    margin-top: 5px;
    text-align: left; 
    color: #fff; 
    list-style-position: inside; /* Ensure the list is centered properly */
}

.footer {
    background-color: #333;
    color: white;
    padding: 50px;
    display: flex;
    justify-content: left;
    align-items: start;
    position: relative;
}

    .footer .column {
        padding: 0 30px;
        margin-right: 40px; /* Add spacing between the column and image */
    }

        .footer .column h3 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer .column p {
            font-size: 14px;
            color: white;
            margin-bottom: 10px;
        }

.qr-container {
    width: 126px;
    height: 160px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    position: absolute;
    bottom: 30px;
    right: 80px;
}

    .qr-container h1 {
        color: white;
        margin: 0;
        font-size: 18px;
    }

    .qr-container img {
        width: 120px;
        height: auto;
        display: block;
    }

/* New styles for the copyright line */
.footer-copyright {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px; /* Small font size */
    color: #d3d3d3; /* Light gray color */
    text-align: center;
}





/* General Mobile Styles */
@media (max-width: 980px) {
    .header-container {
        padding: 0 20px;
        flex-direction: row; /* Ensure elements are aligned horizontally */
        height: 60px;
    }

    .nav-links {
        max-width: 100%;
        text-align: center;
        left: 0;
        right: 0;
        top: 60px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        position: absolute;
        display: none; /* Add this line to hide by default */
    }

    .nav-item {
        padding: 8px 20px; /* Adjust padding as needed */
        display: inline-block; /* Makes the item a block for easier clicking */
    }

        .nav-item a {
            display: block; /* Ensures the entire area is clickable */
            text-decoration: none; /* Optional: remove underline */
            color: inherit; /* Ensures the text color matches its parent */
        }

    .nav-active .nav-links {
        display: flex; /* Show when nav-active is added */
    }

    .menu-icon {
        display: block;
    }

    .nav-active .nav-links {
        display: flex;
    }


    .container {
        width: 90%; /* Increase width for mobile */
        padding-top: 20px;
    }

    h1, h2 {
        font-size: 1.5rem; /* Smaller heading font size for mobile */
        margin-bottom: 15px;
    }

    .main-image {
        height: auto; /* Remove fixed height for mobile */
        max-width: 90%;
    }

    .thumbnail-container {
        display: flex;
        flex-wrap: wrap; /* Allows wrapping of thumbnails */
        justify-content: center; /* Center the thumbnails */
    }

    .thumbnail {
        width: calc(33.33% - 20px); /* Set width to take up 1/3 of the container minus margin */
        margin: 5px; /* Adjust margin for spacing */
        box-sizing: border-box; /* Ensure padding and borders are included in the width */
    }


    .info-section {
        padding: 0 10px; /* Add padding for mobile readability */
        font-size: 0.9rem;
    }


    .features-section {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%; /* Ensure the section fits within the screen */
        box-sizing: border-box;
        padding: 0 15px; /* Add some padding to avoid content touching the edges */
    }

    .feature-box {
        width: 90%; /* Full width of the parent container */
        max-width: 100%; /* Prevent overflow outside the screen */
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-sizing: border-box; /* Include padding in the width calculation */
    }

        .feature-box h3 {
            font-size: 1.1em;
        }

        .feature-box p {
            font-size: 0.85em;
        }

        /* Allow images to scale based on their natural size but prevent them from overflowing */
        .feature-box img {
            max-width: 100%; /* Ensure images stay within the container */
            height: auto; /* Maintain aspect ratio */
            display: block;
            margin: 0 auto; /* Center the images */
        }

    .feature-box-1 img, .feature-box-2 img, .feature-box-8 img {
        max-width: 85%; /* Allow larger images here */
        height: auto;
    }

    .feature-box-4 img, .feature-box-5 img, .feature-box-13 img {
        max-width: 70%; /* Control the maximum width for these specific images */
        height: auto;
        border-radius: 10px;
    }

    .feature-box-9 img {
        max-width: 80%; /* Larger image in this box */
        height: auto;
    }

    .feature-box-10 img {
        max-width: 40%; /* Smaller image for this box */
        height: auto;
        border-radius: 10px;
    }

    /* Adjust content box for mobile */
    .contentBox {
        max-width: 70%; /* Full width for mobile */
        margin-bottom: 50px;
    }

    /* Adjust desContainer for mobile */
    .desContainer {
        width: 90%; /* Full width for mobile */
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .desimage-container {
        justify-content: center;
    }

    .destitle {
        font-size: 20px; /* Slightly smaller title font */
    }

    .desdescription {
        font-size: 13px; /* Slightly smaller description font */
    }


    .footer {
        display: flex;
        flex-wrap: wrap; /* Add this to allow wrapping */
        justify-content: left; /* Align items to the left instead of space-between */
        align-items: start; /* Align items at the top */
        padding: 10px;
        position: relative;
    }

        /* Column text (company info) */
        .footer .column {
            flex: 1; /* Allow text to take up more space */
            padding: 0;
            margin-right: 20px; /* Space between text and image */
            text-align: left;
            font-size: 10px; /* Smaller font size for the text */
            line-height: 1.5; /* Better readability */
        }

        .footer .info p {
            font-size: 14px; /* Adjust size as needed */
        }


    .qr-container {
        display: none; /* Hide image on screens smaller than 768px */
    }

    /* Copyright text */
    .footer-copyright {
        margin-top: 20px;
        font-size: 12px;
        color: #d3d3d3;
        text-align: center;
        width: 100%; /* Ensure it spans the full width */
        position: relative;
    }

}









</pre></body></html>