/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px; /* Fixed height to match logo */
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-container {
    display: flex;
    /*width: 10%; /* Logo positioned at 10% of full width */
    display: flex;
    align-items: center;
}

.logo {
    max-height: 84px;
    max-width: 100%;
}

.nav-links {
    width: 70%; /* Navigation links centered at 30% ~ 80% of full width */
    margin-left: 20%; /* Starting at 30% of width */
}

.nav-links ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;
    padding: 10px 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: #0066cc;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    padding: 15px;
    display: flex;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

/* Keep hover effect for non-language dropdowns */
.dropdown:not(.language-dropdown):hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.dropdown-column a {
    padding: 8px 15px;
    white-space: nowrap;
    font-weight: normal;
    text-transform: none;
}

.dropdown-column a:hover {
    background-color: #f5f5f5;
}

.products-menu {
    width: 320px;
}

.solutions-menu {
    width: 220px;
}

.language-menu {
    width: 150px;
}

/* Main Content Area */
.main-content {
    margin-top: 96px; /* Same as navbar height */
    overflow-y: auto;
}

/* Content Rows */
.content-row {
    padding: 60px 0;
    overflow: hidden;
}

.content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.content-item.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.image-content {
    flex: 1;
    max-width: 600px;
    overflow: hidden;
}

.image-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.image-content img:hover {
    transform: scale(1.05);
}

/* Image Masks */
.rounded-corners {
    border-radius: 20px;
    overflow: hidden;
}

.circular {
    border-radius: 60%;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.curved-side {
    border-radius: 0 100px 100px 0;
    overflow: hidden;
}

/* Text Formatting */
.title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0066cc;
}

.highlight {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0066cc;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #0055aa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Quick Access Section */
.quick-access {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quick-access-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0099ff;
}

.quick-access-column ul li {
    margin-bottom: 10px;
}

.quick-access-column a {
    color: #ddd;
    transition: color 0.3s;
}

.quick-access-column a:hover {
    color: #0099ff;
}

address p {
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: #222;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        height: auto;
        padding: 15px 0;
    }
    
    .logo-container {
        width: 20%;
    }
    
    .nav-links {
        width: 80%;
        margin-left: 0;
    }
    
    .content-item, .content-item.reverse {
        flex-direction: column;
    }
    
    .text-content, .image-content {
        max-width: 100%;
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links ul {
        flex-wrap: wrap;
    }
    
    .nav-item {
        margin-bottom: 5px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown-column {
        width: 100%;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
}